diff --git a/parse/train/H1WgVz-AZ/H1WgVz-AZ.md b/parse/train/H1WgVz-AZ/H1WgVz-AZ.md new file mode 100644 index 0000000000000000000000000000000000000000..31f19a45307b325c389a9ea901939dc77a18fe41 --- /dev/null +++ b/parse/train/H1WgVz-AZ/H1WgVz-AZ.md @@ -0,0 +1,434 @@ +# LEARNING APPROXIMATE INFERENCE NETWORKS FOR STRUCTURED PREDICTION + +Lifu Tu Kevin Gimpel +Toyota Technological Institute at Chicago, Chicago, IL, 60637, USA +{lifu,kgimpel}@ttic.edu + +# ABSTRACT + +Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use neural network architectures to define energy functions that can capture arbitrary dependencies among parts of structured outputs. Prior work used gradient descent for inference, relaxing the structured output to a set of continuous variables and then optimizing the energy with respect to them. We replace this use of gradient descent with a neural network trained to approximate structured argmax inference. This “inference network” outputs continuous values that we treat as the output structure. We develop large-margin training criteria for joint training of the structured energy function and inference network. On multi-label classification we report speed-ups of $1 0 { - } 6 0 \mathrm { x }$ compared to (Belanger et al., 2017) while also improving accuracy. For sequence labeling with simple structured energies, our approach performs comparably to exact inference while being much faster at test time. We then demonstrate improved accuracy by augmenting the energy with a “label language model” that scores entire output label sequences, showing it can improve handling of long-distance dependencies in part-of-speech tagging. Finally, we show how inference networks can replace dynamic programming for test-time inference in conditional random fields, suggestive for their general use for fast inference in structured settings. + +# 1 INTRODUCTION + +Energy-based modeling (LeCun et al., 2006) associates a scalar measure of compatibility to each configuration of input and output variables. Given an input $_ { \textbf { \em x } }$ , the predicted output $\hat { \textbf { \textit { y } } }$ is chosen by minimizing an energy function $E ( \pmb { x } , \hat { \pmb { y } } )$ . For structured prediction, the parameterization of the energy function can leverage domain knowledge about the structured output space. However, learning and prediction become complex. + +Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use an energy function to score structured outputs, and perform inference by using gradient descent to iteratively optimize the energy with respect to the outputs. Belanger et al. (2017) develop an “end-to-end” method that unrolls an approximate energy minimization algorithm into a fixed-size computation graph that is trainable by gradient descent. After learning the energy function, however, they still must use gradient descent for test-time inference. + +We replace the gradient descent approach with a neural network trained to do inference, which we call an inference network. It can have any architecture such that it takes an input $_ { \textbf { \em x } }$ and returns an output interpretable as a $\textbf { { y } }$ . As in prior work, we relax $\textbf { { y } }$ from discrete to continuous. For multi-label classification, we use a feed-forward network that outputs a vector. We assign a single label to each dimension of the vector, interpreting its value as the probability of predicting that label. For sequence labeling, we output a distribution over predicted labels at each position in the sequence. We adapt the energy functions such that they can operate with both discrete ground truth outputs and outputs generated by our inference networks. + +We define large-margin training objectives to jointly train energy functions and inference networks. Our training objectives resemble the alternating optimization framework of generative adversarial networks (GANs; Goodfellow et al. 2014): the inference network is analogous to the generator and the energy function is analogous to the discriminator. Our approach avoids argmax computations, making training and test-time inference faster than standard SPENs. We experiment with multi-label classification using the same setup as Belanger & McCallum (2016), demonstrating speed-ups of $1 0 \mathrm { x }$ in training time and $6 0 \mathrm { x }$ in test-time inference while also improving accuracy. + +We then design a SPEN and inference network for sequence labeling by using recurrent neural networks (RNNs). We perform comparably to a conditional random field (CRF; Lafferty et al. 2001) when using the same energy function, with faster test-time inference. We also experiment with a richer energy that includes a “label language model” that scores entire output label sequences using an RNN, showing it can improve handling of long-distance dependencies in part-of-speech tagging. Finally, we show how inference networks can replace dynamic programming for test-time inference with CRFs, suggestive for the general use of inference networks to speed up inference in traditional structured prediction settings. + +# 2 STRUCTURED PREDICTION ENERGY NETWORKS + +We denote the space of inputs by $\mathcal { X }$ . For a given input $\mathbf { \boldsymbol { x } } \in \mathcal { X }$ , we denote the space of legal structured outputs by $\mathcal { V } ( \pmb { x } )$ . We denote the entire space of structured outputs by $\mathcal { V } = \cup _ { \pmb { x } \in \mathcal { X } } \mathcal { V } ( \pmb { x } )$ . A SPEN defines an energy function $E _ { \Theta } : \mathcal { X } \times \mathcal { Y } \mathbb { R }$ parameterized by $\Theta$ that uses a functional architecture to compute a scalar energy for an input/output pair. + +We describe the SPEN for multi-label classification (MLC) from Belanger & McCallum (2016). Here, $_ { \textbf { \em x } }$ is a fixed-length feature vector. We assume there are $L$ labels, each of which can be on or off for each input, so $\mathcal { V } ( \pmb { x } ) = \{ 0 , 1 \} ^ { L }$ for all $_ { \textbf { \em x } }$ . The energy function is the sum of two terms: $E _ { \Theta } ( { \pmb x } , { \pmb y } ) = E ^ { l o c } ( { \pmb x } , { \pmb y } ) + \dot { E } ^ { l a b } ( { \pmb y } )$ . $E ^ { l o c } ( { \pmb x } , { \pmb y } )$ is the sum of linear models: + +$$ +E ^ { l o c } ( { \pmb x } , { \pmb y } ) = \sum _ { i = 1 } ^ { L } y _ { i } b _ { i } ^ { \top } F ( { \pmb x } ) +$$ + +where $b _ { i }$ is a parameter vector for label $i$ and $F ( { \pmb x } )$ is a multi-layer perceptron computing a feature representation for the input $_ { \textbf { \em x } }$ . $E ^ { l a b } ( { \pmb y } )$ scores $\textbf { { y } }$ independent of $_ { \textbf { \em x } }$ : + +$$ +E ^ { l a b } ( { \pmb y } ) = c _ { 2 } ^ { \top } g ( C _ { 1 } { \pmb y } ) +$$ + +where $c _ { 2 }$ is a parameter vector, $g$ is an elementwise non-linearity function, and $C _ { 1 }$ is a parameter matrix. After learning the energy function, prediction minimizes energy: + +$$ +\pmb { \hat { y } } = \underset { \pmb { y } \in \mathscr { y } ( \pmb { x } ) } { \mathrm { a r g m i n } } E _ { \Theta } ( \pmb { x } , \pmb { y } ) +$$ + +However, solving Eq. (3) requires combinatorial algorithms because $\mathcal { V }$ is a discrete structured space. This becomes intractable when $E _ { \Theta }$ does not decompose into a sum over small “parts” of $\textbf { { y } }$ . Belanger & McCallum (2016) relax this problem by allowing the discrete vector $\textbf { { y } }$ to be continuous. We use $\mathcal { { V } } _ { R }$ to denote the relaxed output space. For MLC, $\begin{array} { r } { \breve { y } _ { R } ( { \pmb x } ) = [ 0 , 1 ] ^ { L } } \end{array}$ . They solve the relaxed problem by using gradient descent to iteratively optimize the energy with respect to $\textbf { { y } }$ . Since they train with a structured large-margin objective, repeated inference is required during learning. They note that using gradient descent for this inference step is time-consuming and makes learning less stable. So Belanger et al. (2017) propose an “end-to-end” learning procedure inspired by Domke (2012). This approach performs backpropagation through each step of gradient descent. We compare to both methods in our experiments below. + +# 3 INFERENCE NETWORKS FOR SPENS + +Belanger & McCallum (2016) relaxed $\textbf { { y } }$ from a discrete to a continuous vector and used gradient descent for inference. We also relax $\textbf { { y } }$ but we use a different strategy to approximate inference. We define an inference network $\mathbf { A } _ { \Psi } ( \pmb { x } )$ parameterized by $\Psi$ and train it with the goal that + +$$ +\mathbf { A } _ { \Psi } ( \pmb { x } ) \approx \underset { \pmb { y } \in \mathcal { V } _ { R } ( \pmb { x } ) } { \mathrm { a r g m i n } } E _ { \Theta } ( \pmb { x } , \pmb { y } ) +$$ + +Given an energy function $E _ { \Theta }$ and a dataset $X$ of inputs, we solve the following optimization problem: + +$$ +\hat { \Psi } \underset { \Psi } { \mathrm { a r g m i n } } \sum _ { \pmb { x } \in X } E _ { \Theta } ( \pmb { x } , \mathbf { A } _ { \Psi } ( \pmb { x } ) ) +$$ + +The architecture of $\mathbf { A } _ { \Psi }$ will depend on the task. For MLC, the same set of labels is applicable to every input, ${ \bf { S 0 } } \ y$ has the same length for all inputs. So, we can use a feed-forward network for $\mathbf { A } _ { \Psi }$ with a vector output, treating each dimension as the prediction for a single label. For sequence labeling, each $_ { \textbf { \em x } }$ (and therefore each $\textbf { { y } }$ ) can have a different length, so we must use a network architecture for $\mathbf { A } _ { \Psi }$ that permits different lengths of predictions. We use an RNN that returns a vector at each position of $_ { \textbf { \em x } }$ . We interpret this vector as a probability distribution over output labels at that position. + +We note that the output of $\mathbf { A } _ { \Psi }$ must be compatible with the energy function, which is typically defined in terms of the original discrete output space $\mathcal { V }$ . This may require generalizing the energy function to be able to operate both on elements of $\mathcal { V }$ and $\mathcal { V } _ { R }$ . For MLC, no change is required. For sequence labeling, the change is straightforward and is described below in Section 7.2.1. + +# 4 JOINT TRAINING OF SPENS AND INFERENCE NETWORKS + +Belanger & McCallum (2016) propose a structured hinge loss for training SPENs: + +$$ +\operatorname* { m i n } _ { \Theta } \sum _ { \langle x _ { i } , y _ { i } \rangle \in \mathcal { D } } \left[ \operatorname* { m a x } _ { y \in \mathcal { V } _ { R } ( \pmb { x } ) } \left( \triangle ( \pmb { y } , \pmb { y } _ { i } ) - E _ { \Theta } ( \pmb { x } _ { i } , \pmb { y } ) + E _ { \Theta } ( \pmb { x } _ { i } , \pmb { y } _ { i } ) \right) \right] _ { + } +$$ + +where $\mathcal { D }$ is the set of training pairs, $[ f ] _ { + } = \operatorname* { m a x } ( 0 , f )$ , and $\triangle ( \pmb { y } , \pmb { y } ^ { \prime } )$ is a structured cost function that returns a nonnegative value indicating the difference between $\textbf { { y } }$ and $\boldsymbol { y } ^ { \prime }$ . This loss is often referred to as “margin-rescaled” structured hinge loss (Taskar et al., 2004; Tsochantaridis et al., 2005). + +However, this loss is expensive to minimize for structured models because of the “cost-augmented” inference step $( \operatorname* { m a x } _ { \pmb { y } \in \mathcal { y } _ { R } ( \pmb { x } ) } )$ . In prior work with SPENs, this step used gradient descent. We replace this with a cost-augmented inference network ${ \bf A } _ { \Phi } ( { \pmb x } )$ . As suggested by the notation, the cost-augmented inference network $\mathbf { A } _ { \Phi }$ and the inference network $\mathbf { A } _ { \Psi }$ will typically have the same functional form, but use different parameters $\Phi$ and $\Psi$ . We write our new optimization problem as: + +$$ +\operatorname* { m i n } _ { \Theta } \operatorname* { m a x } _ { \Phi } \sum _ { \langle \pmb { x } _ { i } , \pmb { y } _ { i } \rangle \in \mathcal { D } } \left[ \triangle ( \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) , \pmb { y } _ { i } ) - E _ { \Theta } ( \pmb { x } _ { i } , \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) ) + E _ { \Theta } ( \pmb { x } _ { i } , \pmb { y } _ { i } ) \right] _ { + } +$$ + +We treat this optimization problem as a minimax game and find a saddle point for the game. Following Goodfellow et al. (2014), we implement this using an iterative numerical approach. We alternatively optimize $\Phi$ and $\Theta$ , holding the other fixed. Optimizing $\Phi$ to completion in the inner loop of training is computationally prohibitive and may lead to overfitting. So we alternate between one mini-batch for optimizing $\Phi$ and one for optimizing $\Theta$ . We also add $L _ { 2 }$ regularization terms for $\Theta$ and $\Phi$ . + +The objective for the cost-augmented inference network is: + +$$ +\hat { \Phi } \underset { \Phi } { \mathrm { a r g m a x } } [ \bigtriangleup ( \mathbf { A } _ { \Phi } ( \boldsymbol { x } _ { i } ) , \pmb { y } _ { i } ) - E _ { \Theta } ( \boldsymbol { x } _ { i } , \mathbf { A } _ { \Phi } ( \boldsymbol { x } ) _ { i } ) + E _ { \Theta } ( \boldsymbol { x } _ { i } , \pmb { y } _ { i } ) ] _ { + } +$$ + +That is, we update $\Phi$ so that $\mathbf { A } _ { \Phi }$ yields an output that has low energy and high cost, in order to mimic cost-augmented inference. The energy parameters $\Theta$ are kept fixed. There is an analogy here to the generator in GANs: $\mathbf { A } _ { \Phi }$ is trained to produce a high-cost structured output that is also appealing to the current energy function. To help stabilize training of $\Phi$ , we add several terms to this objective, discussed below in Section 5. + +The objective for the energy function is: + +$$ +\hat { \Theta } \underset { \Theta } { \mathrm { a r g m i n } } [ \triangle ( \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) , \pmb { y } _ { i } ) - E _ { \Theta } ( \pmb { x } _ { i } , \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) ) + E _ { \Theta } ( \pmb { x } _ { i } , \pmb { y } _ { i } ) ] _ { + } + \lambda \| \Theta \| _ { 2 } ^ { 2 } +$$ + +That is, we update $\Theta$ so as to widen the gap between the cost-augmented and ground truth outputs. There is an analogy here to the discriminator in GANs. The energy function is updated so as to enable it to distinguish “fake” outputs produced by $\mathbf { A } _ { \Phi }$ from real outputs $\mathbf { \nabla } _ { \mathbf { \psi } _ { j } } \mathbf { \sigma } _ { j } \mathbf { \sigma } _ { j } $ . + +Training iterates between updating $\Phi$ and $\Theta$ using the objectives above. + +# 4.1 TEST-TIME INFERENCE + +After training, we want to use an inference network $\mathbf { A } _ { \Psi }$ defined in Eq. (4). However, training only gives us a cost-augmented inference network $\mathbf { A } _ { \Phi }$ . Since $\mathbf { A } _ { \Psi }$ and $\mathbf { A } _ { \Phi }$ have the same functional form, we can use $\Phi$ to initialize $\Psi$ , then do additional training on $\mathbf { A } _ { \Psi }$ as in Eq. (5) where $X$ is the training or validation set. This step helps the resulting inference network to produce outputs with lower energy, as it is no longer affected by the cost function. Since this procedure does not use the output labels of the $_ { \textbf { \em x } }$ ’s in $X$ , it could also be applied to the test data in a transductive setting. + +# 4.2 VARIATIONS AND SPECIAL CASES + +This approach also permits us to use large-margin structured prediction with slack rescaling (Tsochantaridis et al., 2005). Slack rescaling can yield higher accuracies than margin rescaling, but requires “cost-scaled” inference during training which is intractable for many classes of output structures. However, we can use our notion of inference networks to circumvent this tractability issue and approximately optimize the slack-rescaled hinge loss, yielding the following optimization problem: + +$$ +\operatorname* { m i n } _ { \Theta } \operatorname* { m a x } _ { \Phi } \sum _ { \langle \mathbf { x } _ { i } , \mathbf { y } _ { i } \rangle \in \mathcal { D } } \bigtriangleup ( \mathbf { A } _ { \Phi } ( \mathbf { x } _ { i } ) , \mathbf { y } _ { i } ) [ 1 - E _ { \Theta } ( \mathbf { x } _ { i } , \mathbf { A } _ { \Phi } ( \mathbf { x } _ { i } ) ) + E _ { \Theta } ( \mathbf { x } _ { i } , \mathbf { y } _ { i } ) ] _ { + } +$$ + +Using the same argument as above, we can also break this into alternating optimization of $\Phi$ and $\Theta$ . + +We can optimize a structured perceptron (Collins, 2002) version by using the margin-rescaled hinge loss (Eq. (7)) and fixing $\begin{array} { r } { \triangle ( \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) , \pmb { y } _ { i } ) = 0 } \end{array}$ . When using this loss, the cost-augmented inference network is actually a test-time inference network, because the cost is always zero, so using this loss may lessen the need to retune the inference network after training. + +When we fix $\begin{array} { r } { \triangle ( \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) , \pmb { y } _ { i } ) = 1 } \end{array}$ , then margin-rescaled hinge is equivalent to slack-rescaled hinge. While using $\triangle = 1$ is not useful in standard max-margin training with exact argmax inference (because the cost has no impact on optimization when fixed to a positive constant), it is potentially useful in our setting. Consider our SPEN objectives with $\triangle = 1$ : + +$$ +[ 1 - E _ { \Theta } ( { \pmb x } _ { i } , { \pmb A } _ { \Phi } ( { \pmb x } _ { i } ) ) + E _ { \Theta } ( { \pmb x } _ { i } , { \pmb y } _ { i } ) ] _ { + } +$$ + +There will always be a nonzero difference between the two energies because ${ \bf A } _ { \Phi } ( { \pmb x } _ { i } )$ will never exactly equal the discrete vector $\mathbf { \nabla } _ { \mathbf { \mathcal { Y } } _ { i } }$ . Since there is no explicit minimization over all discrete vectors $\textbf { { y } }$ , this case is more similar to a “contrastive” hinge loss which seeks to make the energy of the true output lower than the energy of a particular “negative sample” by a margin of at least 1. + +In our experiments, we will compare four hinge losses for training SPENs: margin-rescaled (Eq. (7)), slack-rescaled (Eq. (10)), perceptron (margin-rescaled with $\triangle = 0$ ), and contrastive $\triangle = 1$ ). + +# 5 IMPROVING TRAINING FOR INFERENCE NETWORKS + +We found that the alternating nature of the optimization led to difficulties during training. Similar observations have been noted about other alternative optimization settings, especially those underlying generative adversarial networks (Salimans et al., 2016). Below we describe several techniques we found to help stabilize training, which are optional terms added to the objective in Eq. (8). + +$L _ { 2 }$ Regularization: We use $L _ { 2 }$ regularization, adding the penalty term $\| \Phi \| _ { 2 } ^ { 2 }$ with coefficient $\lambda _ { 1 }$ + +Entropy Regularization: We add an entropy-based regularizer $\mathrm { l o s s } _ { \mathrm { H } } ( \mathbf { A } _ { \Phi } ( \pmb { x } ) )$ defined for the problem under consideration. For MLC, the output of $\mathbf { A } _ { \Phi } ( \pmb { x } )$ is a vector of scalars in [0, 1], one for each label, where the scalar is interpreted as a label probability. The entropy regularizer $\mathrm { l o s s } _ { \mathrm { H } }$ is the sum of the entropies over these label binary distributions. For sequence labeling, where the length of $_ { \textbf { \em x } }$ is $N$ and where there are $L$ unique labels, the output of ${ \bf A } _ { \Phi } ( { \pmb x } )$ is a length- $N$ sequence of length- $L$ vectors, each of which represents the distribution over the $L$ labels at that position in $_ { \textbf { \em x } }$ . Then, $\mathrm { l o s s } _ { \mathrm { H } }$ is the sum of entropies of these label distributions across positions in the sequence. + +When tuning the coefficient $\lambda _ { 2 }$ for this regularizer, we consider both positive and negative values, permitting us to favor either low- or high-entropy distributions as the task prefers.1 + +Local Cross Entropy Loss: We add a local (non-structured) cross entropy $\mathrm { l o s s } _ { \mathrm { C E } } ( \mathbf { A } _ { \Phi } ( \pmb { x } _ { i } ) , \pmb { y } _ { i } )$ defined for the problem under consideration. We only experiment with this loss for sequence labeling. + +It is the sum of the label cross entropy losses over all positions in the sequence. This loss provides more explicit feedback to the inference network, helping the optimization procedure to find a solution that minimizes the energy function while also correctly classifying individual labels. It can also be viewed as a multi-task loss for the inference network. + +Regularization Toward Pretrained Inference Network: We add the penalty $\lVert \Phi - \Phi _ { 0 } \rVert _ { 2 } ^ { 2 }$ where $\Phi _ { 0 }$ is a pretrained network, e.g., a local classifier trained to independently predict each part of $\textbf { { y } }$ . + +Each additional term has its own tunable hyperparameter. Finally we obtain: + +$$ +\begin{array} { r } { \hat { \Phi } \underset { \Phi } { \operatorname { a r g m a x } } \ [ \triangle ( \mathbf { A } _ { \Phi } ( \boldsymbol { x } _ { i } ) , \boldsymbol { y } _ { i } ) - E _ { \Theta } ( \boldsymbol { x } _ { i } , \mathbf { A } _ { \Phi } ( \boldsymbol { x } _ { i } ) ) + E _ { \Theta } ( \boldsymbol { x } _ { i } , \boldsymbol { y } _ { i } ) ] _ { + } - \lambda _ { 1 } \| \Phi \| _ { 2 } ^ { 2 } } \\ { + \lambda _ { 2 } \mathrm { l o s s } _ { \mathrm { H } } ( \mathbf { A } _ { \Phi } ( \boldsymbol { x } _ { i } ) ) - \lambda _ { 3 } \mathrm { l o s s } _ { \mathrm { C E } } ( \mathbf { A } _ { \Phi } ( \boldsymbol { x } _ { i } ) , \boldsymbol { y } _ { i } ) - \lambda _ { 4 } \| \Phi - \Phi _ { 0 } \| _ { 2 } ^ { 2 } } \end{array} +$$ + +# 6 RELATED WORK + +Our methods are reminiscent of other alternating optimization problems like that underlying generative adversarial networks (GANs; Goodfellow et al. 2014). GANs are based on a minimax game and have a value function that one agent (a discriminator $D$ ) seeks to maximize and another (a generator $G$ ) seeks to minimize. By their analysis, a log loss discriminator converges to a degenerate uniform solution. When using hinge loss, we can get a non-degenerate discriminator while matching the data distribution (Dai et al., 2017; Zhao et al., 2016). Our formulation is closer to this hinge loss version of the GAN. + +Our approach is also related to knowledge distillation (Ba & Caruana, 2014; Hinton et al., 2015), which refers to strategies in which one model (a “student”) is trained to mimic another (a “teacher”). Typically, the teacher is a larger, more accurate model but which is too computationally expensive to use at test time. Urban et al. (2016) train shallow networks using image classification data labeled by an ensemble of deep teacher nets. Geras et al. (2016) train a convolutional network to mimic an LSTM for speech recognition. Others have explored knowledge distillation for sequence-to-sequence learning (Kim & Rush, 2016) and parsing (Kuncoro et al., 2016). + +Since we train a single inference network for an entire dataset, our approach is also related to “amortized inference” (Srikumar et al., 2012; Gershman & Goodman, 2014; Paige & Wood, 2016; Chang et al., 2015). Such methods precompute or save solutions to subproblems for faster overall computation. Our inference networks likely devote more modeling capacity to the most frequent substructures in the data. A kind of inference network is used in variational autoencoders (Kingma & Welling, 2013) to approximate posterior inference in generative models. + +Our methods are also related to work in structured prediction that seeks to approximate structured models with factorized ones, e.g., mean-field approximations in graphical models (Koller & Friedman, 2009; Krähenbühl & Koltun, 2011). Like our use of inference networks, there have been efforts in designing differentiable approximations of combinatorial search procedures (Martins & Kreutzer, 2017; Goyal et al., 2018) and structured losses for training with them (Wiseman & Rush, 2016). Since we relax discrete output variables to be continuous, there is also a connection to recent work that focuses on structured prediction with continuous valued output variables (Wang et al., 2016). They also propose a formulation that yields an alternating optimization problem, but it is based on proximal methods. + +There are other settings in which gradient descent is used for inference, e.g., image generation applications like DeepDream (Mordvintsev et al., 2015) and neural style transfer (Gatys et al., 2015), as well as machine translation (Hoang et al., 2017). In these and related settings, gradient descent has started to be replaced by inference networks, especially for image transformation tasks (Johnson et al., 2016; Li & Wand, 2016). Our results below provide more evidence for making this transition. An alternative to what we pursue here would be to obtain an easier convex optimization problem for inference via input convex neural networks (Amos et al., 2017). + +Table 1: Test F1 when comparing methods on multi-label classification datasets. + +
BibtexBookmarksDeliciousavg.
MLP38.933.837.836.8
SPEN (BM16)42.234.437.538.0
SPEN (E2E)38.133.934.435.5
SPEN (InfNet)42.237.637.539.1
+ +# 7 EXPERIMENTS + +In Sec. 7.1 we compare our approach to previous work on training SPENs for MLC. We compare accuracy and speed, finding our approach to outperform prior work. We then perform experiments with sequence labeling tasks in Sec. 7.2. + +# 7.1 MULTI-LABEL CLASSIFICATION + +We use the MLC datasets used by Belanger & McCallum (2016): Bibtex, Delicious, and Bookmarks. Dataset statistics are shown in Table 7 in the Appendix. For Bibtex and Delicious, we follow Belanger and McCallum and tune the hyperparameters using a different sampling of train and test data, then use the standard train/test split for final experimentation using the tuned hyperparameters. For Bookmarks, we use the same train/dev/test split as (Belanger & McCallum, 2016). For evaluation, we report the example averaged (macro averaged) F1 measure. + +We use the SPEN for MLC described in Section 2 and also used by Belanger & McCallum (2016). For the feature representation network $F ( { \pmb x } )$ , we use feed-forward networks with two hidden layers, using their same layer widths: 150 for Bibtex/Bookmarks and 250 for Delicious. We pretrain the feature networks $F ( { \dot { \mathbf { x } } } )$ by minimizing independent-label cross entropy for 10 epochs using Adam (Kingma & Ba, 2014) with learning rate 0.001. While training SPENs, we only update the parameters of the energy function $( \Theta )$ and the inference network $( \Phi )$ , keeping the feature network parameters $F ( { \pmb x } )$ fixed. We use Adam with learning rate 0.001 to train $\Theta$ and $\Phi$ . + +The inference networks are feed-forward networks with two hidden layers, using the same architectures as the feature networks $F ( { \pmb x } )$ . This permits us to initialize inference network parameters $\Phi$ using pretrained feature network parameters. For the output, we use an affine transformation layer with a sigmoid nonlinearity function, so the output values are in the range $( 0 , 1 )$ . We interpret each value as the probability of predicting the corresponding label. We obtain discrete predictions by thresholding at a threshold $\tau$ tuned to maximize F1 on the development data. We add three terms to the inference network objective from Section 5: $L _ { 2 }$ regularization, entropy regularization, and regularization toward the pretrained feature network. Margin rescaling and slack rescaling use squared $L _ { 2 }$ distance for $\triangle$ . Additional details are provided in Sec. 9.1 in the appendix. + +Comparison to Prior Work. Table 1 shows results comparing to prior work. The MLP and “SPEN (BM16)” baseline results are taken from (Belanger & McCallum, 2016). We obtained the “SPEN (E2E)” (Belanger et al., 2017) results by running the code available from the authors on these datasets. This method constructs a recurrent neural network that performs gradient-based minimization of the energy with respect to $\textbf { { y } }$ . They noted in their software release that, while this method is more stable, it is prone to overfitting and actually performs worse than the original SPEN. We indeed find this to be the case, as SPEN (E2E) underperforms SPEN (BM16) on all three datasets. + +Our method (“SPEN (InfNet)”) achieves the best average performance across the three datasets. It performs especially well on Bookmarks, which is the largest of the three. Our results use the contrastive hinge loss and retune the inference network on the development data after the energy is trained; these decisions were made based on the tuning described in Sec. 9.1, but all four hinge losses led to similarly strong results. + +Speed Comparison. Table 2 compares training and test-time inference speed among the different methods. We only report speeds of methods that we ran.2 The SPEN (E2E) times were obtained using code obtained from Belanger and McCallum. We suspect that SPEN (BM16) training would be comparable to or slower than SPEN (E2E). Our method can process examples during training about 10 times as fast as the end-to-end SPEN, and 60-130 times as fast during test-time inference. In fact, at test time, our method is roughly the same speed as the MLP baseline, since our inference networks use the same architecture as the feature networks which form the MLP baseline. Compared to the MLP, the training of our method takes significantly more time overall because of joint training of the energy function and inference network, but fortunately the test-time inference is comparable. + +Table 2: Training and test-time inference speed comparison (examples/sec). + +
Training Speed (examples/sec)Testing Speed (examples/sec)
BibtexBookmarksDeliciousBibtexBookmarksDelicious
MLP2167019591261589070692307113750
SPEN (E2E)55155938314201401832
SPEN (InfNet)5533546746679419488888112148
+ +# 7.2 SEQUENCE LABELING + +We also evaluate our methods on sequence labeling. We report experiments with Twitter part-ofspeech (POS) tagging here. Named entity recognition experiments are reported in the Appendix. + +# 7.2.1 ENERGY FUNCTIONS FOR SEQUENCE LABELING + +The input space $\mathcal { X }$ is now the set of all sequences of symbols drawn from a vocabulary. For an input sequence $_ { \textbf { \em x } }$ of length $N$ , where there are $L$ possible output labels for each position in $_ { \textbf { \em x } }$ , the output space $\mathcal { V } ( \pmb { x } )$ is $[ L ] ^ { \widetilde { N } }$ , where the notation $[ q ]$ represents the set containing the first $q$ positive integers. We define $\pmb { y } = \langle y _ { 1 } , y _ { 2 } , . . , y _ { N } \rangle$ where each $y _ { i }$ ranges over possible output labels, i.e., $y _ { i } \in [ L ]$ . + +When defining our energy for sequence labeling, we take inspiration from bidirectional LSTMs (BLSTMs; Hochreiter $\&$ Schmidhuber 1997) and conditional random fields (CRFs; Lafferty et al. 2001). A “linear chain” CRF uses two types of features: one capturing the connection between an output label and $_ { \textbf { \em x } }$ and the other capturing the dependence between neighboring output labels. We use a BLSTM to compute feature representations for $_ { \textbf { \em x } }$ . We use $f ( \pmb { x } , t ) \in \mathbb { R } ^ { d }$ to denote the “input feature vector” for position $t$ , defining it to be the $d$ -dimensional BLSTM hidden vector at $t$ . + +We then define the following energy function: + +$$ +E _ { \Theta } ( \pmb { x } , \pmb { y } ) = - \left( \sum _ { t } U _ { y _ { t } } ^ { \top } f ( \pmb { x } , t ) + \sum _ { t } W _ { y _ { t - 1 } , y _ { t } } \right) +$$ + +where $U _ { i } \in \mathbb { R } ^ { d }$ is a parameter vector for label $i$ and the parameter matrix $W \in \mathbb { R } ^ { L \times L }$ contains label pair parameters. The full set of parameters $\Theta$ includes the $U _ { i }$ vectors, $W$ , and the parameters of the BLSTM. The above energy only permits discrete $\textbf { { y } }$ . For the general case that permits relaxing $\textbf { { y } }$ to be continuous, we treat each $y _ { t }$ as a vector. It will be one-hot for the ground truth $\textbf { { y } }$ and will be a vector of label probabilities for relaxed $\textbf { { y } }$ ’s. Then the general energy function is: + +$$ +E _ { \Theta } ( \pmb { x } , \pmb { y } ) = - \left( \sum _ { t } \sum _ { i = 1 } ^ { L } y _ { t , i } \left( U _ { i } ^ { \top } f ( \pmb { x } , t ) \right) + \sum _ { t } y _ { t - 1 } ^ { \top } W y _ { t } \right) +$$ + +where $y _ { t , i }$ is the $i$ th entry of the vector $y _ { t }$ . In the discrete case, this entry is 1 for a single $i$ and 0 for all others, so this energy reduces to Eq. (12) in that case. In the continuous case, this scalar indicates the probability of the tth position being labeled with label $i$ . For the label pair terms in this general energy function, we use a bilinear product between the vectors $y _ { t - 1 }$ and $y _ { t }$ using parameter matrix $W$ , which also reduces to Eq. (12) when they are one-hot vectors. + +Tag Language Model. In order to capture long-distance dependencies in an entire sequence of labels, we train a “tag language model” on a large corpus of automatically-tagged tweets, then include a term in the energy function representing the log-probability of the given tag sequence under this tag language model. Details are provided below in Section 7.2.4. + +Table 3: Comparison of SPEN hinge losses and showing the impact of retuning (Twitter POS validation accuracies). Inference networks are trained with the cross entropy term. + +
SPEN hinge lossvalidation accuracy (%)
-retuning 89.1+retuning
margin rescaling slack rescaling89.489.3
perceptron (MR,△= 0)89.289.6
88.889.4
contrastive (△= 1)89.0
+ +Table 4: Twitter POS accuracies of BLSTM, CRF, and SPEN (InfNet), using our tuned SPEN configuration (slack-rescaled hinge, inference network trained with cross entropy term). Though slowest to train, the SPEN matches the test-time speed of the BLSTM while achieving the highest accuracies. + +
validation accuracy (%)test accuracy (%)training speed (examples/sec)testing speed (examples/sec)
BLSTM88.688.83851250
CRF89.189.2250500
SPEN (InfNet)89.689.81251250
+ +# 7.2.2 EXPERIMENTAL SETUP + +For Twitter part-of-speech (POS) tagging, we use the annotated data from Gimpel et al. (2011) and Owoputi et al. (2013) which contains $L = 2 5$ POS tags. For training, we combine the 1000- tweet OCT27TRAIN set and the 327-tweet OCT27DEV set. For validation, we use the 500-tweet OCT27TEST set and for testing we use the 547-tweet DAILY547 test set. We use 100-dimensional skip-gram embeddings trained on 56 million English tweets with word2vec (Mikolov et al., 2013).3 + +We use a BLSTM to compute the “input feature vector” $f ( { \pmb x } , t )$ for each position $t$ , using hidden vectors of dimensionality $d = 1 0 0$ . We also use BLSTMs for the inference networks. The output layer of the inference network is a softmax function, so at every position, the inference network produces a distribution over labels at that position. We train inference networks using stochastic gradient descent (SGD) with momentum and train the energy parameters using Adam. For $\triangle$ , we use $L _ { 1 }$ distance. We tune hyperparameters on the validation set; full details of tuning are provided in the appendix. We found that the cross entropy stabilization term worked well for this setting; details and an empirical comparison are provided in Section 9.2.1. + +We compare to standard BLSTM and CRF baselines. We train the BLSTM baseline to minimize per-token log loss; this is often called a “BLSTM tagger”. We train a CRF baseline using the energy in Eq. (12) with the standard conditional log-likelihood objective using the standard dynamic programming algorithms (forward-backward) to compute gradients during training. Further details are provided in the appendix. + +# 7.2.3 RESULTS + +Loss Function Comparison. Table 3 shows results when comparing SPEN training objectives. We see a larger difference among losses here than for MLC tasks. When using the perceptron loss, there is no margin, which leads to overfitting: 89.4 on validation, 88.6 on test (not shown in the table). The contrastive loss, which strives to achieve a margin of 1, does better on test (89.0). We also see here that margin rescaling and slack rescaling both outperform the contrastive hinge, unlike the MLC tasks. We suspect that in the case in which each input/output has a different length, using a cost that captures length is more important. + +Comparison to Standard Baselines. Table 4 compares our final tuned SPEN configuration to two standard baselines: a BLSTM tagger and a CRF. The SPEN achieves higher validation and test accuracies with faster test-time inference. While our method is slower than the baselines during training, it is faster than the CRF at test time, operating at essentially the same speed as the BLSTM baseline while being more accurate. + +Table 5: Twitter POS validation/test accuracies when adding tag language model (TLM) energy term to a SPEN trained with margin-rescaled hinge. + +
val. accuracy (%)test accuracy (%)
-TLM89.889.6
+TLM89.990.2
+ +Here, the SPEN and CRF are using the same functional form for their energy functions, namely the energy given in Eq. (13). We note that the SPEN outperforms the CRF, despite using the same form for the energy. There are two factors that can explain this. First, the losses are different. The CRF uses conditional log-likelihood while the SPEN results here use slack-rescaled hinge, which outperforms the other hinge loss variants (Table 3). Second, the stabilization terms used when training the inference network may be providing a regularizing effect for the model. Our motivation for these experiments was to show the impact of these differences while keeping the form of the energy function fixed. We now turn to richer energies. + +7.2.4 TOWARDS GLOBAL ENERGIES: TAG LANGUAGE MODELS FOR TWITTER POS TAGGING + +The above results only use the pairwise energy; no results used the tag language model (TLM). To compute the TLM energy term, we first automatically tag unlabeled tweets, then train an LSTM language model on the automatic tag sequences. When doing so, we define the input tag embeddings to be $L$ -dimensional one-hot vectors specifying the tags in the training sequences. This is nonstandard compared to standard language modeling. In standard language modeling, we train on observed sequences and compute likelihoods of other fully-observed sequences. However, in our case, we train on tag sequences but we want to use the same model on sequences of tag distributions produced by an inference network. We train the TLM on sequences of one-hot vectors and then use it to compute likelihoods of sequences of tag distributions. Further details about training are provided in Section 9.2.2 in the appendix. + +We define an additional energy term $E ^ { \mathrm { T L M } } ( y )$ based on the pretrained TLM. If the argument $\textbf { { y } }$ consisted of one-hot vectors, we could simply compute its likelihood. However, to support relaxed $\textbf { { y } }$ ’s, we need to define a more general function: + +$$ +E ^ { \mathrm { T L M } } ( \pmb { y } ) = - \sum _ { t = 1 } ^ { | \pmb { y } | + 1 } \log ( \pmb { y } _ { t } ^ { \top } \mathrm { T L M } ( \langle \pmb { y } _ { 0 } , . . . , \pmb { y } _ { t - 1 } \rangle ) ) +$$ + +where $y _ { 0 }$ is the start-of-sequence symbol, $y _ { \vert \pmb { y } \vert + 1 }$ is the end-of-sequence symbol, and $\mathrm { T L M } \big ( \langle y _ { 0 } , . . . , y _ { t - 1 } \rangle \big )$ returns the softmax distribution over tags at position $t$ (under the pretrained tag language model) given the preceding tag vectors. When each $y _ { t }$ is a one-hot vector, this energy reduces to the negative log-likelihood of the tag sequence specified by $\textbf { { y } }$ . + +We define the new joint energy as the sum of the energy function in Eq. (13) and the TLM energy function in Eq. (14). During learning, we keep the TLM parameters fixed to their pretrained values, but we tune the weight of the TLM energy (over the set $\{ 0 . 1 , 0 . 2 , 0 . 5 \} )$ in the joint energy. We train SPENs with the new joint energy using the margin-rescaled hinge, training the inference network with the cross entropy term. + +Table 5 shows results.4 Adding the TLM energy leads to a gain of 0.6 on the test set. Other settings showed more variance; when using slack-rescaled hinge, we found a small drop on test, while when simply training inference networks for a fixed, pretrained joint energy with tuned mixture coefficient, we found a gain of 0.3 on test when adding the TLM energy. We investigated the improvements and found some to involve corrections that seemingly stem from handling non-local dependencies better. Table 10 in the appendix shows examples in which the model with the TLM appears to be better at using the broader context when making tagging decisions. These results suggest that our method of training inference networks can be used to add rich features to structured prediction, though we leave a thorough exploration of global energies to future work. + +Table 6: Comparison of test-time inference algorithms for a trained CRF (Twitter POS tagging). We show the test accuracy for the inference network setting that does best on validation. All inference networks use the same architecture and therefore have essentially the same speed. + +
test-time inference algorithmval. accuracy (%)test accuracy (%)speed (examples/sec)
Viterbialgorithm89.189.2500
Inference network + cross entropy89.789.51250
Inference network+ entropy89.6
Inference network + squared L2 distance88.9
+ +# 7.2.5 BEYOND SPENS: INFERENCE NETWORKS FOR STRUCTURED PREDICTION + +We note that inference networks can be used for any prediction problem. We now explore the use of an inference network to approximate test-time inference for a trained CRF. The results are shown in Table 6. All results use the same trained CRF energy function (Eq. (12)), trained to minimize log loss using the forward-backward algorithm for exact inference during training. The first row shows accuracy and speed when using Viterbi for test-time inference, which is the same setting as the “CRF” row in Table 4. Subsequent rows show results when training inference networks to mimic Viterbi with various stabilization terms. When training these inference networks, we train them on the training set and tune based on early stopping on the validation set. The energy stays fixed while inference networks are trained. + +When using either entropy or cross entropy, our inference networks outperform Viterbi while doubling its speed. When using the squared $L _ { 2 }$ distance term (which regularizes the inference network toward the pretrained BLSTM), the accuracy reduces to be closer to that of the BLSTM, which reaches $8 8 . 6 \%$ on validation (see Table 4). When using no stabilization terms for the inference network, learning fails, reaching $1 3 . 7 \%$ on the development set, showing the importance of using some stabilization term while training the inference network. + +These results show promise for training inference networks to speed up combinatorial algorithms for structured prediction and other domains. + +# 8 CONCLUSIONS AND FUTURE WORK + +We presented ways to jointly train structured energy functions and inference networks using largemargin objectives. The energy function captures arbitrary dependencies among the labels, while the inference networks learns to capture the properties of the energy in an efficient manner, yielding fast test-time inference. Future work includes exploring the space of network architectures for inference networks to balance accuracy and efficiency, experimenting with additional global terms in structured energy functions, and exploring richer structured output spaces such as trees and sentences. + +# ACKNOWLEDGMENTS + +We thank the anonymous reviewers, David Belanger, Weiran Wang and Zheng Cai. We also thank NVIDIA Corporation for donating GPUs used in this research. + +# REFERENCES + +Brandon Amos, Lei Xu, and J. Zico Kolter. Input convex neural networks. In Proc. of ICML, 2017. + +Jimmy Ba and Rich Caruana. Do deep nets really need to be deep? In Advances in NIPS, 2014. + +David Belanger and Andrew McCallum. Structured prediction energy networks. In Proc. of ICML, 2016. + +David Belanger, Bishan Yang, and Andrew McCallum. End-to-end learning for structured prediction energy networks. In Proc. of ICML, 2017. + +Kai-Wei Chang, Shyam Upadhyay, Gourab Kundu, and Dan Roth. Structural learning with amortized inference. In Proc. of AAAI, 2015. + +Michael Collins. Discriminative training methods for hidden Markov models: Theory and experiments with perceptron algorithms. In Proc. of EMNLP, 2002. + +Zihang Dai, Amjad Almahairi, Bachman Philip, Eduard Hovy, and Aaron Courville. Calibrating energy-based generative adversarial networks. In Proc. of ICLR, 2017. + +Justin Domke. Generic methods for optimization-based modeling. In Proc. of AISTATS, 2012. + +Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge. A neural algorithm of artistic style. CoRR, abs/1508.06576, 2015. + +Krzysztof J. Geras, Abdel rahman Mohamed, Rich Caruana, Gregor Urban, Shengjie Wang, Ozlem Aslan, Matthai Philipose, Matthew Richardson, and Charles Sutton. Blending LSTMs into CNNs. In Proc. of ICLR (workshop track), 2016. + +Samuel Gershman and Noah Goodman. Amortized inference in probabilistic reasoning. In Proc. of the Cognitive Science Society, 2014. + +Kevin Gimpel, Nathan Schneider, Brendan O’Connor, Dipanjan Das, Daniel Mills, Jacob Eisenstein, Michael Heilman, Dani Yogatama, Jeffrey Flanigan, and Noah A. Smith. Part-of-speech tagging for Twitter: annotation, features, and experiments. In Proc. of ACL, 2011. + +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 NIPS, 2014. + +Kartik Goyal, Graham Neubig, Chris Dyer, and Taylor Berg-Kirkpatrick. A continuous relaxation of beam search for end-to-end training of neural sequence models. In Proc. of AAAI, 2018. + +Geoffrey Hinton, Oriol Vinyals, and Jeffrey Dean. Distilling the knowledge in a neural network. In NIPS Deep Learning Workshop, 2015. + +Cong Duy Vu Hoang, Gholamreza Haffari, and Trevor Cohn. Towards decoding as continuous optimisation in neural machine translation. In Proc. of EMNLP, 2017. + +Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural Computation, 1997. + +Justin Johnson, Alexandre Alahi, and Li Fei-Fei. Perceptual losses for real-time style transfer and super-resolution. In Proc. of ECCV, 2016. + +Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proc. of EMNLP, 2016. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980, 2014. + +Diederik Kingma and Max Welling. Auto-encoding variational Bayes. CoRR, abs/1312.6114, 2013. + +Daphne Koller and Nir Friedman. Probabilistic Graphical Models: Principles and Techniques. 2009. + +Philipp Krähenbühl and Vladlen Koltun. Efficient inference in fully connected CRFs with Gaussian edge potentials. In Advances in NIPS, 2011. + +Adhiguna Kuncoro, Miguel Ballesteros, Lingpeng Kong, Chris Dyer, and Noah A. Smith. Distilling an ensemble of greedy dependency parsers into one MST parser. In Proc. of EMNLP, 2016. + +John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. Conditional random fields: Probabilistic models for segmenting and labeling sequence data. In Proc. of ICML, 2001. + +Yann LeCun, Sumit Chopra, Raia Hadsell, Marc’Aurelio Ranzato, and Fu-Jie Huang. A tutorial on energy-based learning. In Predicting Structured Data. MIT Press, 2006. + +Chuan Li and Michael Wand. Precomputed real-time texture synthesis with Markovian generative adversarial networks. CoRR, abs/1604.04382, 2016. + +Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF. In Proc. of ACL, 2016. + +André F. T. Martins and Julia Kreutzer. Learning what’s easy: Fully differentiable neural easy-first taggers. In Proc. of EMNLP, 2017. + +Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in NIPS, 2013. + +Alexander Mordvintsev, Christopher Olah, and Mike Tyka. DeepDream-a code example for visualizing neural networks. Google Research, 2015. + +Olutobi Owoputi, Brendan O’Connor, Chris Dyer, Kevin Gimpel, Nathan Schneider, and Noah A. Smith. Improved part-of-speech tagging for online conversational text with word clusters. In Proc. of NAACL, 2013. + +Brooks Paige and Frank Wood. Inference networks for sequential Monte Carlo in graphical models. In Proc. of ICML, 2016. + +Jeffrey Pennington, Richard Socher, and Christopher D. Manning. GloVe: Global vectors for word representation. In Proc. of EMNLP, 2014. + +Gabriel Pereyra, George Tucker, Jan Chorowski, Lukasz Kaiser, and Geoffrey E. Hinton. Regularizing neural networks by penalizing confident output distributions. CoRR, 2017. + +Lev Ratinov and Dan Roth. Design challenges and misconceptions in named entity recognition. In Proc. of CoNLL, 2009. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and Xi Chen. Improved techniques for training GANs. In Advances in NIPS, 2016. + +Vivek Srikumar, Gourab Kundu, and Dan Roth. On amortizing inference cost for structured prediction. In Proc. of EMNLP, 2012. + +Ben Taskar, Carlos Guestrin, and Daphne Koller. Max-margin Markov networks. In Advances in NIPS, 2004. + +Erik F. Tjong Kim Sang and Fien De Meulder. Introduction to the CoNLL-2003 shared task: Language-independent named entity recognition. In Proc. of CONLL, 2003. + +Ioannis Tsochantaridis, Thorsten Joachims, Thomas Hofmann, and Yasemin Altun. Large margin methods for structured and interdependent output variables. JMLR, 2005. + +Lifu Tu, Kevin Gimpel, and Karen Livescu. Learning to embed words in context for syntactic tasks. In Proc. of RepL4NLP, 2017. + +Gregor Urban, Krzysztof J. Geras, Samira Ebrahimi Kahou, Ozlem Aslan, Shengjie Wang, Rich Caruana, Abdel-rahman Mohamed, Matthai Philipose, and Matthew Richardson. Do deep convolutional nets really need to be deep? arXiv preprint arXiv:1603.05691, 2016. + +Shenlong Wang, Sanja Fidler, and Raquel Urtasun. Proximal deep structured models. In Advances in NIPS, 2016. + +Sam Wiseman and Alexander M. Rush. Sequence-to-sequence learning as beam-search optimization. In Proc. of EMNLP, 2016. + +Junbo Jake Zhao, Michaël Mathieu, and Yann LeCun. Energy-based generative adversarial network. CoRR, 2016. + +Table 7: Statistics of the multi-label classification datasets. + +
#labels# features#train#dev#test
Bibtex15918364836-2515
Bookmarks2082151480001200027856
Delicious98250112896-3185
+ +Table 8: Development F1 for Bookmarks when comparing hinge losses for SPEN (InfNet) and whether to retune the inference network. + +
hinge loss-retuning+retuning
margin rescaling38.5138.68
slack rescaling38.5738.62
perceptron (MR,△= 0)38.5538.70
contrastive (△= 1)38.8038.88
+ +# 9 APPENDIX + +# 9.1 MULTI-LABEL CLASSIFICATION + +Table 7 shows dataset statistics for the multi-label classification datasets. + +Hyperparameter Tuning. We tune $\lambda$ (the $L _ { 2 }$ regularization strength for $\Theta$ ) over the set $\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \}$ . The classification threshold $\tau$ is chosen from $[ 0 , 0 . 0 1 , 0 . 0 2 , 0 . 0 3 , 0 . 0 4 , 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 ,$ 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] as also done by Belanger & McCallum (2016). We tune the coefficients for the three stabilization terms for the inference network objective from Section 5 over the follow ranges: $L _ { 2 }$ regularization $( \lambda _ { 1 } ~ \in ~ \{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \} )$ ), entropy regularization $\mathbf { \lambda } ) _ { 2 } ~ = ~ 1 )$ , and regularization toward the pretrained feature network $( \dot { \lambda } _ { 4 } \in \{ 0 , 1 , 1 0 \} )$ ). + +Comparison of Loss Functions and Impact of Inference Network Retuning. Table 8 shows results comparing the four loss functions from Section 4.2 on the development set for Bookmarks, the largest of the three datasets. We find performance to be highly similar across the losses, with the contrastive loss appearing slightly better than the others. + +After training, we “retune” the inference network as specified by Eq. (5) on the development set for 20 epochs using a smaller learning rate of 0.00001. Table 8 shows slightly higher F1 for all losses with retuning. We were surprised to see that the final cost-augmented inference network performs well as a test-time inference network. This suggests that by the end of training, the cost-augmented network may be approaching the argmin and that there may not be much need for retuning. + +When using $\triangle = 0$ or 1, retuning leads to the same small gain as when using the margin-rescaled or slack-rescaled losses. Here the gain is presumably from adjusting the inference network for other inputs rather than from converting it from a cost-augmented to a test-time inference network. + +# 9.2 TWITTER POS TAGGING + +# 9.2.1 HYPERPARAMETER TUNING + +When training inference networks and SPENs for Twitter POS tagging, we use the following hyperparameter tuning. We tune the inference network learning rate $( \{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \} )$ ), $L _ { 2 }$ regularization $( \lambda _ { 1 } \in \{ 0 , 1 { \mathrm { e } } - 3 , 1 { \mathrm { e } } - 4 , 1 { \mathrm { e } } - 5 , 1 { \mathrm { e } } - { \bar { 6 } } , 1 { \mathrm { e } } - { \bar { 7 } } \} )$ ), the entropy regularization term $( \lambda _ { 2 } \in \{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \} )$ , the cross entropy regularization term $( \lambda _ { 3 } \in \{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \} )$ , and the squared L2 distance $( \bar { \lambda } _ { 4 } \in \{ 0 , 0 . 1 , 0 . 2 , \bar { 0 . 5 } , 1 , 2 , 1 0 \} )$ ). We train the energy functions with Adam with a learning rate of 0.001 and $L _ { 2 }$ regularization $( \lambda _ { 1 } \in \{ 0 , 1 \mathrm { { e } - 3 , 1 \mathrm { { e } - 4 , 1 \mathrm { { e } - 5 } , 1 \mathrm { { e } - 6 } , 1 \mathrm { { e } - 7 } \} ) } }$ . + +Table 9 compares the use of the cross entropy and entropy stabilization terms when training inference networks for a SPEN with margin-rescaled hinge. Cross entropy works better than entropy in this setting, though retuning permits the latter to bridge the gap more than halfway. + +Table 9: Comparison of inference network stabilization terms and showing impact of retuning when training SPENs with margin-rescaled hinge (Twitter POS validation accuracies). + +
validation accuracy (%)
inference network stabilization terms-retuning+retuning
cross entropy89.189.3
entropy84.286.8
+ +Table 10: Examples of improvements in Twitter POS tagging when using tag language model (TLM). In all of these examples, the predicted tag when using the TLM matches the gold standard. + +
predicted tags
#tweet (target word in bold)-TLM+TLM
1... that's a t-17, technically . does that count as top-25 ?determinerpronoun
2... lol you know im down like 4 flats on a cadillac ... lol...adjectivepreposition
3... them who he is : he wants her to like him for his pers..prepositionverb
4I wonder when Nic Cage is going to film " Another Somethingnounverb
5Something Las Vegas " . Cut my hair, gag and bore menounverb
6 7... they had their fun,we hd ours !;) lmaooo " Logic will get you from A to B . Imagination will take youproper noun verbverb
everywhere ." - Albert Einstein .noun
8lmao I'm not a sheep who listens to it cos everyone else does ..verbpreposition
9Noo its not cuss you have swag andd you wont look dumb !..nouncoord. conj.
+ +When training CRFs, we use SGD with momentum. We tune the learning rate (over $\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \}$ ) and $L _ { 2 }$ regularization coefficient (over $\{ 0 , 1 \mathrm { e } - 3 , 1 \mathrm { e } - 4 , 1 \mathrm { e } -$ $5 , 1 \mathrm { e } - 6 , 1 \mathrm { e } - 7 \}$ ). For all methods, we use early stopping based on validation accuracy. + +# 9.2.2 TAG LANGUAGE MODEL DETAILS AND ANALYSIS + +To obtain training data for training the tag language model, we run the Twitter POS tagger from Owoputi et al. (2013) on a dataset of 303K randomly-sampled English tweets. We train the tag language model on 300K tweets and use the remaining 3K for tuning hyperparameters and early stopping. We train an LSTM language model on the tag sequences using stochastic gradient descent with momentum and early stopping on the validation set. We used a dropout rate of 0.5 for the LSTM hidden layer. We tune the learning rate $( \{ 0 . 1 , 0 . 2 , 0 . 5 , 1 . 0 \} )$ , the number of LSTM layers $( \{ 1 , 2 \} )$ , and the hidden layer size $( \{ 5 0 , 1 0 0 , 2 0 0 \} )$ ). + +Table 10 shows examples in which our SPEN that includes the TLM appears to be using broader context when making tagging decisions. These are examples from the test set labeled by two models: the SPEN without the TLM (which achieves $8 9 . 6 \%$ accuracy, as shown in Table 5) and the SPEN with the TLM (which reaches $9 0 . 2 \%$ accuracy). In example 1, the token “that” is predicted to be a determiner based on local context, but is correctly labeled a pronoun when using the TLM. This example is difficult because of the noun/verb tag ambiguity of the next word (“count”) and its impact on the tag for “that”. Examples 2 and 3 show two corrections for the token “like”, which is a highly ambiguous word in Twitter POS tagging. The broader context makes it much clearer which tag is intended. + +The next two examples (4 and 5) are cases of noun/verb ambiguity that are resolvable with larger context. The last four examples show improvements for nonstandard word forms. The shortened form of “had” (example 6) is difficult to tag due to its collision with “HD” (high-definition), but the model with the TLM is able to tag it correctly. In example 7, the ambiguous token “b” is frequently used as a short form of “be” on Twitter, and since it comes after “to” in this context, the verb interpretation is encouraged. However, the broader context makes it clear that it is not a verb and the TLM-enriched model tags it correctly. The words in the last two examples are nonstandard word forms that were not observed in the training data, which is likely the reason for their erroneous predictions. When using the TLM, we can better handle these rare forms based on the broader context. + +Table 11: Named entity recognition F1 of BLSTM, CRF, and SPEN (InfNet) with slack-rescaled hinge where inference networks used cross entropy stabilization term. Though slowest to train, the SPEN matches the test-time speed of the BLSTM while improving F1 by 2 points, though it lags behind the CRF. + +
validation F1test F1training speed (examples/sec)testing speed (examples/sec)
BLSTM88.3083.023851042
CRF91.3187.15222454
SPEN (InfNet)89.9885.061181025
+ +# 9.2.3 LEARNED PAIRWISE POTENTIAL MATRIX + +![](images/28cdae28d8e710e4818ba3c338be0b1442bf330857c6db3da42ee019ad439d1e.jpg) +Figure 1: Learned pairwise potential matrix for Twitter POS tagging. + +Figure 1 shows the learned pairwise potential matrix $W$ in Twitter POS tagging. We can see strong correlations between labels in neighborhoods. For example, an adjective (A) is more likely to be followed by a noun (N) than a verb (V) (see row labeled “A” in the figure). + +# 9.3 NAMED ENTITY RECOGNITION + +For named entity recognition (NER), we perform experiments on the English data from the CoNLL 2003 shared task (Tjong Kim Sang & De Meulder, 2003). This task contains sentences annotated with named entities and their types, containing 14987 training sentences, 3466 in the development set, and 3684 in the test set. There are four named entity types: PERSON, LOCATION, ORGANIZATION, and MISC. We use the BIOES tagging scheme instead of the original BIO2, following prior work (Ratinov & Roth, 2009; Ma & Hovy, 2016). There are $L = 1 7$ classes. We use 100-dimensional pretrained GloVe (Pennington et al., 2014) embeddings trained on 6 billion words from Wikipedia and web text, which work better than other pretrained embeddings (Ma & Hovy, 2016). + +Results are shown in Table 11. We see a large 4-point gap between the BLSTM and CRF, suggesting the importance of structured information for this problem. Though the SPEN still lags behind the CRF in F1, it matches the test-time speed of the BLSTM while improving F1 by 2 points. \ No newline at end of file diff --git a/parse/train/H1WgVz-AZ/H1WgVz-AZ_content_list.json b/parse/train/H1WgVz-AZ/H1WgVz-AZ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..17ffc8ebe7adaa3007f12e3a9c7e9eab63866e04 --- /dev/null +++ b/parse/train/H1WgVz-AZ/H1WgVz-AZ_content_list.json @@ -0,0 +1,2263 @@ +[ + { + "type": "text", + "text": "LEARNING APPROXIMATE INFERENCE NETWORKS FOR STRUCTURED PREDICTION ", + "text_level": 1, + "bbox": [ + 176, + 99, + 779, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Lifu Tu Kevin Gimpel \nToyota Technological Institute at Chicago, Chicago, IL, 60637, USA \n{lifu,kgimpel}@ttic.edu ", + "bbox": [ + 183, + 169, + 633, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use neural network architectures to define energy functions that can capture arbitrary dependencies among parts of structured outputs. Prior work used gradient descent for inference, relaxing the structured output to a set of continuous variables and then optimizing the energy with respect to them. We replace this use of gradient descent with a neural network trained to approximate structured argmax inference. This “inference network” outputs continuous values that we treat as the output structure. We develop large-margin training criteria for joint training of the structured energy function and inference network. On multi-label classification we report speed-ups of $1 0 { - } 6 0 \\mathrm { x }$ compared to (Belanger et al., 2017) while also improving accuracy. For sequence labeling with simple structured energies, our approach performs comparably to exact inference while being much faster at test time. We then demonstrate improved accuracy by augmenting the energy with a “label language model” that scores entire output label sequences, showing it can improve handling of long-distance dependencies in part-of-speech tagging. Finally, we show how inference networks can replace dynamic programming for test-time inference in conditional random fields, suggestive for their general use for fast inference in structured settings. ", + "bbox": [ + 232, + 279, + 766, + 527 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 551, + 336, + 568 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Energy-based modeling (LeCun et al., 2006) associates a scalar measure of compatibility to each configuration of input and output variables. Given an input $_ { \\textbf { \\em x } }$ , the predicted output $\\hat { \\textbf { \\textit { y } } }$ is chosen by minimizing an energy function $E ( \\pmb { x } , \\hat { \\pmb { y } } )$ . For structured prediction, the parameterization of the energy function can leverage domain knowledge about the structured output space. However, learning and prediction become complex. ", + "bbox": [ + 174, + 582, + 823, + 651 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use an energy function to score structured outputs, and perform inference by using gradient descent to iteratively optimize the energy with respect to the outputs. Belanger et al. (2017) develop an “end-to-end” method that unrolls an approximate energy minimization algorithm into a fixed-size computation graph that is trainable by gradient descent. After learning the energy function, however, they still must use gradient descent for test-time inference. ", + "bbox": [ + 174, + 659, + 825, + 742 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We replace the gradient descent approach with a neural network trained to do inference, which we call an inference network. It can have any architecture such that it takes an input $_ { \\textbf { \\em x } }$ and returns an output interpretable as a $\\textbf { { y } }$ . As in prior work, we relax $\\textbf { { y } }$ from discrete to continuous. For multi-label classification, we use a feed-forward network that outputs a vector. We assign a single label to each dimension of the vector, interpreting its value as the probability of predicting that label. For sequence labeling, we output a distribution over predicted labels at each position in the sequence. We adapt the energy functions such that they can operate with both discrete ground truth outputs and outputs generated by our inference networks. ", + "bbox": [ + 174, + 750, + 825, + 861 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We define large-margin training objectives to jointly train energy functions and inference networks. Our training objectives resemble the alternating optimization framework of generative adversarial networks (GANs; Goodfellow et al. 2014): the inference network is analogous to the generator and the energy function is analogous to the discriminator. Our approach avoids argmax computations, making training and test-time inference faster than standard SPENs. We experiment with multi-label classification using the same setup as Belanger & McCallum (2016), demonstrating speed-ups of $1 0 \\mathrm { x }$ in training time and $6 0 \\mathrm { x }$ in test-time inference while also improving accuracy. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We then design a SPEN and inference network for sequence labeling by using recurrent neural networks (RNNs). We perform comparably to a conditional random field (CRF; Lafferty et al. 2001) when using the same energy function, with faster test-time inference. We also experiment with a richer energy that includes a “label language model” that scores entire output label sequences using an RNN, showing it can improve handling of long-distance dependencies in part-of-speech tagging. Finally, we show how inference networks can replace dynamic programming for test-time inference with CRFs, suggestive for the general use of inference networks to speed up inference in traditional structured prediction settings. ", + "bbox": [ + 173, + 152, + 825, + 265 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 STRUCTURED PREDICTION ENERGY NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 284, + 607, + 300 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We denote the space of inputs by $\\mathcal { X }$ . For a given input $\\mathbf { \\boldsymbol { x } } \\in \\mathcal { X }$ , we denote the space of legal structured outputs by $\\mathcal { V } ( \\pmb { x } )$ . We denote the entire space of structured outputs by $\\mathcal { V } = \\cup _ { \\pmb { x } \\in \\mathcal { X } } \\mathcal { V } ( \\pmb { x } )$ . A SPEN defines an energy function $E _ { \\Theta } : \\mathcal { X } \\times \\mathcal { Y } \\mathbb { R }$ parameterized by $\\Theta$ that uses a functional architecture to compute a scalar energy for an input/output pair. ", + "bbox": [ + 174, + 314, + 825, + 371 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We describe the SPEN for multi-label classification (MLC) from Belanger & McCallum (2016). Here, $_ { \\textbf { \\em x } }$ is a fixed-length feature vector. We assume there are $L$ labels, each of which can be on or off for each input, so $\\mathcal { V } ( \\pmb { x } ) = \\{ 0 , 1 \\} ^ { L }$ for all $_ { \\textbf { \\em x } }$ . The energy function is the sum of two terms: $E _ { \\Theta } ( { \\pmb x } , { \\pmb y } ) = E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) + \\dot { E } ^ { l a b } ( { \\pmb y } )$ . $E ^ { l o c } ( { \\pmb x } , { \\pmb y } )$ is the sum of linear models: ", + "bbox": [ + 174, + 377, + 825, + 434 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/baf6f71e967caca1d316d7ddd7201209229ab95076d159c5f9173901c32ca808.jpg", + "text": "$$\nE ^ { l o c } ( { \\pmb x } , { \\pmb y } ) = \\sum _ { i = 1 } ^ { L } y _ { i } b _ { i } ^ { \\top } F ( { \\pmb x } )\n$$", + "text_format": "latex", + "bbox": [ + 403, + 438, + 594, + 481 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $b _ { i }$ is a parameter vector for label $i$ and $F ( { \\pmb x } )$ is a multi-layer perceptron computing a feature representation for the input $_ { \\textbf { \\em x } }$ . $E ^ { l a b } ( { \\pmb y } )$ scores $\\textbf { { y } }$ independent of $_ { \\textbf { \\em x } }$ : ", + "bbox": [ + 173, + 484, + 825, + 513 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/bf0061c1693a8bf3aed1da60ab8f002d6a79e952808a4d8623a007d8b16a07d2.jpg", + "text": "$$\nE ^ { l a b } ( { \\pmb y } ) = c _ { 2 } ^ { \\top } g ( C _ { 1 } { \\pmb y } )\n$$", + "text_format": "latex", + "bbox": [ + 424, + 517, + 573, + 536 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $c _ { 2 }$ is a parameter vector, $g$ is an elementwise non-linearity function, and $C _ { 1 }$ is a parameter matrix. After learning the energy function, prediction minimizes energy: ", + "bbox": [ + 171, + 539, + 821, + 568 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/55227d60b498df46d076e076cb18459a35d7bed1eceed53a64bfd7480da624be.jpg", + "text": "$$\n\\pmb { \\hat { y } } = \\underset { \\pmb { y } \\in \\mathscr { y } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )\n$$", + "text_format": "latex", + "bbox": [ + 421, + 570, + 575, + 599 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "However, solving Eq. (3) requires combinatorial algorithms because $\\mathcal { V }$ is a discrete structured space. This becomes intractable when $E _ { \\Theta }$ does not decompose into a sum over small “parts” of $\\textbf { { y } }$ . Belanger & McCallum (2016) relax this problem by allowing the discrete vector $\\textbf { { y } }$ to be continuous. We use $\\mathcal { { V } } _ { R }$ to denote the relaxed output space. For MLC, $\\begin{array} { r } { \\breve { y } _ { R } ( { \\pmb x } ) = [ 0 , 1 ] ^ { L } } \\end{array}$ . They solve the relaxed problem by using gradient descent to iteratively optimize the energy with respect to $\\textbf { { y } }$ . Since they train with a structured large-margin objective, repeated inference is required during learning. They note that using gradient descent for this inference step is time-consuming and makes learning less stable. So Belanger et al. (2017) propose an “end-to-end” learning procedure inspired by Domke (2012). This approach performs backpropagation through each step of gradient descent. We compare to both methods in our experiments below. ", + "bbox": [ + 173, + 602, + 825, + 742 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 INFERENCE NETWORKS FOR SPENS ", + "text_level": 1, + "bbox": [ + 174, + 761, + 509, + 777 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Belanger & McCallum (2016) relaxed $\\textbf { { y } }$ from a discrete to a continuous vector and used gradient descent for inference. We also relax $\\textbf { { y } }$ but we use a different strategy to approximate inference. We define an inference network $\\mathbf { A } _ { \\Psi } ( \\pmb { x } )$ parameterized by $\\Psi$ and train it with the goal that ", + "bbox": [ + 174, + 791, + 826, + 834 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/427e08864aacf82c0e47a677521569f8238eff6352c48ab6feb01ca7bd8dc8b1.jpg", + "text": "$$\n\\mathbf { A } _ { \\Psi } ( \\pmb { x } ) \\approx \\underset { \\pmb { y } \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )\n$$", + "text_format": "latex", + "bbox": [ + 401, + 838, + 596, + 866 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Given an energy function $E _ { \\Theta }$ and a dataset $X$ of inputs, we solve the following optimization problem: ", + "bbox": [ + 179, + 869, + 825, + 885 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/3bf9815a6140b121415a70d85ca5f0ab9bb0e286e7ee824337a7cea13a6eaa31.jpg", + "text": "$$\n\\hat { \\Psi } \\underset { \\Psi } { \\mathrm { a r g m i n } } \\sum _ { \\pmb { x } \\in X } E _ { \\Theta } ( \\pmb { x } , \\mathbf { A } _ { \\Psi } ( \\pmb { x } ) )\n$$", + "text_format": "latex", + "bbox": [ + 383, + 887, + 612, + 921 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The architecture of $\\mathbf { A } _ { \\Psi }$ will depend on the task. For MLC, the same set of labels is applicable to every input, ${ \\bf { S 0 } } \\ y$ has the same length for all inputs. So, we can use a feed-forward network for $\\mathbf { A } _ { \\Psi }$ with a vector output, treating each dimension as the prediction for a single label. For sequence labeling, each $_ { \\textbf { \\em x } }$ (and therefore each $\\textbf { { y } }$ ) can have a different length, so we must use a network architecture for $\\mathbf { A } _ { \\Psi }$ that permits different lengths of predictions. We use an RNN that returns a vector at each position of $_ { \\textbf { \\em x } }$ . We interpret this vector as a probability distribution over output labels at that position. ", + "bbox": [ + 173, + 102, + 825, + 188 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We note that the output of $\\mathbf { A } _ { \\Psi }$ must be compatible with the energy function, which is typically defined in terms of the original discrete output space $\\mathcal { V }$ . This may require generalizing the energy function to be able to operate both on elements of $\\mathcal { V }$ and $\\mathcal { V } _ { R }$ . For MLC, no change is required. For sequence labeling, the change is straightforward and is described below in Section 7.2.1. ", + "bbox": [ + 174, + 194, + 825, + 251 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 JOINT TRAINING OF SPENS AND INFERENCE NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 270, + 686, + 286 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Belanger & McCallum (2016) propose a structured hinge loss for training SPENs: ", + "bbox": [ + 173, + 300, + 712, + 315 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/8b09b16075467b88bf5b8bf7af453f3340a24e7d9e02967171df4ed33283c98a.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\Theta } \\sum _ { \\langle x _ { i } , y _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\operatorname* { m a x } _ { y \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } \\left( \\triangle ( \\pmb { y } , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right) \\right] _ { + }\n$$", + "text_format": "latex", + "bbox": [ + 277, + 319, + 717, + 361 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { D }$ is the set of training pairs, $[ f ] _ { + } = \\operatorname* { m a x } ( 0 , f )$ , and $\\triangle ( \\pmb { y } , \\pmb { y } ^ { \\prime } )$ is a structured cost function that returns a nonnegative value indicating the difference between $\\textbf { { y } }$ and $\\boldsymbol { y } ^ { \\prime }$ . This loss is often referred to as “margin-rescaled” structured hinge loss (Taskar et al., 2004; Tsochantaridis et al., 2005). ", + "bbox": [ + 173, + 364, + 825, + 409 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "However, this loss is expensive to minimize for structured models because of the “cost-augmented” inference step $( \\operatorname* { m a x } _ { \\pmb { y } \\in \\mathcal { y } _ { R } ( \\pmb { x } ) } )$ . In prior work with SPENs, this step used gradient descent. We replace this with a cost-augmented inference network ${ \\bf A } _ { \\Phi } ( { \\pmb x } )$ . As suggested by the notation, the cost-augmented inference network $\\mathbf { A } _ { \\Phi }$ and the inference network $\\mathbf { A } _ { \\Psi }$ will typically have the same functional form, but use different parameters $\\Phi$ and $\\Psi$ . We write our new optimization problem as: ", + "bbox": [ + 174, + 412, + 826, + 486 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/3cd9ffa2b7b4e03e6ad212e519e8fd303dc78c32edbda1b39426a6f957ea3fca.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\pmb { x } _ { i } , \\pmb { y } _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right] _ { + }\n$$", + "text_format": "latex", + "bbox": [ + 258, + 489, + 738, + 526 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We treat this optimization problem as a minimax game and find a saddle point for the game. Following Goodfellow et al. (2014), we implement this using an iterative numerical approach. We alternatively optimize $\\Phi$ and $\\Theta$ , holding the other fixed. Optimizing $\\Phi$ to completion in the inner loop of training is computationally prohibitive and may lead to overfitting. So we alternate between one mini-batch for optimizing $\\Phi$ and one for optimizing $\\Theta$ . We also add $L _ { 2 }$ regularization terms for $\\Theta$ and $\\Phi$ . ", + "bbox": [ + 173, + 536, + 825, + 608 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The objective for the cost-augmented inference network is: ", + "bbox": [ + 174, + 613, + 560, + 628 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/81b3451fee569d726e87a3eefef544d0a83f9edbf6416c0fbd76d4ca9b61468c.jpg", + "text": "$$\n\\hat { \\Phi } \\underset { \\Phi } { \\mathrm { a r g m a x } } [ \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } ) _ { i } ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + }\n$$", + "text_format": "latex", + "bbox": [ + 276, + 632, + 720, + 659 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "That is, we update $\\Phi$ so that $\\mathbf { A } _ { \\Phi }$ yields an output that has low energy and high cost, in order to mimic cost-augmented inference. The energy parameters $\\Theta$ are kept fixed. There is an analogy here to the generator in GANs: $\\mathbf { A } _ { \\Phi }$ is trained to produce a high-cost structured output that is also appealing to the current energy function. To help stabilize training of $\\Phi$ , we add several terms to this objective, discussed below in Section 5. ", + "bbox": [ + 173, + 662, + 826, + 733 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The objective for the energy function is: ", + "bbox": [ + 176, + 739, + 436, + 755 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6e4c463e6ac65a7e85e44a613b15c85229d4923b6dd4c9b25b7d1273aa2be9da.jpg", + "text": "$$\n\\hat { \\Theta } \\underset { \\Theta } { \\mathrm { a r g m i n } } [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + } + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 245, + 758, + 751, + 786 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "That is, we update $\\Theta$ so as to widen the gap between the cost-augmented and ground truth outputs. There is an analogy here to the discriminator in GANs. The energy function is updated so as to enable it to distinguish “fake” outputs produced by $\\mathbf { A } _ { \\Phi }$ from real outputs $\\mathbf { \\nabla } _ { \\mathbf { \\psi } _ { j } } \\mathbf { \\sigma } _ { j } \\mathbf { \\sigma } _ { j } $ . ", + "bbox": [ + 173, + 790, + 826, + 833 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Training iterates between updating $\\Phi$ and $\\Theta$ using the objectives above. ", + "bbox": [ + 174, + 838, + 640, + 853 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.1 TEST-TIME INFERENCE ", + "text_level": 1, + "bbox": [ + 174, + 869, + 379, + 883 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "After training, we want to use an inference network $\\mathbf { A } _ { \\Psi }$ defined in Eq. (4). However, training only gives us a cost-augmented inference network $\\mathbf { A } _ { \\Phi }$ . Since $\\mathbf { A } _ { \\Psi }$ and $\\mathbf { A } _ { \\Phi }$ have the same functional form, we can use $\\Phi$ to initialize $\\Psi$ , then do additional training on $\\mathbf { A } _ { \\Psi }$ as in Eq. (5) where $X$ is the training or validation set. This step helps the resulting inference network to produce outputs with lower energy, as it is no longer affected by the cost function. Since this procedure does not use the output labels of the $_ { \\textbf { \\em x } }$ ’s in $X$ , it could also be applied to the test data in a transductive setting. ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2 VARIATIONS AND SPECIAL CASES ", + "text_level": 1, + "bbox": [ + 176, + 176, + 450, + 190 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This approach also permits us to use large-margin structured prediction with slack rescaling (Tsochantaridis et al., 2005). Slack rescaling can yield higher accuracies than margin rescaling, but requires “cost-scaled” inference during training which is intractable for many classes of output structures. However, we can use our notion of inference networks to circumvent this tractability issue and approximately optimize the slack-rescaled hinge loss, yielding the following optimization problem: ", + "bbox": [ + 173, + 202, + 826, + 272 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/c38a7125f1caf5dee8eb0dcc6338c0a0ca5a1baa5f9921e518f50e97c7405cd5.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\mathbf { x } _ { i } , \\mathbf { y } _ { i } \\rangle \\in \\mathcal { D } } \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) , \\mathbf { y } _ { i } ) [ 1 - E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) ) + E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { y } _ { i } ) ] _ { + }\n$$", + "text_format": "latex", + "bbox": [ + 253, + 275, + 743, + 311 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Using the same argument as above, we can also break this into alternating optimization of $\\Phi$ and $\\Theta$ . ", + "bbox": [ + 178, + 315, + 825, + 330 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We can optimize a structured perceptron (Collins, 2002) version by using the margin-rescaled hinge loss (Eq. (7)) and fixing $\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 0 } \\end{array}$ . When using this loss, the cost-augmented inference network is actually a test-time inference network, because the cost is always zero, so using this loss may lessen the need to retune the inference network after training. ", + "bbox": [ + 174, + 335, + 825, + 392 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "When we fix $\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 1 } \\end{array}$ , then margin-rescaled hinge is equivalent to slack-rescaled hinge. While using $\\triangle = 1$ is not useful in standard max-margin training with exact argmax inference (because the cost has no impact on optimization when fixed to a positive constant), it is potentially useful in our setting. Consider our SPEN objectives with $\\triangle = 1$ : ", + "bbox": [ + 173, + 398, + 825, + 455 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e57faeecede0e0329d0b02faa574cae0a413eb640a5c47c7dca92999b9f2e2e6.jpg", + "text": "$$\n[ 1 - E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb A } _ { \\Phi } ( { \\pmb x } _ { i } ) ) + E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb y } _ { i } ) ] _ { + }\n$$", + "text_format": "latex", + "bbox": [ + 369, + 459, + 629, + 478 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "There will always be a nonzero difference between the two energies because ${ \\bf A } _ { \\Phi } ( { \\pmb x } _ { i } )$ will never exactly equal the discrete vector $\\mathbf { \\nabla } _ { \\mathbf { \\mathcal { Y } } _ { i } }$ . Since there is no explicit minimization over all discrete vectors $\\textbf { { y } }$ , this case is more similar to a “contrastive” hinge loss which seeks to make the energy of the true output lower than the energy of a particular “negative sample” by a margin of at least 1. ", + "bbox": [ + 174, + 481, + 825, + 537 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In our experiments, we will compare four hinge losses for training SPENs: margin-rescaled (Eq. (7)), slack-rescaled (Eq. (10)), perceptron (margin-rescaled with $\\triangle = 0$ ), and contrastive $\\triangle = 1$ ). ", + "bbox": [ + 174, + 544, + 826, + 573 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "5 IMPROVING TRAINING FOR INFERENCE NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 593, + 635, + 609 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We found that the alternating nature of the optimization led to difficulties during training. Similar observations have been noted about other alternative optimization settings, especially those underlying generative adversarial networks (Salimans et al., 2016). Below we describe several techniques we found to help stabilize training, which are optional terms added to the objective in Eq. (8). ", + "bbox": [ + 173, + 623, + 825, + 680 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$L _ { 2 }$ Regularization: We use $L _ { 2 }$ regularization, adding the penalty term $\\| \\Phi \\| _ { 2 } ^ { 2 }$ with coefficient $\\lambda _ { 1 }$ ", + "bbox": [ + 173, + 685, + 805, + 702 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Entropy Regularization: We add an entropy-based regularizer $\\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } ) )$ defined for the problem under consideration. For MLC, the output of $\\mathbf { A } _ { \\Phi } ( \\pmb { x } )$ is a vector of scalars in [0, 1], one for each label, where the scalar is interpreted as a label probability. The entropy regularizer $\\mathrm { l o s s } _ { \\mathrm { H } }$ is the sum of the entropies over these label binary distributions. For sequence labeling, where the length of $_ { \\textbf { \\em x } }$ is $N$ and where there are $L$ unique labels, the output of ${ \\bf A } _ { \\Phi } ( { \\pmb x } )$ is a length- $N$ sequence of length- $L$ vectors, each of which represents the distribution over the $L$ labels at that position in $_ { \\textbf { \\em x } }$ . Then, $\\mathrm { l o s s } _ { \\mathrm { H } }$ is the sum of entropies of these label distributions across positions in the sequence. ", + "bbox": [ + 173, + 707, + 825, + 805 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "When tuning the coefficient $\\lambda _ { 2 }$ for this regularizer, we consider both positive and negative values, permitting us to favor either low- or high-entropy distributions as the task prefers.1 ", + "bbox": [ + 174, + 811, + 821, + 840 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Local Cross Entropy Loss: We add a local (non-structured) cross entropy $\\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } )$ defined for the problem under consideration. We only experiment with this loss for sequence labeling. ", + "bbox": [ + 174, + 848, + 823, + 876 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "It is the sum of the label cross entropy losses over all positions in the sequence. This loss provides more explicit feedback to the inference network, helping the optimization procedure to find a solution that minimizes the energy function while also correctly classifying individual labels. It can also be viewed as a multi-task loss for the inference network. ", + "bbox": [ + 174, + 103, + 823, + 160 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Regularization Toward Pretrained Inference Network: We add the penalty $\\lVert \\Phi - \\Phi _ { 0 } \\rVert _ { 2 } ^ { 2 }$ where $\\Phi _ { 0 }$ is a pretrained network, e.g., a local classifier trained to independently predict each part of $\\textbf { { y } }$ . ", + "bbox": [ + 171, + 166, + 823, + 195 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Each additional term has its own tunable hyperparameter. Finally we obtain: ", + "bbox": [ + 174, + 202, + 674, + 217 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/fc64f56ebe399567e7f1d7d37808748ed8b7c86a56715673a34127347f2f0f18.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { \\Phi } \\underset { \\Phi } { \\operatorname { a r g m a x } } \\ [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\boldsymbol { y } _ { i } ) ] _ { + } - \\lambda _ { 1 } \\| \\Phi \\| _ { 2 } ^ { 2 } } \\\\ { + \\lambda _ { 2 } \\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) - \\lambda _ { 3 } \\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - \\lambda _ { 4 } \\| \\Phi - \\Phi _ { 0 } \\| _ { 2 } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 236, + 248, + 761, + 299 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "6 RELATED WORK ", + "text_level": 1, + "bbox": [ + 174, + 344, + 344, + 361 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our methods are reminiscent of other alternating optimization problems like that underlying generative adversarial networks (GANs; Goodfellow et al. 2014). GANs are based on a minimax game and have a value function that one agent (a discriminator $D$ ) seeks to maximize and another (a generator $G$ ) seeks to minimize. By their analysis, a log loss discriminator converges to a degenerate uniform solution. When using hinge loss, we can get a non-degenerate discriminator while matching the data distribution (Dai et al., 2017; Zhao et al., 2016). Our formulation is closer to this hinge loss version of the GAN. ", + "bbox": [ + 173, + 395, + 825, + 492 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our approach is also related to knowledge distillation (Ba & Caruana, 2014; Hinton et al., 2015), which refers to strategies in which one model (a “student”) is trained to mimic another (a “teacher”). Typically, the teacher is a larger, more accurate model but which is too computationally expensive to use at test time. Urban et al. (2016) train shallow networks using image classification data labeled by an ensemble of deep teacher nets. Geras et al. (2016) train a convolutional network to mimic an LSTM for speech recognition. Others have explored knowledge distillation for sequence-to-sequence learning (Kim & Rush, 2016) and parsing (Kuncoro et al., 2016). ", + "bbox": [ + 173, + 498, + 825, + 597 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Since we train a single inference network for an entire dataset, our approach is also related to “amortized inference” (Srikumar et al., 2012; Gershman & Goodman, 2014; Paige & Wood, 2016; Chang et al., 2015). Such methods precompute or save solutions to subproblems for faster overall computation. Our inference networks likely devote more modeling capacity to the most frequent substructures in the data. A kind of inference network is used in variational autoencoders (Kingma & Welling, 2013) to approximate posterior inference in generative models. ", + "bbox": [ + 173, + 603, + 825, + 688 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our methods are also related to work in structured prediction that seeks to approximate structured models with factorized ones, e.g., mean-field approximations in graphical models (Koller & Friedman, 2009; Krähenbühl & Koltun, 2011). Like our use of inference networks, there have been efforts in designing differentiable approximations of combinatorial search procedures (Martins & Kreutzer, 2017; Goyal et al., 2018) and structured losses for training with them (Wiseman & Rush, 2016). Since we relax discrete output variables to be continuous, there is also a connection to recent work that focuses on structured prediction with continuous valued output variables (Wang et al., 2016). They also propose a formulation that yields an alternating optimization problem, but it is based on proximal methods. ", + "bbox": [ + 173, + 694, + 826, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "There are other settings in which gradient descent is used for inference, e.g., image generation applications like DeepDream (Mordvintsev et al., 2015) and neural style transfer (Gatys et al., 2015), as well as machine translation (Hoang et al., 2017). In these and related settings, gradient descent has started to be replaced by inference networks, especially for image transformation tasks (Johnson et al., 2016; Li & Wand, 2016). Our results below provide more evidence for making this transition. An alternative to what we pursue here would be to obtain an easier convex optimization problem for inference via input convex neural networks (Amos et al., 2017). ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/8b72a4945f4a7f3180daa392e3b744eef87f57e685021a59c525807ba1899d6a.jpg", + "table_caption": [ + "Table 1: Test F1 when comparing methods on multi-label classification datasets. " + ], + "table_footnote": [], + "table_body": "
BibtexBookmarksDeliciousavg.
MLP38.933.837.836.8
SPEN (BM16)42.234.437.538.0
SPEN (E2E)38.133.934.435.5
SPEN (InfNet)42.237.637.539.1
", + "bbox": [ + 310, + 131, + 687, + 199 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "7 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 229, + 326, + 244 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In Sec. 7.1 we compare our approach to previous work on training SPENs for MLC. We compare accuracy and speed, finding our approach to outperform prior work. We then perform experiments with sequence labeling tasks in Sec. 7.2. ", + "bbox": [ + 174, + 262, + 825, + 303 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "7.1 MULTI-LABEL CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 176, + 321, + 436, + 337 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We use the MLC datasets used by Belanger & McCallum (2016): Bibtex, Delicious, and Bookmarks. Dataset statistics are shown in Table 7 in the Appendix. For Bibtex and Delicious, we follow Belanger and McCallum and tune the hyperparameters using a different sampling of train and test data, then use the standard train/test split for final experimentation using the tuned hyperparameters. For Bookmarks, we use the same train/dev/test split as (Belanger & McCallum, 2016). For evaluation, we report the example averaged (macro averaged) F1 measure. ", + "bbox": [ + 173, + 348, + 826, + 433 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We use the SPEN for MLC described in Section 2 and also used by Belanger & McCallum (2016). For the feature representation network $F ( { \\pmb x } )$ , we use feed-forward networks with two hidden layers, using their same layer widths: 150 for Bibtex/Bookmarks and 250 for Delicious. We pretrain the feature networks $F ( { \\dot { \\mathbf { x } } } )$ by minimizing independent-label cross entropy for 10 epochs using Adam (Kingma & Ba, 2014) with learning rate 0.001. While training SPENs, we only update the parameters of the energy function $( \\Theta )$ and the inference network $( \\Phi )$ , keeping the feature network parameters $F ( { \\pmb x } )$ fixed. We use Adam with learning rate 0.001 to train $\\Theta$ and $\\Phi$ . ", + "bbox": [ + 174, + 439, + 825, + 536 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The inference networks are feed-forward networks with two hidden layers, using the same architectures as the feature networks $F ( { \\pmb x } )$ . This permits us to initialize inference network parameters $\\Phi$ using pretrained feature network parameters. For the output, we use an affine transformation layer with a sigmoid nonlinearity function, so the output values are in the range $( 0 , 1 )$ . We interpret each value as the probability of predicting the corresponding label. We obtain discrete predictions by thresholding at a threshold $\\tau$ tuned to maximize F1 on the development data. We add three terms to the inference network objective from Section 5: $L _ { 2 }$ regularization, entropy regularization, and regularization toward the pretrained feature network. Margin rescaling and slack rescaling use squared $L _ { 2 }$ distance for $\\triangle$ . Additional details are provided in Sec. 9.1 in the appendix. ", + "bbox": [ + 173, + 544, + 825, + 667 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Comparison to Prior Work. Table 1 shows results comparing to prior work. The MLP and “SPEN (BM16)” baseline results are taken from (Belanger & McCallum, 2016). We obtained the “SPEN (E2E)” (Belanger et al., 2017) results by running the code available from the authors on these datasets. This method constructs a recurrent neural network that performs gradient-based minimization of the energy with respect to $\\textbf { { y } }$ . They noted in their software release that, while this method is more stable, it is prone to overfitting and actually performs worse than the original SPEN. We indeed find this to be the case, as SPEN (E2E) underperforms SPEN (BM16) on all three datasets. ", + "bbox": [ + 173, + 675, + 825, + 773 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our method (“SPEN (InfNet)”) achieves the best average performance across the three datasets. It performs especially well on Bookmarks, which is the largest of the three. Our results use the contrastive hinge loss and retune the inference network on the development data after the energy is trained; these decisions were made based on the tuning described in Sec. 9.1, but all four hinge losses led to similarly strong results. ", + "bbox": [ + 174, + 780, + 825, + 849 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Speed Comparison. Table 2 compares training and test-time inference speed among the different methods. We only report speeds of methods that we ran.2 The SPEN (E2E) times were obtained using code obtained from Belanger and McCallum. We suspect that SPEN (BM16) training would be comparable to or slower than SPEN (E2E). Our method can process examples during training about 10 times as fast as the end-to-end SPEN, and 60-130 times as fast during test-time inference. In fact, at test time, our method is roughly the same speed as the MLP baseline, since our inference networks use the same architecture as the feature networks which form the MLP baseline. Compared to the MLP, the training of our method takes significantly more time overall because of joint training of the energy function and inference network, but fortunately the test-time inference is comparable. ", + "bbox": [ + 176, + 857, + 823, + 885 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/3a9a43483713f0298592fe74c282cc354bc5beea38f2261988b0e2867be2a061.jpg", + "table_caption": [ + "Table 2: Training and test-time inference speed comparison (examples/sec). " + ], + "table_footnote": [], + "table_body": "
Training Speed (examples/sec)Testing Speed (examples/sec)
BibtexBookmarksDeliciousBibtexBookmarksDelicious
MLP2167019591261589070692307113750
SPEN (E2E)55155938314201401832
SPEN (InfNet)5533546746679419488888112148
", + "bbox": [ + 223, + 131, + 776, + 199 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 228, + 825, + 327 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "7.2 SEQUENCE LABELING ", + "text_level": 1, + "bbox": [ + 176, + 343, + 369, + 357 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also evaluate our methods on sequence labeling. We report experiments with Twitter part-ofspeech (POS) tagging here. Named entity recognition experiments are reported in the Appendix. ", + "bbox": [ + 176, + 368, + 825, + 397 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "7.2.1 ENERGY FUNCTIONS FOR SEQUENCE LABELING ", + "text_level": 1, + "bbox": [ + 173, + 411, + 565, + 426 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The input space $\\mathcal { X }$ is now the set of all sequences of symbols drawn from a vocabulary. For an input sequence $_ { \\textbf { \\em x } }$ of length $N$ , where there are $L$ possible output labels for each position in $_ { \\textbf { \\em x } }$ , the output space $\\mathcal { V } ( \\pmb { x } )$ is $[ L ] ^ { \\widetilde { N } }$ , where the notation $[ q ]$ represents the set containing the first $q$ positive integers. We define $\\pmb { y } = \\langle y _ { 1 } , y _ { 2 } , . . , y _ { N } \\rangle$ where each $y _ { i }$ ranges over possible output labels, i.e., $y _ { i } \\in [ L ]$ . ", + "bbox": [ + 174, + 436, + 826, + 494 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "When defining our energy for sequence labeling, we take inspiration from bidirectional LSTMs (BLSTMs; Hochreiter $\\&$ Schmidhuber 1997) and conditional random fields (CRFs; Lafferty et al. 2001). A “linear chain” CRF uses two types of features: one capturing the connection between an output label and $_ { \\textbf { \\em x } }$ and the other capturing the dependence between neighboring output labels. We use a BLSTM to compute feature representations for $_ { \\textbf { \\em x } }$ . We use $f ( \\pmb { x } , t ) \\in \\mathbb { R } ^ { d }$ to denote the “input feature vector” for position $t$ , defining it to be the $d$ -dimensional BLSTM hidden vector at $t$ . ", + "bbox": [ + 173, + 500, + 826, + 584 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We then define the following energy function: ", + "bbox": [ + 174, + 590, + 475, + 604 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/a2de9a95dbf1faa7fdd406f922cdf30d4c171fb6c35d5e95f61b51265db017fc.jpg", + "text": "$$\nE _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } U _ { y _ { t } } ^ { \\top } f ( \\pmb { x } , t ) + \\sum _ { t } W _ { y _ { t - 1 } , y _ { t } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 333, + 609, + 665, + 654 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $U _ { i } \\in \\mathbb { R } ^ { d }$ is a parameter vector for label $i$ and the parameter matrix $W \\in \\mathbb { R } ^ { L \\times L }$ contains label pair parameters. The full set of parameters $\\Theta$ includes the $U _ { i }$ vectors, $W$ , and the parameters of the BLSTM. The above energy only permits discrete $\\textbf { { y } }$ . For the general case that permits relaxing $\\textbf { { y } }$ to be continuous, we treat each $y _ { t }$ as a vector. It will be one-hot for the ground truth $\\textbf { { y } }$ and will be a vector of label probabilities for relaxed $\\textbf { { y } }$ ’s. Then the general energy function is: ", + "bbox": [ + 174, + 659, + 825, + 729 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/cb4ca5a91be813d2a1984f6c9163203c55b0b5b5df1adf4d42d7c5c8a4c4da79.jpg", + "text": "$$\nE _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } \\sum _ { i = 1 } ^ { L } y _ { t , i } \\left( U _ { i } ^ { \\top } f ( \\pmb { x } , t ) \\right) + \\sum _ { t } y _ { t - 1 } ^ { \\top } W y _ { t } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 299, + 734, + 699, + 779 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $y _ { t , i }$ is the $i$ th entry of the vector $y _ { t }$ . In the discrete case, this entry is 1 for a single $i$ and 0 for all others, so this energy reduces to Eq. (12) in that case. In the continuous case, this scalar indicates the probability of the tth position being labeled with label $i$ . For the label pair terms in this general energy function, we use a bilinear product between the vectors $y _ { t - 1 }$ and $y _ { t }$ using parameter matrix $W$ , which also reduces to Eq. (12) when they are one-hot vectors. ", + "bbox": [ + 173, + 782, + 825, + 853 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Tag Language Model. In order to capture long-distance dependencies in an entire sequence of labels, we train a “tag language model” on a large corpus of automatically-tagged tweets, then include a term in the energy function representing the log-probability of the given tag sequence under this tag language model. Details are provided below in Section 7.2.4. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/7902a62cd03e34d65119c0ce5c2887af77c0114eb6d439f00ba232fee30b3ac2.jpg", + "table_caption": [ + "Table 3: Comparison of SPEN hinge losses and showing the impact of retuning (Twitter POS validation accuracies). Inference networks are trained with the cross entropy term. " + ], + "table_footnote": [], + "table_body": "
SPEN hinge lossvalidation accuracy (%)
-retuning 89.1+retuning
margin rescaling slack rescaling89.489.3
perceptron (MR,△= 0)89.289.6
88.889.4
contrastive (△= 1)89.0
", + "bbox": [ + 333, + 146, + 663, + 226 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/29f2914da3874eb87cf5a63ba8a63ca0c718be7cbf302e423cefbdb9f035a4c7.jpg", + "table_caption": [ + "Table 4: Twitter POS accuracies of BLSTM, CRF, and SPEN (InfNet), using our tuned SPEN configuration (slack-rescaled hinge, inference network trained with cross entropy term). Though slowest to train, the SPEN matches the test-time speed of the BLSTM while achieving the highest accuracies. " + ], + "table_footnote": [], + "table_body": "
validation accuracy (%)test accuracy (%)training speed (examples/sec)testing speed (examples/sec)
BLSTM88.688.83851250
CRF89.189.2250500
SPEN (InfNet)89.689.81251250
", + "bbox": [ + 238, + 314, + 758, + 381 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7.2.2 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 174, + 411, + 390, + 426 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For Twitter part-of-speech (POS) tagging, we use the annotated data from Gimpel et al. (2011) and Owoputi et al. (2013) which contains $L = 2 5$ POS tags. For training, we combine the 1000- tweet OCT27TRAIN set and the 327-tweet OCT27DEV set. For validation, we use the 500-tweet OCT27TEST set and for testing we use the 547-tweet DAILY547 test set. We use 100-dimensional skip-gram embeddings trained on 56 million English tweets with word2vec (Mikolov et al., 2013).3 ", + "bbox": [ + 174, + 435, + 825, + 506 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We use a BLSTM to compute the “input feature vector” $f ( { \\pmb x } , t )$ for each position $t$ , using hidden vectors of dimensionality $d = 1 0 0$ . We also use BLSTMs for the inference networks. The output layer of the inference network is a softmax function, so at every position, the inference network produces a distribution over labels at that position. We train inference networks using stochastic gradient descent (SGD) with momentum and train the energy parameters using Adam. For $\\triangle$ , we use $L _ { 1 }$ distance. We tune hyperparameters on the validation set; full details of tuning are provided in the appendix. We found that the cross entropy stabilization term worked well for this setting; details and an empirical comparison are provided in Section 9.2.1. ", + "bbox": [ + 174, + 512, + 825, + 625 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We compare to standard BLSTM and CRF baselines. We train the BLSTM baseline to minimize per-token log loss; this is often called a “BLSTM tagger”. We train a CRF baseline using the energy in Eq. (12) with the standard conditional log-likelihood objective using the standard dynamic programming algorithms (forward-backward) to compute gradients during training. Further details are provided in the appendix. ", + "bbox": [ + 174, + 631, + 825, + 702 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7.2.3 RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 715, + 292, + 731 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Loss Function Comparison. Table 3 shows results when comparing SPEN training objectives. We see a larger difference among losses here than for MLC tasks. When using the perceptron loss, there is no margin, which leads to overfitting: 89.4 on validation, 88.6 on test (not shown in the table). The contrastive loss, which strives to achieve a margin of 1, does better on test (89.0). We also see here that margin rescaling and slack rescaling both outperform the contrastive hinge, unlike the MLC tasks. We suspect that in the case in which each input/output has a different length, using a cost that captures length is more important. ", + "bbox": [ + 174, + 739, + 825, + 838 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Comparison to Standard Baselines. Table 4 compares our final tuned SPEN configuration to two standard baselines: a BLSTM tagger and a CRF. The SPEN achieves higher validation and test accuracies with faster test-time inference. While our method is slower than the baselines during training, it is faster than the CRF at test time, operating at essentially the same speed as the BLSTM baseline while being more accurate. ", + "bbox": [ + 174, + 844, + 825, + 887 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/8537d0717da40f4c1c2018e46b6eaad0d33c747c6a87d714b36ba1dacfa0a6d9.jpg", + "table_caption": [ + "Table 5: Twitter POS validation/test accuracies when adding tag language model (TLM) energy term to a SPEN trained with margin-rescaled hinge. " + ], + "table_footnote": [], + "table_body": "
val. accuracy (%)test accuracy (%)
-TLM89.889.6
+TLM89.990.2
", + "bbox": [ + 346, + 145, + 650, + 186 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 218, + 823, + 246 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Here, the SPEN and CRF are using the same functional form for their energy functions, namely the energy given in Eq. (13). We note that the SPEN outperforms the CRF, despite using the same form for the energy. There are two factors that can explain this. First, the losses are different. The CRF uses conditional log-likelihood while the SPEN results here use slack-rescaled hinge, which outperforms the other hinge loss variants (Table 3). Second, the stabilization terms used when training the inference network may be providing a regularizing effect for the model. Our motivation for these experiments was to show the impact of these differences while keeping the form of the energy function fixed. We now turn to richer energies. ", + "bbox": [ + 173, + 253, + 825, + 364 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7.2.4 TOWARDS GLOBAL ENERGIES: TAG LANGUAGE MODELS FOR TWITTER POS TAGGING ", + "bbox": [ + 178, + 380, + 823, + 395 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The above results only use the pairwise energy; no results used the tag language model (TLM). To compute the TLM energy term, we first automatically tag unlabeled tweets, then train an LSTM language model on the automatic tag sequences. When doing so, we define the input tag embeddings to be $L$ -dimensional one-hot vectors specifying the tags in the training sequences. This is nonstandard compared to standard language modeling. In standard language modeling, we train on observed sequences and compute likelihoods of other fully-observed sequences. However, in our case, we train on tag sequences but we want to use the same model on sequences of tag distributions produced by an inference network. We train the TLM on sequences of one-hot vectors and then use it to compute likelihoods of sequences of tag distributions. Further details about training are provided in Section 9.2.2 in the appendix. ", + "bbox": [ + 173, + 404, + 825, + 544 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We define an additional energy term $E ^ { \\mathrm { T L M } } ( y )$ based on the pretrained TLM. If the argument $\\textbf { { y } }$ consisted of one-hot vectors, we could simply compute its likelihood. However, to support relaxed $\\textbf { { y } }$ ’s, we need to define a more general function: ", + "bbox": [ + 174, + 549, + 825, + 592 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/5eb397eae23ba8116a03e4aa804b4d4ce2322a93afe9110101cb66e890e1379c.jpg", + "text": "$$\nE ^ { \\mathrm { T L M } } ( \\pmb { y } ) = - \\sum _ { t = 1 } ^ { | \\pmb { y } | + 1 } \\log ( \\pmb { y } _ { t } ^ { \\top } \\mathrm { T L M } ( \\langle \\pmb { y } _ { 0 } , . . . , \\pmb { y } _ { t - 1 } \\rangle ) )\n$$", + "text_format": "latex", + "bbox": [ + 331, + 598, + 666, + 643 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $y _ { 0 }$ is the start-of-sequence symbol, $y _ { \\vert \\pmb { y } \\vert + 1 }$ is the end-of-sequence symbol, and $\\mathrm { T L M } \\big ( \\langle y _ { 0 } , . . . , y _ { t - 1 } \\rangle \\big )$ returns the softmax distribution over tags at position $t$ (under the pretrained tag language model) given the preceding tag vectors. When each $y _ { t }$ is a one-hot vector, this energy reduces to the negative log-likelihood of the tag sequence specified by $\\textbf { { y } }$ . ", + "bbox": [ + 173, + 648, + 825, + 707 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We define the new joint energy as the sum of the energy function in Eq. (13) and the TLM energy function in Eq. (14). During learning, we keep the TLM parameters fixed to their pretrained values, but we tune the weight of the TLM energy (over the set $\\{ 0 . 1 , 0 . 2 , 0 . 5 \\} )$ in the joint energy. We train SPENs with the new joint energy using the margin-rescaled hinge, training the inference network with the cross entropy term. ", + "bbox": [ + 173, + 713, + 825, + 784 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 5 shows results.4 Adding the TLM energy leads to a gain of 0.6 on the test set. Other settings showed more variance; when using slack-rescaled hinge, we found a small drop on test, while when simply training inference networks for a fixed, pretrained joint energy with tuned mixture coefficient, we found a gain of 0.3 on test when adding the TLM energy. We investigated the improvements and found some to involve corrections that seemingly stem from handling non-local dependencies better. Table 10 in the appendix shows examples in which the model with the TLM appears to be better at using the broader context when making tagging decisions. These results suggest that our method of training inference networks can be used to add rich features to structured prediction, though we leave a thorough exploration of global energies to future work. ", + "bbox": [ + 173, + 790, + 825, + 887 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/561df4aea97afbad078266a90ebf6a32391e3c2f361ff2f78b753fbb2276ec13.jpg", + "table_caption": [ + "Table 6: Comparison of test-time inference algorithms for a trained CRF (Twitter POS tagging). We show the test accuracy for the inference network setting that does best on validation. All inference networks use the same architecture and therefore have essentially the same speed. " + ], + "table_footnote": [], + "table_body": "
test-time inference algorithmval. accuracy (%)test accuracy (%)speed (examples/sec)
Viterbialgorithm89.189.2500
Inference network + cross entropy89.789.51250
Inference network+ entropy89.6
Inference network + squared L2 distance88.9
", + "bbox": [ + 174, + 159, + 823, + 227 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 260, + 823, + 287 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "7.2.5 BEYOND SPENS: INFERENCE NETWORKS FOR STRUCTURED PREDICTION", + "text_level": 1, + "bbox": [ + 178, + 305, + 741, + 320 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We note that inference networks can be used for any prediction problem. We now explore the use of an inference network to approximate test-time inference for a trained CRF. The results are shown in Table 6. All results use the same trained CRF energy function (Eq. (12)), trained to minimize log loss using the forward-backward algorithm for exact inference during training. The first row shows accuracy and speed when using Viterbi for test-time inference, which is the same setting as the “CRF” row in Table 4. Subsequent rows show results when training inference networks to mimic Viterbi with various stabilization terms. When training these inference networks, we train them on the training set and tune based on early stopping on the validation set. The energy stays fixed while inference networks are trained. ", + "bbox": [ + 174, + 330, + 825, + 455 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "When using either entropy or cross entropy, our inference networks outperform Viterbi while doubling its speed. When using the squared $L _ { 2 }$ distance term (which regularizes the inference network toward the pretrained BLSTM), the accuracy reduces to be closer to that of the BLSTM, which reaches $8 8 . 6 \\%$ on validation (see Table 4). When using no stabilization terms for the inference network, learning fails, reaching $1 3 . 7 \\%$ on the development set, showing the importance of using some stabilization term while training the inference network. ", + "bbox": [ + 174, + 463, + 825, + 546 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "These results show promise for training inference networks to speed up combinatorial algorithms for structured prediction and other domains. ", + "bbox": [ + 174, + 554, + 823, + 582 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "8 CONCLUSIONS AND FUTURE WORK ", + "text_level": 1, + "bbox": [ + 174, + 604, + 504, + 621 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We presented ways to jointly train structured energy functions and inference networks using largemargin objectives. The energy function captures arbitrary dependencies among the labels, while the inference networks learns to capture the properties of the energy in an efficient manner, yielding fast test-time inference. Future work includes exploring the space of network architectures for inference networks to balance accuracy and efficiency, experimenting with additional global terms in structured energy functions, and exploring richer structured output spaces such as trees and sentences. ", + "bbox": [ + 174, + 637, + 825, + 720 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 739, + 326, + 752 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We thank the anonymous reviewers, David Belanger, Weiran Wang and Zheng Cai. We also thank NVIDIA Corporation for donating GPUs used in this research. ", + "bbox": [ + 173, + 763, + 823, + 792 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 815, + 287, + 830 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Brandon Amos, Lei Xu, and J. Zico Kolter. Input convex neural networks. In Proc. of ICML, 2017. ", + "bbox": [ + 174, + 839, + 823, + 854 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jimmy Ba and Rich Caruana. Do deep nets really need to be deep? In Advances in NIPS, 2014. ", + "bbox": [ + 174, + 867, + 800, + 882 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Belanger and Andrew McCallum. Structured prediction energy networks. In Proc. of ICML, 2016. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Belanger, Bishan Yang, and Andrew McCallum. End-to-end learning for structured prediction energy networks. In Proc. of ICML, 2017. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kai-Wei Chang, Shyam Upadhyay, Gourab Kundu, and Dan Roth. Structural learning with amortized inference. In Proc. of AAAI, 2015. ", + "bbox": [ + 171, + 140, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Michael Collins. Discriminative training methods for hidden Markov models: Theory and experiments with perceptron algorithms. In Proc. of EMNLP, 2002. ", + "bbox": [ + 171, + 178, + 823, + 207 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zihang Dai, Amjad Almahairi, Bachman Philip, Eduard Hovy, and Aaron Courville. Calibrating energy-based generative adversarial networks. In Proc. of ICLR, 2017. ", + "bbox": [ + 171, + 214, + 823, + 244 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Justin Domke. Generic methods for optimization-based modeling. In Proc. of AISTATS, 2012. ", + "bbox": [ + 173, + 252, + 794, + 268 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge. A neural algorithm of artistic style. CoRR, abs/1508.06576, 2015. ", + "bbox": [ + 171, + 275, + 826, + 305 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Krzysztof J. Geras, Abdel rahman Mohamed, Rich Caruana, Gregor Urban, Shengjie Wang, Ozlem Aslan, Matthai Philipose, Matthew Richardson, and Charles Sutton. Blending LSTMs into CNNs. In Proc. of ICLR (workshop track), 2016. ", + "bbox": [ + 174, + 313, + 825, + 356 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Samuel Gershman and Noah Goodman. Amortized inference in probabilistic reasoning. In Proc. of the Cognitive Science Society, 2014. ", + "bbox": [ + 169, + 363, + 826, + 393 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kevin Gimpel, Nathan Schneider, Brendan O’Connor, Dipanjan Das, Daniel Mills, Jacob Eisenstein, Michael Heilman, Dani Yogatama, Jeffrey Flanigan, and Noah A. Smith. Part-of-speech tagging for Twitter: annotation, features, and experiments. In Proc. of ACL, 2011. ", + "bbox": [ + 174, + 401, + 825, + 445 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in NIPS, 2014. ", + "bbox": [ + 169, + 452, + 825, + 482 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kartik Goyal, Graham Neubig, Chris Dyer, and Taylor Berg-Kirkpatrick. A continuous relaxation of beam search for end-to-end training of neural sequence models. In Proc. of AAAI, 2018. ", + "bbox": [ + 171, + 489, + 825, + 518 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Geoffrey Hinton, Oriol Vinyals, and Jeffrey Dean. Distilling the knowledge in a neural network. In NIPS Deep Learning Workshop, 2015. ", + "bbox": [ + 173, + 526, + 823, + 556 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Cong Duy Vu Hoang, Gholamreza Haffari, and Trevor Cohn. Towards decoding as continuous optimisation in neural machine translation. In Proc. of EMNLP, 2017. ", + "bbox": [ + 171, + 564, + 823, + 593 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural Computation, 1997. ", + "bbox": [ + 174, + 601, + 810, + 617 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Justin Johnson, Alexandre Alahi, and Li Fei-Fei. Perceptual losses for real-time style transfer and super-resolution. In Proc. of ECCV, 2016. ", + "bbox": [ + 173, + 625, + 823, + 654 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proc. of EMNLP, 2016. ", + "bbox": [ + 174, + 661, + 825, + 690 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980, 2014. ", + "bbox": [ + 174, + 699, + 826, + 728 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik Kingma and Max Welling. Auto-encoding variational Bayes. CoRR, abs/1312.6114, 2013. ", + "bbox": [ + 171, + 736, + 825, + 752 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daphne Koller and Nir Friedman. Probabilistic Graphical Models: Principles and Techniques. 2009. ", + "bbox": [ + 173, + 760, + 825, + 776 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Philipp Krähenbühl and Vladlen Koltun. Efficient inference in fully connected CRFs with Gaussian edge potentials. In Advances in NIPS, 2011. ", + "bbox": [ + 174, + 782, + 825, + 813 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Adhiguna Kuncoro, Miguel Ballesteros, Lingpeng Kong, Chris Dyer, and Noah A. Smith. Distilling an ensemble of greedy dependency parsers into one MST parser. In Proc. of EMNLP, 2016. ", + "bbox": [ + 173, + 820, + 823, + 851 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. Conditional random fields: Probabilistic models for segmenting and labeling sequence data. In Proc. of ICML, 2001. ", + "bbox": [ + 176, + 858, + 821, + 887 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun, Sumit Chopra, Raia Hadsell, Marc’Aurelio Ranzato, and Fu-Jie Huang. A tutorial on energy-based learning. In Predicting Structured Data. MIT Press, 2006. ", + "bbox": [ + 176, + 895, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chuan Li and Michael Wand. Precomputed real-time texture synthesis with Markovian generative adversarial networks. CoRR, abs/1604.04382, 2016. ", + "bbox": [ + 171, + 103, + 825, + 133 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF. In Proc. of ACL, 2016. ", + "bbox": [ + 171, + 142, + 825, + 172 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "André F. T. Martins and Julia Kreutzer. Learning what’s easy: Fully differentiable neural easy-first taggers. In Proc. of EMNLP, 2017. ", + "bbox": [ + 173, + 183, + 823, + 212 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in NIPS, 2013. ", + "bbox": [ + 173, + 222, + 823, + 252 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alexander Mordvintsev, Christopher Olah, and Mike Tyka. DeepDream-a code example for visualizing neural networks. Google Research, 2015. ", + "bbox": [ + 173, + 262, + 825, + 292 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Olutobi Owoputi, Brendan O’Connor, Chris Dyer, Kevin Gimpel, Nathan Schneider, and Noah A. Smith. Improved part-of-speech tagging for online conversational text with word clusters. In Proc. of NAACL, 2013. ", + "bbox": [ + 174, + 301, + 825, + 345 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Brooks Paige and Frank Wood. Inference networks for sequential Monte Carlo in graphical models. In Proc. of ICML, 2016. ", + "bbox": [ + 171, + 356, + 823, + 386 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jeffrey Pennington, Richard Socher, and Christopher D. Manning. GloVe: Global vectors for word representation. In Proc. of EMNLP, 2014. ", + "bbox": [ + 173, + 395, + 823, + 426 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Gabriel Pereyra, George Tucker, Jan Chorowski, Lukasz Kaiser, and Geoffrey E. Hinton. Regularizing neural networks by penalizing confident output distributions. CoRR, 2017. ", + "bbox": [ + 173, + 435, + 823, + 465 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lev Ratinov and Dan Roth. Design challenges and misconceptions in named entity recognition. In Proc. of CoNLL, 2009. ", + "bbox": [ + 173, + 474, + 825, + 505 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and Xi Chen. Improved techniques for training GANs. In Advances in NIPS, 2016. ", + "bbox": [ + 171, + 515, + 823, + 545 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Vivek Srikumar, Gourab Kundu, and Dan Roth. On amortizing inference cost for structured prediction. In Proc. of EMNLP, 2012. ", + "bbox": [ + 171, + 555, + 825, + 584 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ben Taskar, Carlos Guestrin, and Daphne Koller. Max-margin Markov networks. In Advances in NIPS, 2004. ", + "bbox": [ + 173, + 594, + 823, + 625 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Erik F. Tjong Kim Sang and Fien De Meulder. Introduction to the CoNLL-2003 shared task: Language-independent named entity recognition. In Proc. of CONLL, 2003. ", + "bbox": [ + 173, + 635, + 823, + 665 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ioannis Tsochantaridis, Thorsten Joachims, Thomas Hofmann, and Yasemin Altun. Large margin methods for structured and interdependent output variables. JMLR, 2005. ", + "bbox": [ + 171, + 674, + 823, + 704 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lifu Tu, Kevin Gimpel, and Karen Livescu. Learning to embed words in context for syntactic tasks. In Proc. of RepL4NLP, 2017. ", + "bbox": [ + 169, + 714, + 825, + 744 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Gregor Urban, Krzysztof J. Geras, Samira Ebrahimi Kahou, Ozlem Aslan, Shengjie Wang, Rich Caruana, Abdel-rahman Mohamed, Matthai Philipose, and Matthew Richardson. Do deep convolutional nets really need to be deep? arXiv preprint arXiv:1603.05691, 2016. ", + "bbox": [ + 174, + 753, + 825, + 797 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shenlong Wang, Sanja Fidler, and Raquel Urtasun. Proximal deep structured models. In Advances in NIPS, 2016. ", + "bbox": [ + 173, + 808, + 823, + 838 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sam Wiseman and Alexander M. Rush. Sequence-to-sequence learning as beam-search optimization. In Proc. of EMNLP, 2016. ", + "bbox": [ + 171, + 848, + 825, + 877 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Junbo Jake Zhao, Michaël Mathieu, and Yann LeCun. Energy-based generative adversarial network. CoRR, 2016. ", + "bbox": [ + 171, + 887, + 825, + 917 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/20e02680d9cca921396e957ae30f49b9ef6cfffa364deb938399a824a2f9d8f1.jpg", + "table_caption": [ + "Table 7: Statistics of the multi-label classification datasets. " + ], + "table_footnote": [], + "table_body": "
#labels# features#train#dev#test
Bibtex15918364836-2515
Bookmarks2082151480001200027856
Delicious98250112896-3185
", + "bbox": [ + 299, + 128, + 699, + 184 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/fa2d86b3c7ba7b4ae31a000e1a9f9501718a743a237f4a4feeaeffb78aae75ad.jpg", + "table_caption": [ + "Table 8: Development F1 for Bookmarks when comparing hinge losses for SPEN (InfNet) and whether to retune the inference network. " + ], + "table_footnote": [], + "table_body": "
hinge loss-retuning+retuning
margin rescaling38.5138.68
slack rescaling38.5738.62
perceptron (MR,△= 0)38.5538.70
contrastive (△= 1)38.8038.88
", + "bbox": [ + 338, + 247, + 658, + 314 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "9 APPENDIX ", + "text_level": 1, + "bbox": [ + 173, + 347, + 294, + 363 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "9.1 MULTI-LABEL CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 176, + 381, + 436, + 396 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Table 7 shows dataset statistics for the multi-label classification datasets. ", + "bbox": [ + 174, + 409, + 648, + 422 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Hyperparameter Tuning. We tune $\\lambda$ (the $L _ { 2 }$ regularization strength for $\\Theta$ ) over the set $\\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\}$ . The classification threshold $\\tau$ is chosen from $[ 0 , 0 . 0 1 , 0 . 0 2 , 0 . 0 3 , 0 . 0 4 , 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 ,$ 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] as also done by Belanger & McCallum (2016). We tune the coefficients for the three stabilization terms for the inference network objective from Section 5 over the follow ranges: $L _ { 2 }$ regularization $( \\lambda _ { 1 } ~ \\in ~ \\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\} )$ ), entropy regularization $\\mathbf { \\lambda } ) _ { 2 } ~ = ~ 1 )$ , and regularization toward the pretrained feature network $( \\dot { \\lambda } _ { 4 } \\in \\{ 0 , 1 , 1 0 \\} )$ ). ", + "bbox": [ + 173, + 430, + 825, + 529 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Comparison of Loss Functions and Impact of Inference Network Retuning. Table 8 shows results comparing the four loss functions from Section 4.2 on the development set for Bookmarks, the largest of the three datasets. We find performance to be highly similar across the losses, with the contrastive loss appearing slightly better than the others. ", + "bbox": [ + 174, + 535, + 825, + 590 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "After training, we “retune” the inference network as specified by Eq. (5) on the development set for 20 epochs using a smaller learning rate of 0.00001. Table 8 shows slightly higher F1 for all losses with retuning. We were surprised to see that the final cost-augmented inference network performs well as a test-time inference network. This suggests that by the end of training, the cost-augmented network may be approaching the argmin and that there may not be much need for retuning. ", + "bbox": [ + 174, + 597, + 825, + 667 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "When using $\\triangle = 0$ or 1, retuning leads to the same small gain as when using the margin-rescaled or slack-rescaled losses. Here the gain is presumably from adjusting the inference network for other inputs rather than from converting it from a cost-augmented to a test-time inference network. ", + "bbox": [ + 174, + 674, + 825, + 717 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "9.2 TWITTER POS TAGGING ", + "text_level": 1, + "bbox": [ + 174, + 737, + 385, + 752 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "9.2.1 HYPERPARAMETER TUNING ", + "text_level": 1, + "bbox": [ + 176, + 765, + 423, + 780 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "When training inference networks and SPENs for Twitter POS tagging, we use the following hyperparameter tuning. We tune the inference network learning rate $( \\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\} )$ ), $L _ { 2 }$ regularization $( \\lambda _ { 1 } \\in \\{ 0 , 1 { \\mathrm { e } } - 3 , 1 { \\mathrm { e } } - 4 , 1 { \\mathrm { e } } - 5 , 1 { \\mathrm { e } } - { \\bar { 6 } } , 1 { \\mathrm { e } } - { \\bar { 7 } } \\} )$ ), the entropy regularization term $( \\lambda _ { 2 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )$ , the cross entropy regularization term $( \\lambda _ { 3 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )$ , and the squared L2 distance $( \\bar { \\lambda } _ { 4 } \\in \\{ 0 , 0 . 1 , 0 . 2 , \\bar { 0 . 5 } , 1 , 2 , 1 0 \\} )$ ). We train the energy functions with Adam with a learning rate of 0.001 and $L _ { 2 }$ regularization $( \\lambda _ { 1 } \\in \\{ 0 , 1 \\mathrm { { e } - 3 , 1 \\mathrm { { e } - 4 , 1 \\mathrm { { e } - 5 } , 1 \\mathrm { { e } - 6 } , 1 \\mathrm { { e } - 7 } \\} ) } }$ . ", + "bbox": [ + 173, + 790, + 826, + 876 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Table 9 compares the use of the cross entropy and entropy stabilization terms when training inference networks for a SPEN with margin-rescaled hinge. Cross entropy works better than entropy in this setting, though retuning permits the latter to bridge the gap more than halfway. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/52e56f1f7963ce24dd015d0b30495b629bbf3b1fbb7952dcbcd1238e1cc48616.jpg", + "table_caption": [ + "Table 9: Comparison of inference network stabilization terms and showing impact of retuning when training SPENs with margin-rescaled hinge (Twitter POS validation accuracies). " + ], + "table_footnote": [], + "table_body": "
validation accuracy (%)
inference network stabilization terms-retuning+retuning
cross entropy89.189.3
entropy84.286.8
", + "bbox": [ + 299, + 146, + 697, + 199 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/6825bbc3e98b08c9213a525503588606eea7ad0c4d07b08a4ef13e3a4ee9ddcc.jpg", + "table_caption": [ + "Table 10: Examples of improvements in Twitter POS tagging when using tag language model (TLM). In all of these examples, the predicted tag when using the TLM matches the gold standard. " + ], + "table_footnote": [], + "table_body": "
predicted tags
#tweet (target word in bold)-TLM+TLM
1... that's a t-17, technically . does that count as top-25 ?determinerpronoun
2... lol you know im down like 4 flats on a cadillac ... lol...adjectivepreposition
3... them who he is : he wants her to like him for his pers..prepositionverb
4I wonder when Nic Cage is going to film " Another Somethingnounverb
5Something Las Vegas " . Cut my hair, gag and bore menounverb
6 7... they had their fun,we hd ours !;) lmaooo " Logic will get you from A to B . Imagination will take youproper noun verbverb
everywhere ." - Albert Einstein .noun
8lmao I'm not a sheep who listens to it cos everyone else does ..verbpreposition
9Noo its not cuss you have swag andd you wont look dumb !..nouncoord. conj.
", + "bbox": [ + 174, + 265, + 825, + 449 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "When training CRFs, we use SGD with momentum. We tune the learning rate (over $\\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\}$ ) and $L _ { 2 }$ regularization coefficient (over $\\{ 0 , 1 \\mathrm { e } - 3 , 1 \\mathrm { e } - 4 , 1 \\mathrm { e } -$ $5 , 1 \\mathrm { e } - 6 , 1 \\mathrm { e } - 7 \\}$ ). For all methods, we use early stopping based on validation accuracy. ", + "bbox": [ + 174, + 479, + 825, + 522 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "9.2.2 TAG LANGUAGE MODEL DETAILS AND ANALYSIS ", + "text_level": 1, + "bbox": [ + 173, + 537, + 575, + 551 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To obtain training data for training the tag language model, we run the Twitter POS tagger from Owoputi et al. (2013) on a dataset of 303K randomly-sampled English tweets. We train the tag language model on 300K tweets and use the remaining 3K for tuning hyperparameters and early stopping. We train an LSTM language model on the tag sequences using stochastic gradient descent with momentum and early stopping on the validation set. We used a dropout rate of 0.5 for the LSTM hidden layer. We tune the learning rate $( \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 . 0 \\} )$ , the number of LSTM layers $( \\{ 1 , 2 \\} )$ , and the hidden layer size $( \\{ 5 0 , 1 0 0 , 2 0 0 \\} )$ ). ", + "bbox": [ + 174, + 563, + 825, + 660 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 10 shows examples in which our SPEN that includes the TLM appears to be using broader context when making tagging decisions. These are examples from the test set labeled by two models: the SPEN without the TLM (which achieves $8 9 . 6 \\%$ accuracy, as shown in Table 5) and the SPEN with the TLM (which reaches $9 0 . 2 \\%$ accuracy). In example 1, the token “that” is predicted to be a determiner based on local context, but is correctly labeled a pronoun when using the TLM. This example is difficult because of the noun/verb tag ambiguity of the next word (“count”) and its impact on the tag for “that”. Examples 2 and 3 show two corrections for the token “like”, which is a highly ambiguous word in Twitter POS tagging. The broader context makes it much clearer which tag is intended. ", + "bbox": [ + 173, + 666, + 825, + 791 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The next two examples (4 and 5) are cases of noun/verb ambiguity that are resolvable with larger context. The last four examples show improvements for nonstandard word forms. The shortened form of “had” (example 6) is difficult to tag due to its collision with “HD” (high-definition), but the model with the TLM is able to tag it correctly. In example 7, the ambiguous token “b” is frequently used as a short form of “be” on Twitter, and since it comes after “to” in this context, the verb interpretation is encouraged. However, the broader context makes it clear that it is not a verb and the TLM-enriched model tags it correctly. The words in the last two examples are nonstandard word forms that were not observed in the training data, which is likely the reason for their erroneous predictions. When using the TLM, we can better handle these rare forms based on the broader context. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/11716e121864e9465a0fc3b640af9517d3676ddf28ab900b7c54a9eeea7a17fe.jpg", + "table_caption": [ + "Table 11: Named entity recognition F1 of BLSTM, CRF, and SPEN (InfNet) with slack-rescaled hinge where inference networks used cross entropy stabilization term. Though slowest to train, the SPEN matches the test-time speed of the BLSTM while improving F1 by 2 points, though it lags behind the CRF. " + ], + "table_footnote": [], + "table_body": "
validation F1test F1training speed (examples/sec)testing speed (examples/sec)
BLSTM88.3083.023851042
CRF91.3187.15222454
SPEN (InfNet)89.9885.061181025
", + "bbox": [ + 271, + 170, + 725, + 238 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "9.2.3 LEARNED PAIRWISE POTENTIAL MATRIX ", + "text_level": 1, + "bbox": [ + 173, + 268, + 516, + 284 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/28cdae28d8e710e4818ba3c338be0b1442bf330857c6db3da42ee019ad439d1e.jpg", + "image_caption": [ + "Figure 1: Learned pairwise potential matrix for Twitter POS tagging. " + ], + "image_footnote": [], + "bbox": [ + 210, + 330, + 813, + 607 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Figure 1 shows the learned pairwise potential matrix $W$ in Twitter POS tagging. We can see strong correlations between labels in neighborhoods. For example, an adjective (A) is more likely to be followed by a noun (N) than a verb (V) (see row labeled “A” in the figure). ", + "bbox": [ + 173, + 645, + 826, + 688 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "9.3 NAMED ENTITY RECOGNITION ", + "text_level": 1, + "bbox": [ + 176, + 704, + 429, + 718 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For named entity recognition (NER), we perform experiments on the English data from the CoNLL 2003 shared task (Tjong Kim Sang & De Meulder, 2003). This task contains sentences annotated with named entities and their types, containing 14987 training sentences, 3466 in the development set, and 3684 in the test set. There are four named entity types: PERSON, LOCATION, ORGANIZATION, and MISC. We use the BIOES tagging scheme instead of the original BIO2, following prior work (Ratinov & Roth, 2009; Ma & Hovy, 2016). There are $L = 1 7$ classes. We use 100-dimensional pretrained GloVe (Pennington et al., 2014) embeddings trained on 6 billion words from Wikipedia and web text, which work better than other pretrained embeddings (Ma & Hovy, 2016). ", + "bbox": [ + 173, + 729, + 825, + 842 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Results are shown in Table 11. We see a large 4-point gap between the BLSTM and CRF, suggesting the importance of structured information for this problem. Though the SPEN still lags behind the CRF in F1, it matches the test-time speed of the BLSTM while improving F1 by 2 points. ", + "bbox": [ + 174, + 848, + 825, + 891 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/H1WgVz-AZ/H1WgVz-AZ_middle.json b/parse/train/H1WgVz-AZ/H1WgVz-AZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..14fcbff782fccef665d510de807bdc506ed45ed6 --- /dev/null +++ b/parse/train/H1WgVz-AZ/H1WgVz-AZ_middle.json @@ -0,0 +1,45486 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 477, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "score": 1.0, + "content": "LEARNING APPROXIMATE INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 340, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 340, + 118 + ], + "score": 1.0, + "content": "FOR STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 134, + 388, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 231, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 148, + 147 + ], + "score": 1.0, + "content": "Lifu Tu", + "type": "text" + }, + { + "bbox": [ + 168, + 134, + 231, + 147 + ], + "score": 1.0, + "content": "Kevin Gimpel", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 389, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 389, + 158 + ], + "score": 1.0, + "content": "Toyota Technological Institute at Chicago, Chicago, IL, 60637, USA", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 158, + 252, + 169 + ], + "spans": [ + { + "bbox": [ + 114, + 158, + 252, + 169 + ], + "score": 1.0, + "content": "{lifu,kgimpel}@ttic.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 196, + 336, + 212 + ], + "spans": [ + { + "bbox": [ + 276, + 196, + 336, + 212 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 142, + 221, + 469, + 418 + ], + "lines": [ + { + "bbox": [ + 142, + 221, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 142, + 221, + 469, + 234 + ], + "score": 1.0, + "content": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "neural network architectures to define energy functions that can capture arbitrary", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "dependencies among parts of structured outputs. Prior work used gradient descent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 469, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 469, + 266 + ], + "score": 1.0, + "content": "for inference, relaxing the structured output to a set of continuous variables and then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "score": 1.0, + "content": "optimizing the energy with respect to them. We replace this use of gradient descent", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 140, + 275, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 140, + 275, + 470, + 289 + ], + "score": 1.0, + "content": "with a neural network trained to approximate structured argmax inference. This", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 140, + 285, + 471, + 300 + ], + "spans": [ + { + "bbox": [ + 140, + 285, + 471, + 300 + ], + "score": 1.0, + "content": "“inference network” outputs continuous values that we treat as the output structure.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 140, + 296, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 140, + 296, + 470, + 312 + ], + "score": 1.0, + "content": "We develop large-margin training criteria for joint training of the structured energy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 307, + 469, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 322 + ], + "score": 1.0, + "content": "function and inference network. On multi-label classification we report speed-ups", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 318, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 154, + 333 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 155, + 319, + 185, + 330 + ], + "score": 0.35, + "content": "1 0 { - } 6 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 318, + 470, + 333 + ], + "score": 1.0, + "content": "compared to (Belanger et al., 2017) while also improving accuracy.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 469, + 344 + ], + "score": 1.0, + "content": "For sequence labeling with simple structured energies, our approach performs", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 353 + ], + "score": 1.0, + "content": "comparably to exact inference while being much faster at test time. We then", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 352, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 469, + 366 + ], + "score": 1.0, + "content": "demonstrate improved accuracy by augmenting the energy with a “label language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 363, + 469, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 469, + 376 + ], + "score": 1.0, + "content": "model” that scores entire output label sequences, showing it can improve handling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 374, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 374, + 469, + 387 + ], + "score": 1.0, + "content": "of long-distance dependencies in part-of-speech tagging. Finally, we show how", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 385, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 469, + 398 + ], + "score": 1.0, + "content": "inference networks can replace dynamic programming for test-time inference in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 396, + 470, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 396, + 470, + 409 + ], + "score": 1.0, + "content": "conditional random fields, suggestive for their general use for fast inference in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 407, + 220, + 420 + ], + "spans": [ + { + "bbox": [ + 141, + 407, + 220, + 420 + ], + "score": 1.0, + "content": "structured settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 206, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 208, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 208, + 452 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "Energy-based modeling (LeCun et al., 2006) associates a scalar measure of compatibility to each", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 356, + 485 + ], + "score": 1.0, + "content": "configuration of input and output variables. Given an input", + "type": "text" + }, + { + "bbox": [ + 356, + 474, + 364, + 483 + ], + "score": 0.72, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 473, + 454, + 485 + ], + "score": 1.0, + "content": ", the predicted output", + "type": "text" + }, + { + "bbox": [ + 455, + 473, + 462, + 484 + ], + "score": 0.85, + "content": "\\hat { \\textbf { \\textit { y } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "is chosen", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 249, + 497 + ], + "score": 1.0, + "content": "by minimizing an energy function", + "type": "text" + }, + { + "bbox": [ + 250, + 483, + 283, + 495 + ], + "score": 0.93, + "content": "E ( \\pmb { x } , \\hat { \\pmb { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 483, + 506, + 497 + ], + "score": 1.0, + "content": ". For structured prediction, the parameterization of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "energy function can leverage domain knowledge about the structured output space. However, learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 505, + 238, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 238, + 519 + ], + "score": 1.0, + "content": "and prediction become complex.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use an energy function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "to score structured outputs, and perform inference by using gradient descent to iteratively optimize", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "the energy with respect to the outputs. Belanger et al. (2017) develop an “end-to-end” method that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "unrolls an approximate energy minimization algorithm into a fixed-size computation graph that is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "trainable by gradient descent. After learning the energy function, however, they still must use gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 232, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 232, + 589 + ], + "score": 1.0, + "content": "descent for test-time inference.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "We replace the gradient descent approach with a neural network trained to do inference, which we", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 436, + 617 + ], + "score": 1.0, + "content": "call an inference network. It can have any architecture such that it takes an input", + "type": "text" + }, + { + "bbox": [ + 437, + 607, + 444, + 615 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "and returns an", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 203, + 628 + ], + "score": 1.0, + "content": "output interpretable as a", + "type": "text" + }, + { + "bbox": [ + 204, + 618, + 211, + 627 + ], + "score": 0.61, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 616, + 321, + 628 + ], + "score": 1.0, + "content": ". As in prior work, we relax", + "type": "text" + }, + { + "bbox": [ + 321, + 618, + 329, + 627 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "from discrete to continuous. For multi-label", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "classification, we use a feed-forward network that outputs a vector. We assign a single label to each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "dimension of the vector, interpreting its value as the probability of predicting that label. For sequence", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "labeling, we output a distribution over predicted labels at each position in the sequence. We adapt", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "the energy functions such that they can operate with both discrete ground truth outputs and outputs", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 671, + 257, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 257, + 683 + ], + "score": 1.0, + "content": "generated by our inference networks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "We define large-margin training objectives to jointly train energy functions and inference networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Our training objectives resemble the alternating optimization framework of generative adversarial", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "networks (GANs; Goodfellow et al. 2014): the inference network is analogous to the generator and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "the energy function is analogous to the discriminator. Our approach avoids argmax computations,", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 477, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "score": 1.0, + "content": "LEARNING APPROXIMATE INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 340, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 340, + 118 + ], + "score": 1.0, + "content": "FOR STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 112, + 134, + 388, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 231, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 148, + 147 + ], + "score": 1.0, + "content": "Lifu Tu", + "type": "text" + }, + { + "bbox": [ + 168, + 134, + 231, + 147 + ], + "score": 1.0, + "content": "Kevin Gimpel", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 146, + 389, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 389, + 158 + ], + "score": 1.0, + "content": "Toyota Technological Institute at Chicago, Chicago, IL, 60637, USA", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 158, + 252, + 169 + ], + "spans": [ + { + "bbox": [ + 114, + 158, + 252, + 169 + ], + "score": 1.0, + "content": "{lifu,kgimpel}@ttic.edu", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + } + ], + "index": 3, + "bbox_fs": [ + 111, + 133, + 389, + 169 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 196, + 336, + 212 + ], + "spans": [ + { + "bbox": [ + 276, + 196, + 336, + 212 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 142, + 221, + 469, + 418 + ], + "lines": [ + { + "bbox": [ + 142, + 221, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 142, + 221, + 469, + 234 + ], + "score": 1.0, + "content": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "neural network architectures to define energy functions that can capture arbitrary", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "dependencies among parts of structured outputs. Prior work used gradient descent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 469, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 469, + 266 + ], + "score": 1.0, + "content": "for inference, relaxing the structured output to a set of continuous variables and then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "score": 1.0, + "content": "optimizing the energy with respect to them. We replace this use of gradient descent", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 140, + 275, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 140, + 275, + 470, + 289 + ], + "score": 1.0, + "content": "with a neural network trained to approximate structured argmax inference. This", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 140, + 285, + 471, + 300 + ], + "spans": [ + { + "bbox": [ + 140, + 285, + 471, + 300 + ], + "score": 1.0, + "content": "“inference network” outputs continuous values that we treat as the output structure.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 140, + 296, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 140, + 296, + 470, + 312 + ], + "score": 1.0, + "content": "We develop large-margin training criteria for joint training of the structured energy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 307, + 469, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 322 + ], + "score": 1.0, + "content": "function and inference network. On multi-label classification we report speed-ups", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 318, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 154, + 333 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 155, + 319, + 185, + 330 + ], + "score": 0.35, + "content": "1 0 { - } 6 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 318, + 470, + 333 + ], + "score": 1.0, + "content": "compared to (Belanger et al., 2017) while also improving accuracy.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 469, + 344 + ], + "score": 1.0, + "content": "For sequence labeling with simple structured energies, our approach performs", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 353 + ], + "score": 1.0, + "content": "comparably to exact inference while being much faster at test time. We then", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 352, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 469, + 366 + ], + "score": 1.0, + "content": "demonstrate improved accuracy by augmenting the energy with a “label language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 363, + 469, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 469, + 376 + ], + "score": 1.0, + "content": "model” that scores entire output label sequences, showing it can improve handling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 374, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 374, + 469, + 387 + ], + "score": 1.0, + "content": "of long-distance dependencies in part-of-speech tagging. Finally, we show how", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 385, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 469, + 398 + ], + "score": 1.0, + "content": "inference networks can replace dynamic programming for test-time inference in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 396, + 470, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 396, + 470, + 409 + ], + "score": 1.0, + "content": "conditional random fields, suggestive for their general use for fast inference in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 407, + 220, + 420 + ], + "spans": [ + { + "bbox": [ + 141, + 407, + 220, + 420 + ], + "score": 1.0, + "content": "structured settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14.5, + "bbox_fs": [ + 140, + 221, + 471, + 420 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 206, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 208, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 208, + 452 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "Energy-based modeling (LeCun et al., 2006) associates a scalar measure of compatibility to each", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 356, + 485 + ], + "score": 1.0, + "content": "configuration of input and output variables. Given an input", + "type": "text" + }, + { + "bbox": [ + 356, + 474, + 364, + 483 + ], + "score": 0.72, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 473, + 454, + 485 + ], + "score": 1.0, + "content": ", the predicted output", + "type": "text" + }, + { + "bbox": [ + 455, + 473, + 462, + 484 + ], + "score": 0.85, + "content": "\\hat { \\textbf { \\textit { y } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "is chosen", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 249, + 497 + ], + "score": 1.0, + "content": "by minimizing an energy function", + "type": "text" + }, + { + "bbox": [ + 250, + 483, + 283, + 495 + ], + "score": 0.93, + "content": "E ( \\pmb { x } , \\hat { \\pmb { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 483, + 506, + 497 + ], + "score": 1.0, + "content": ". For structured prediction, the parameterization of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "energy function can leverage domain knowledge about the structured output space. However, learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 505, + 238, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 238, + 519 + ], + "score": 1.0, + "content": "and prediction become complex.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 461, + 506, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "Structured prediction energy networks (SPENs; Belanger & McCallum 2016) use an energy function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "to score structured outputs, and perform inference by using gradient descent to iteratively optimize", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "the energy with respect to the outputs. Belanger et al. (2017) develop an “end-to-end” method that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "unrolls an approximate energy minimization algorithm into a fixed-size computation graph that is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "trainable by gradient descent. After learning the energy function, however, they still must use gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 232, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 232, + 589 + ], + "score": 1.0, + "content": "descent for test-time inference.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 522, + 506, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "We replace the gradient descent approach with a neural network trained to do inference, which we", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 436, + 617 + ], + "score": 1.0, + "content": "call an inference network. It can have any architecture such that it takes an input", + "type": "text" + }, + { + "bbox": [ + 437, + 607, + 444, + 615 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "and returns an", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 203, + 628 + ], + "score": 1.0, + "content": "output interpretable as a", + "type": "text" + }, + { + "bbox": [ + 204, + 618, + 211, + 627 + ], + "score": 0.61, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 616, + 321, + 628 + ], + "score": 1.0, + "content": ". As in prior work, we relax", + "type": "text" + }, + { + "bbox": [ + 321, + 618, + 329, + 627 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "from discrete to continuous. For multi-label", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "classification, we use a feed-forward network that outputs a vector. We assign a single label to each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "dimension of the vector, interpreting its value as the probability of predicting that label. For sequence", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "labeling, we output a distribution over predicted labels at each position in the sequence. We adapt", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "the energy functions such that they can operate with both discrete ground truth outputs and outputs", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 671, + 257, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 257, + 683 + ], + "score": 1.0, + "content": "generated by our inference networks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 594, + 506, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "We define large-margin training objectives to jointly train energy functions and inference networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Our training objectives resemble the alternating optimization framework of generative adversarial", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "networks (GANs; Goodfellow et al. 2014): the inference network is analogous to the generator and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "the energy function is analogous to the discriminator. Our approach avoids argmax computations,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "making training and test-time inference faster than standard SPENs. We experiment with multi-label", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 488, + 106 + ], + "score": 1.0, + "content": "classification using the same setup as Belanger & McCallum (2016), demonstrating speed-ups of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 488, + 94, + 505, + 104 + ], + "score": 0.3, + "content": "1 0 \\mathrm { x }", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 419, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 187, + 118 + ], + "score": 1.0, + "content": "in training time and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 187, + 105, + 204, + 115 + ], + "score": 0.61, + "content": "6 0 \\mathrm { x }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 204, + 103, + 419, + 118 + ], + "score": 1.0, + "content": "in test-time inference while also improving accuracy.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "making training and test-time inference faster than standard SPENs. We experiment with multi-label", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 488, + 106 + ], + "score": 1.0, + "content": "classification using the same setup as Belanger & McCallum (2016), demonstrating speed-ups of", + "type": "text" + }, + { + "bbox": [ + 488, + 94, + 505, + 104 + ], + "score": 0.3, + "content": "1 0 \\mathrm { x }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 419, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 187, + 118 + ], + "score": 1.0, + "content": "in training time and", + "type": "text" + }, + { + "bbox": [ + 187, + 105, + 204, + 115 + ], + "score": 0.61, + "content": "6 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 103, + 419, + 118 + ], + "score": 1.0, + "content": "in test-time inference while also improving accuracy.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "We then design a SPEN and inference network for sequence labeling by using recurrent neural", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 144 + ], + "score": 1.0, + "content": "networks (RNNs). We perform comparably to a conditional random field (CRF; Lafferty et al. 2001)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "when using the same energy function, with faster test-time inference. We also experiment with a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "richer energy that includes a “label language model” that scores entire output label sequences using", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "an RNN, showing it can improve handling of long-distance dependencies in part-of-speech tagging.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "Finally, we show how inference networks can replace dynamic programming for test-time inference", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "with CRFs, suggestive for the general use of inference networks to speed up inference in traditional", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 227, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 227, + 211 + ], + "score": 1.0, + "content": "structured prediction settings.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 107, + 225, + 372, + 238 + ], + "lines": [ + { + "bbox": [ + 104, + 223, + 374, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 374, + 240 + ], + "score": 1.0, + "content": "2 STRUCTURED PREDICTION ENERGY NETWORKS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 249, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 236, + 263 + ], + "score": 1.0, + "content": "We denote the space of inputs by", + "type": "text" + }, + { + "bbox": [ + 237, + 250, + 246, + 260 + ], + "score": 0.79, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 249, + 319, + 263 + ], + "score": 1.0, + "content": ". For a given input", + "type": "text" + }, + { + "bbox": [ + 320, + 250, + 348, + 261 + ], + "score": 0.9, + "content": "\\mathbf { \\boldsymbol { x } } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 249, + 505, + 263 + ], + "score": 1.0, + "content": ", we denote the space of legal structured", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 152, + 274 + ], + "score": 1.0, + "content": "outputs by", + "type": "text" + }, + { + "bbox": [ + 152, + 261, + 175, + 273 + ], + "score": 0.92, + "content": "\\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 260, + 393, + 274 + ], + "score": 1.0, + "content": ". We denote the entire space of structured outputs by", + "type": "text" + }, + { + "bbox": [ + 393, + 261, + 462, + 273 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\cup _ { \\pmb { x } \\in \\mathcal { X } } \\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 260, + 505, + 274 + ], + "score": 1.0, + "content": ". A SPEN", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 217, + 284 + ], + "score": 1.0, + "content": "defines an energy function", + "type": "text" + }, + { + "bbox": [ + 217, + 272, + 290, + 283 + ], + "score": 0.91, + "content": "E _ { \\Theta } : \\mathcal { X } \\times \\mathcal { Y } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 271, + 361, + 284 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 362, + 272, + 371, + 281 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "that uses a functional architecture", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 313, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 313, + 296 + ], + "score": 1.0, + "content": "to compute a scalar energy for an input/output pair.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 299, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "score": 1.0, + "content": "We describe the SPEN for multi-label classification (MLC) from Belanger & McCallum (2016).", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 310, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 132, + 322 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 132, + 312, + 140, + 320 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 310, + 362, + 322 + ], + "score": 1.0, + "content": "is a fixed-length feature vector. We assume there are", + "type": "text" + }, + { + "bbox": [ + 362, + 311, + 370, + 320 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 310, + 506, + 322 + ], + "score": 1.0, + "content": "labels, each of which can be on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 207, + 334 + ], + "score": 1.0, + "content": "or off for each input, so", + "type": "text" + }, + { + "bbox": [ + 208, + 321, + 275, + 333 + ], + "score": 0.91, + "content": "\\mathcal { V } ( \\pmb { x } ) = \\{ 0 , 1 \\} ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 320, + 304, + 334 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 305, + 323, + 312, + 331 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 320, + 507, + 334 + ], + "score": 1.0, + "content": ". The energy function is the sum of two terms:", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 414, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 249, + 344 + ], + "score": 0.91, + "content": "E _ { \\Theta } ( { \\pmb x } , { \\pmb y } ) = E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) + \\dot { E } ^ { l a b } ( { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 331, + 253, + 345 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 253, + 333, + 298, + 344 + ], + "score": 0.8, + "content": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 331, + 414, + 345 + ], + "score": 1.0, + "content": "is the sum of linear models:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 347, + 364, + 381 + ], + "lines": [ + { + "bbox": [ + 247, + 347, + 364, + 381 + ], + "spans": [ + { + "bbox": [ + 247, + 347, + 364, + 381 + ], + "score": 0.95, + "content": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) = \\sum _ { i = 1 } ^ { L } y _ { i } b _ { i } ^ { \\top } F ( { \\pmb x } )", + "type": "interline_equation", + "image_path": "baf6f71e967caca1d316d7ddd7201209229ab95076d159c5f9173901c32ca808.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 247, + 347, + 364, + 364.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 247, + 364.0, + 364, + 381.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 133, + 398 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 385, + 142, + 395 + ], + "score": 0.87, + "content": "b _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 382, + 266, + 398 + ], + "score": 1.0, + "content": "is a parameter vector for label", + "type": "text" + }, + { + "bbox": [ + 266, + 385, + 271, + 394 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 382, + 289, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 384, + 312, + 396 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 382, + 505, + 398 + ], + "score": 1.0, + "content": "is a multi-layer perceptron computing a feature", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 393, + 376, + 409 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 217, + 409 + ], + "score": 1.0, + "content": "representation for the input", + "type": "text" + }, + { + "bbox": [ + 217, + 397, + 225, + 405 + ], + "score": 0.45, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 393, + 229, + 409 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 230, + 395, + 263, + 407 + ], + "score": 0.9, + "content": "E ^ { l a b } ( { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 393, + 292, + 409 + ], + "score": 1.0, + "content": "scores", + "type": "text" + }, + { + "bbox": [ + 292, + 398, + 300, + 407 + ], + "score": 0.84, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 393, + 363, + 409 + ], + "score": 1.0, + "content": "independent of", + "type": "text" + }, + { + "bbox": [ + 363, + 397, + 371, + 405 + ], + "score": 0.79, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 393, + 376, + 409 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 410, + 351, + 425 + ], + "lines": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "spans": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "score": 0.93, + "content": "E ^ { l a b } ( { \\pmb y } ) = c _ { 2 } ^ { \\top } g ( C _ { 1 } { \\pmb y } )", + "type": "interline_equation", + "image_path": "bf0061c1693a8bf3aed1da60ab8f002d6a79e952808a4d8623a007d8b16a07d2.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 427, + 503, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 133, + 439 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 429, + 144, + 438 + ], + "score": 0.83, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 426, + 235, + 439 + ], + "score": 1.0, + "content": "is a parameter vector,", + "type": "text" + }, + { + "bbox": [ + 236, + 430, + 242, + 439 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 426, + 431, + 439 + ], + "score": 1.0, + "content": "is an elementwise non-linearity function, and", + "type": "text" + }, + { + "bbox": [ + 431, + 428, + 443, + 438 + ], + "score": 0.88, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "is a parameter", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 437, + 398, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 398, + 453 + ], + "score": 1.0, + "content": "matrix. After learning the energy function, prediction minimizes energy:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 452, + 352, + 475 + ], + "lines": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "spans": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "score": 0.95, + "content": "\\pmb { \\hat { y } } = \\underset { \\pmb { y } \\in \\mathscr { y } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )", + "type": "interline_equation", + "image_path": "55227d60b498df46d076e076cb18459a35d7bed1eceed53a64bfd7480da624be.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 378, + 490 + ], + "score": 1.0, + "content": "However, solving Eq. (3) requires combinatorial algorithms because", + "type": "text" + }, + { + "bbox": [ + 379, + 478, + 388, + 489 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "is a discrete structured space.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 230, + 502 + ], + "score": 1.0, + "content": "This becomes intractable when", + "type": "text" + }, + { + "bbox": [ + 230, + 489, + 245, + 500 + ], + "score": 0.89, + "content": "E _ { \\Theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 487, + 456, + 502 + ], + "score": 1.0, + "content": "does not decompose into a sum over small “parts” of", + "type": "text" + }, + { + "bbox": [ + 456, + 490, + 463, + 500 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 487, + 506, + 502 + ], + "score": 1.0, + "content": ". Belanger", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 393, + 513 + ], + "score": 1.0, + "content": "& McCallum (2016) relax this problem by allowing the discrete vector", + "type": "text" + }, + { + "bbox": [ + 393, + 502, + 401, + 511 + ], + "score": 0.82, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "to be continuous. We use", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 121, + 522 + ], + "score": 0.88, + "content": "\\mathcal { { V } } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 510, + 306, + 523 + ], + "score": 1.0, + "content": "to denote the relaxed output space. For MLC,", + "type": "text" + }, + { + "bbox": [ + 306, + 510, + 373, + 523 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\breve { y } _ { R } ( { \\pmb x } ) = [ 0 , 1 ] ^ { L } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 510, + 505, + 523 + ], + "score": 1.0, + "content": ". They solve the relaxed problem", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 407, + 534 + ], + "score": 1.0, + "content": "by using gradient descent to iteratively optimize the energy with respect to", + "type": "text" + }, + { + "bbox": [ + 408, + 523, + 415, + 533 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 521, + 505, + 534 + ], + "score": 1.0, + "content": ". Since they train with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "a structured large-margin objective, repeated inference is required during learning. They note that", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "using gradient descent for this inference step is time-consuming and makes learning less stable. So", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "Belanger et al. (2017) propose an “end-to-end” learning procedure inspired by Domke (2012). This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "approach performs backpropagation through each step of gradient descent. We compare to both", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 577, + 248, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 248, + 589 + ], + "score": 1.0, + "content": "methods in our experiments below.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 107, + 603, + 312, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 312, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 312, + 618 + ], + "score": 1.0, + "content": "3 INFERENCE NETWORKS FOR SPENS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 506, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 264, + 641 + ], + "score": 1.0, + "content": "Belanger & McCallum (2016) relaxed", + "type": "text" + }, + { + "bbox": [ + 265, + 630, + 272, + 639 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "from a discrete to a continuous vector and used gradient", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 252, + 652 + ], + "score": 1.0, + "content": "descent for inference. We also relax", + "type": "text" + }, + { + "bbox": [ + 253, + 641, + 260, + 650 + ], + "score": 0.81, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "but we use a different strategy to approximate inference. We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 456, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 225, + 663 + ], + "score": 1.0, + "content": "define an inference network", + "type": "text" + }, + { + "bbox": [ + 225, + 650, + 255, + 662 + ], + "score": 0.92, + "content": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 649, + 328, + 663 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 329, + 650, + 337, + 660 + ], + "score": 0.85, + "content": "\\Psi", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 649, + 456, + 663 + ], + "score": 1.0, + "content": "and train it with the goal that", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 664, + 365, + 686 + ], + "lines": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "spans": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "score": 0.94, + "content": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } ) \\approx \\underset { \\pmb { y } \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )", + "type": "interline_equation", + "image_path": "427e08864aacf82c0e47a677521569f8238eff6352c48ab6feb01ca7bd8dc8b1.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 110, + 689, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 108, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 108, + 688, + 207, + 702 + ], + "score": 1.0, + "content": "Given an energy function", + "type": "text" + }, + { + "bbox": [ + 208, + 690, + 222, + 700 + ], + "score": 0.9, + "content": "E _ { \\Theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "and a dataset", + "type": "text" + }, + { + "bbox": [ + 276, + 690, + 286, + 699 + ], + "score": 0.86, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "of inputs, we solve the following optimization problem:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 703, + 375, + 730 + ], + "lines": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "spans": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "score": 0.94, + "content": "\\hat { \\Psi } \\underset { \\Psi } { \\mathrm { a r g m i n } } \\sum _ { \\pmb { x } \\in X } E _ { \\Theta } ( \\pmb { x } , \\mathbf { A } _ { \\Psi } ( \\pmb { x } ) )", + "type": "interline_equation", + "image_path": "3bf9815a6140b121415a70d85ca5f0ab9bb0e286e7ee824337a7cea13a6eaa31.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "spans": [], + "index": 44 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 118 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "We then design a SPEN and inference network for sequence labeling by using recurrent neural", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 144 + ], + "score": 1.0, + "content": "networks (RNNs). We perform comparably to a conditional random field (CRF; Lafferty et al. 2001)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "when using the same energy function, with faster test-time inference. We also experiment with a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "richer energy that includes a “label language model” that scores entire output label sequences using", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "an RNN, showing it can improve handling of long-distance dependencies in part-of-speech tagging.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "Finally, we show how inference networks can replace dynamic programming for test-time inference", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "with CRFs, suggestive for the general use of inference networks to speed up inference in traditional", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 227, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 227, + 211 + ], + "score": 1.0, + "content": "structured prediction settings.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 120, + 506, + 211 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 225, + 372, + 238 + ], + "lines": [ + { + "bbox": [ + 104, + 223, + 374, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 374, + 240 + ], + "score": 1.0, + "content": "2 STRUCTURED PREDICTION ENERGY NETWORKS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 249, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 236, + 263 + ], + "score": 1.0, + "content": "We denote the space of inputs by", + "type": "text" + }, + { + "bbox": [ + 237, + 250, + 246, + 260 + ], + "score": 0.79, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 249, + 319, + 263 + ], + "score": 1.0, + "content": ". For a given input", + "type": "text" + }, + { + "bbox": [ + 320, + 250, + 348, + 261 + ], + "score": 0.9, + "content": "\\mathbf { \\boldsymbol { x } } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 249, + 505, + 263 + ], + "score": 1.0, + "content": ", we denote the space of legal structured", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 152, + 274 + ], + "score": 1.0, + "content": "outputs by", + "type": "text" + }, + { + "bbox": [ + 152, + 261, + 175, + 273 + ], + "score": 0.92, + "content": "\\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 260, + 393, + 274 + ], + "score": 1.0, + "content": ". We denote the entire space of structured outputs by", + "type": "text" + }, + { + "bbox": [ + 393, + 261, + 462, + 273 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\cup _ { \\pmb { x } \\in \\mathcal { X } } \\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 260, + 505, + 274 + ], + "score": 1.0, + "content": ". A SPEN", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 217, + 284 + ], + "score": 1.0, + "content": "defines an energy function", + "type": "text" + }, + { + "bbox": [ + 217, + 272, + 290, + 283 + ], + "score": 0.91, + "content": "E _ { \\Theta } : \\mathcal { X } \\times \\mathcal { Y } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 271, + 361, + 284 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 362, + 272, + 371, + 281 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "that uses a functional architecture", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 313, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 313, + 296 + ], + "score": 1.0, + "content": "to compute a scalar energy for an input/output pair.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 249, + 505, + 296 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 299, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "score": 1.0, + "content": "We describe the SPEN for multi-label classification (MLC) from Belanger & McCallum (2016).", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 310, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 132, + 322 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 132, + 312, + 140, + 320 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 310, + 362, + 322 + ], + "score": 1.0, + "content": "is a fixed-length feature vector. We assume there are", + "type": "text" + }, + { + "bbox": [ + 362, + 311, + 370, + 320 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 310, + 506, + 322 + ], + "score": 1.0, + "content": "labels, each of which can be on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 207, + 334 + ], + "score": 1.0, + "content": "or off for each input, so", + "type": "text" + }, + { + "bbox": [ + 208, + 321, + 275, + 333 + ], + "score": 0.91, + "content": "\\mathcal { V } ( \\pmb { x } ) = \\{ 0 , 1 \\} ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 320, + 304, + 334 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 305, + 323, + 312, + 331 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 320, + 507, + 334 + ], + "score": 1.0, + "content": ". The energy function is the sum of two terms:", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 414, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 249, + 344 + ], + "score": 0.91, + "content": "E _ { \\Theta } ( { \\pmb x } , { \\pmb y } ) = E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) + \\dot { E } ^ { l a b } ( { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 331, + 253, + 345 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 253, + 333, + 298, + 344 + ], + "score": 0.8, + "content": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 331, + 414, + 345 + ], + "score": 1.0, + "content": "is the sum of linear models:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 298, + 507, + 345 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 347, + 364, + 381 + ], + "lines": [ + { + "bbox": [ + 247, + 347, + 364, + 381 + ], + "spans": [ + { + "bbox": [ + 247, + 347, + 364, + 381 + ], + "score": 0.95, + "content": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) = \\sum _ { i = 1 } ^ { L } y _ { i } b _ { i } ^ { \\top } F ( { \\pmb x } )", + "type": "interline_equation", + "image_path": "baf6f71e967caca1d316d7ddd7201209229ab95076d159c5f9173901c32ca808.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 247, + 347, + 364, + 364.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 247, + 364.0, + 364, + 381.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 133, + 398 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 385, + 142, + 395 + ], + "score": 0.87, + "content": "b _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 382, + 266, + 398 + ], + "score": 1.0, + "content": "is a parameter vector for label", + "type": "text" + }, + { + "bbox": [ + 266, + 385, + 271, + 394 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 382, + 289, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 384, + 312, + 396 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 382, + 505, + 398 + ], + "score": 1.0, + "content": "is a multi-layer perceptron computing a feature", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 393, + 376, + 409 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 217, + 409 + ], + "score": 1.0, + "content": "representation for the input", + "type": "text" + }, + { + "bbox": [ + 217, + 397, + 225, + 405 + ], + "score": 0.45, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 393, + 229, + 409 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 230, + 395, + 263, + 407 + ], + "score": 0.9, + "content": "E ^ { l a b } ( { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 393, + 292, + 409 + ], + "score": 1.0, + "content": "scores", + "type": "text" + }, + { + "bbox": [ + 292, + 398, + 300, + 407 + ], + "score": 0.84, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 393, + 363, + 409 + ], + "score": 1.0, + "content": "independent of", + "type": "text" + }, + { + "bbox": [ + 363, + 397, + 371, + 405 + ], + "score": 0.79, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 393, + 376, + 409 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 382, + 505, + 409 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 410, + 351, + 425 + ], + "lines": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "spans": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "score": 0.93, + "content": "E ^ { l a b } ( { \\pmb y } ) = c _ { 2 } ^ { \\top } g ( C _ { 1 } { \\pmb y } )", + "type": "interline_equation", + "image_path": "bf0061c1693a8bf3aed1da60ab8f002d6a79e952808a4d8623a007d8b16a07d2.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 260, + 410, + 351, + 425 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 427, + 503, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 133, + 439 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 429, + 144, + 438 + ], + "score": 0.83, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 426, + 235, + 439 + ], + "score": 1.0, + "content": "is a parameter vector,", + "type": "text" + }, + { + "bbox": [ + 236, + 430, + 242, + 439 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 426, + 431, + 439 + ], + "score": 1.0, + "content": "is an elementwise non-linearity function, and", + "type": "text" + }, + { + "bbox": [ + 431, + 428, + 443, + 438 + ], + "score": 0.88, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "is a parameter", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 437, + 398, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 398, + 453 + ], + "score": 1.0, + "content": "matrix. After learning the energy function, prediction minimizes energy:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 426, + 505, + 453 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 452, + 352, + 475 + ], + "lines": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "spans": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "score": 0.95, + "content": "\\pmb { \\hat { y } } = \\underset { \\pmb { y } \\in \\mathscr { y } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )", + "type": "interline_equation", + "image_path": "55227d60b498df46d076e076cb18459a35d7bed1eceed53a64bfd7480da624be.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 258, + 452, + 352, + 475 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 378, + 490 + ], + "score": 1.0, + "content": "However, solving Eq. (3) requires combinatorial algorithms because", + "type": "text" + }, + { + "bbox": [ + 379, + 478, + 388, + 489 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "is a discrete structured space.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 230, + 502 + ], + "score": 1.0, + "content": "This becomes intractable when", + "type": "text" + }, + { + "bbox": [ + 230, + 489, + 245, + 500 + ], + "score": 0.89, + "content": "E _ { \\Theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 487, + 456, + 502 + ], + "score": 1.0, + "content": "does not decompose into a sum over small “parts” of", + "type": "text" + }, + { + "bbox": [ + 456, + 490, + 463, + 500 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 487, + 506, + 502 + ], + "score": 1.0, + "content": ". Belanger", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 393, + 513 + ], + "score": 1.0, + "content": "& McCallum (2016) relax this problem by allowing the discrete vector", + "type": "text" + }, + { + "bbox": [ + 393, + 502, + 401, + 511 + ], + "score": 0.82, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "to be continuous. We use", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 121, + 522 + ], + "score": 0.88, + "content": "\\mathcal { { V } } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 510, + 306, + 523 + ], + "score": 1.0, + "content": "to denote the relaxed output space. For MLC,", + "type": "text" + }, + { + "bbox": [ + 306, + 510, + 373, + 523 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\breve { y } _ { R } ( { \\pmb x } ) = [ 0 , 1 ] ^ { L } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 510, + 505, + 523 + ], + "score": 1.0, + "content": ". They solve the relaxed problem", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 407, + 534 + ], + "score": 1.0, + "content": "by using gradient descent to iteratively optimize the energy with respect to", + "type": "text" + }, + { + "bbox": [ + 408, + 523, + 415, + 533 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 521, + 505, + 534 + ], + "score": 1.0, + "content": ". Since they train with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "a structured large-margin objective, repeated inference is required during learning. They note that", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "using gradient descent for this inference step is time-consuming and makes learning less stable. So", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "Belanger et al. (2017) propose an “end-to-end” learning procedure inspired by Domke (2012). This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "approach performs backpropagation through each step of gradient descent. We compare to both", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 577, + 248, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 248, + 589 + ], + "score": 1.0, + "content": "methods in our experiments below.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 478, + 506, + 589 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 603, + 312, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 312, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 312, + 618 + ], + "score": 1.0, + "content": "3 INFERENCE NETWORKS FOR SPENS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 506, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 264, + 641 + ], + "score": 1.0, + "content": "Belanger & McCallum (2016) relaxed", + "type": "text" + }, + { + "bbox": [ + 265, + 630, + 272, + 639 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "from a discrete to a continuous vector and used gradient", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 252, + 652 + ], + "score": 1.0, + "content": "descent for inference. We also relax", + "type": "text" + }, + { + "bbox": [ + 253, + 641, + 260, + 650 + ], + "score": 0.81, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "but we use a different strategy to approximate inference. We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 456, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 225, + 663 + ], + "score": 1.0, + "content": "define an inference network", + "type": "text" + }, + { + "bbox": [ + 225, + 650, + 255, + 662 + ], + "score": 0.92, + "content": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 649, + 328, + 663 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 329, + 650, + 337, + 660 + ], + "score": 0.85, + "content": "\\Psi", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 649, + 456, + 663 + ], + "score": 1.0, + "content": "and train it with the goal that", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 627, + 506, + 663 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 664, + 365, + 686 + ], + "lines": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "spans": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "score": 0.94, + "content": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } ) \\approx \\underset { \\pmb { y } \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )", + "type": "interline_equation", + "image_path": "427e08864aacf82c0e47a677521569f8238eff6352c48ab6feb01ca7bd8dc8b1.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 246, + 664, + 365, + 686 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 110, + 689, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 108, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 108, + 688, + 207, + 702 + ], + "score": 1.0, + "content": "Given an energy function", + "type": "text" + }, + { + "bbox": [ + 208, + 690, + 222, + 700 + ], + "score": 0.9, + "content": "E _ { \\Theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "and a dataset", + "type": "text" + }, + { + "bbox": [ + 276, + 690, + 286, + 699 + ], + "score": 0.86, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "of inputs, we solve the following optimization problem:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 108, + 688, + 506, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 703, + 375, + 730 + ], + "lines": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "spans": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "score": 0.94, + "content": "\\hat { \\Psi } \\underset { \\Psi } { \\mathrm { a r g m i n } } \\sum _ { \\pmb { x } \\in X } E _ { \\Theta } ( \\pmb { x } , \\mathbf { A } _ { \\Psi } ( \\pmb { x } ) )", + "type": "interline_equation", + "image_path": "3bf9815a6140b121415a70d85ca5f0ab9bb0e286e7ee824337a7cea13a6eaa31.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 235, + 703, + 375, + 730 + ], + "spans": [], + "index": 44 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 182, + 96 + ], + "score": 1.0, + "content": "The architecture of", + "type": "text" + }, + { + "bbox": [ + 182, + 83, + 199, + 93 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "will depend on the task. For MLC, the same set of labels is applicable to every", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 132, + 106 + ], + "score": 1.0, + "content": "input,", + "type": "text" + }, + { + "bbox": [ + 132, + 95, + 152, + 105 + ], + "score": 0.27, + "content": "{ \\bf { S 0 } } \\ y", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 93, + 466, + 106 + ], + "score": 1.0, + "content": "has the same length for all inputs. So, we can use a feed-forward network for", + "type": "text" + }, + { + "bbox": [ + 467, + 94, + 483, + 105 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 104, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "a vector output, treating each dimension as the prediction for a single label. For sequence labeling,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 128, + 128 + ], + "score": 1.0, + "content": "each", + "type": "text" + }, + { + "bbox": [ + 128, + 117, + 136, + 126 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 115, + 219, + 128 + ], + "score": 1.0, + "content": "(and therefore each", + "type": "text" + }, + { + "bbox": [ + 219, + 117, + 227, + 127 + ], + "score": 0.62, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 115, + 506, + 128 + ], + "score": 1.0, + "content": ") can have a different length, so we must use a network architecture", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 121, + 138 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 127, + 137, + 137 + ], + "score": 0.87, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "that permits different lengths of predictions. We use an RNN that returns a vector at each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 151, + 150 + ], + "score": 1.0, + "content": "position of", + "type": "text" + }, + { + "bbox": [ + 152, + 139, + 159, + 147 + ], + "score": 0.71, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 137, + 506, + 150 + ], + "score": 1.0, + "content": ". We interpret this vector as a probability distribution over output labels at that position.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 218, + 167 + ], + "score": 1.0, + "content": "We note that the output of", + "type": "text" + }, + { + "bbox": [ + 219, + 154, + 235, + 165 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "must be compatible with the energy function, which is typically", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 322, + 179 + ], + "score": 1.0, + "content": "defined in terms of the original discrete output space", + "type": "text" + }, + { + "bbox": [ + 322, + 166, + 331, + 176 + ], + "score": 0.67, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 164, + 505, + 179 + ], + "score": 1.0, + "content": ". This may require generalizing the energy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "score": 1.0, + "content": "function to be able to operate both on elements of", + "type": "text" + }, + { + "bbox": [ + 308, + 177, + 317, + 187 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 176, + 335, + 189 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 176, + 349, + 187 + ], + "score": 0.88, + "content": "\\mathcal { V } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 176, + 506, + 189 + ], + "score": 1.0, + "content": ". For MLC, no change is required. For", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 462, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 462, + 199 + ], + "score": 1.0, + "content": "sequence labeling, the change is straightforward and is described below in Section 7.2.1.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 214, + 420, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 420, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 420, + 229 + ], + "score": 1.0, + "content": "4 JOINT TRAINING OF SPENS AND INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 436, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 238, + 437, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 437, + 252 + ], + "score": 1.0, + "content": "Belanger & McCallum (2016) propose a structured hinge loss for training SPENs:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 253, + 439, + 286 + ], + "lines": [ + { + "bbox": [ + 170, + 253, + 439, + 286 + ], + "spans": [ + { + "bbox": [ + 170, + 253, + 439, + 286 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\Theta } \\sum _ { \\langle x _ { i } , y _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\operatorname* { m a x } _ { y \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } \\left( \\triangle ( \\pmb { y } , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right) \\right] _ { + }", + "type": "interline_equation", + "image_path": "8b09b16075467b88bf5b8bf7af453f3340a24e7d9e02967171df4ed33283c98a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 170, + 253, + 439, + 264.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 170, + 264.0, + 439, + 275.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 170, + 275.0, + 439, + 286.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 133, + 303 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 143, + 300 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 289, + 254, + 303 + ], + "score": 1.0, + "content": "is the set of training pairs,", + "type": "text" + }, + { + "bbox": [ + 254, + 290, + 329, + 302 + ], + "score": 0.92, + "content": "[ f ] _ { + } = \\operatorname* { m a x } ( 0 , f )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 289, + 350, + 303 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 350, + 290, + 388, + 302 + ], + "score": 0.93, + "content": "\\triangle ( \\pmb { y } , \\pmb { y } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "is a structured cost function", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 364, + 312 + ], + "score": 1.0, + "content": "that returns a nonnegative value indicating the difference between", + "type": "text" + }, + { + "bbox": [ + 364, + 303, + 372, + 312 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 300, + 389, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 389, + 301, + 399, + 312 + ], + "score": 0.87, + "content": "\\boldsymbol { y } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 300, + 505, + 312 + ], + "score": 1.0, + "content": ". This loss is often referred", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 483, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 483, + 324 + ], + "score": 1.0, + "content": "to as “margin-rescaled” structured hinge loss (Taskar et al., 2004; Tsochantaridis et al., 2005).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "However, this loss is expensive to minimize for structured models because of the “cost-augmented”", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 168, + 354 + ], + "score": 1.0, + "content": "inference step", + "type": "text" + }, + { + "bbox": [ + 168, + 340, + 227, + 353 + ], + "score": 0.9, + "content": "( \\operatorname* { m a x } _ { \\pmb { y } \\in \\mathcal { y } _ { R } ( \\pmb { x } ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 338, + 506, + 354 + ], + "score": 1.0, + "content": ". In prior work with SPENs, this step used gradient descent. We", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 332, + 365 + ], + "score": 1.0, + "content": "replace this with a cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 333, + 351, + 362, + 363 + ], + "score": 0.92, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 351, + 505, + 365 + ], + "score": 1.0, + "content": ". As suggested by the notation, the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 248, + 376 + ], + "score": 1.0, + "content": "cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 248, + 363, + 264, + 374 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 361, + 372, + 376 + ], + "score": 1.0, + "content": "and the inference network", + "type": "text" + }, + { + "bbox": [ + 372, + 363, + 389, + 374 + ], + "score": 0.89, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "will typically have the same", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 503, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 287, + 387 + ], + "score": 1.0, + "content": "functional form, but use different parameters", + "type": "text" + }, + { + "bbox": [ + 288, + 374, + 296, + 383 + ], + "score": 0.85, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 372, + 314, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 314, + 374, + 322, + 383 + ], + "score": 0.82, + "content": "\\Psi", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 372, + 503, + 387 + ], + "score": 1.0, + "content": ". We write our new optimization problem as:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 388, + 452, + 417 + ], + "lines": [ + { + "bbox": [ + 158, + 388, + 452, + 417 + ], + "spans": [ + { + "bbox": [ + 158, + 388, + 452, + 417 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\pmb { x } _ { i } , \\pmb { y } _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right] _ { + }", + "type": "interline_equation", + "image_path": "3cd9ffa2b7b4e03e6ad212e519e8fd303dc78c32edbda1b39426a6f957ea3fca.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 158, + 388, + 452, + 397.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 158, + 397.6666666666667, + 452, + 407.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 158, + 407.33333333333337, + 452, + 417.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 440 + ], + "score": 1.0, + "content": "We treat this optimization problem as a minimax game and find a saddle point for the game. Following", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "Goodfellow et al. (2014), we implement this using an iterative numerical approach. We alternatively", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 144, + 462 + ], + "score": 1.0, + "content": "optimize", + "type": "text" + }, + { + "bbox": [ + 144, + 448, + 152, + 457 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 446, + 170, + 462 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 448, + 179, + 457 + ], + "score": 0.8, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 446, + 326, + 462 + ], + "score": 1.0, + "content": ", holding the other fixed. Optimizing", + "type": "text" + }, + { + "bbox": [ + 326, + 448, + 335, + 457 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 446, + 506, + 462 + ], + "score": 1.0, + "content": "to completion in the inner loop of training", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "is computationally prohibitive and may lead to overfitting. So we alternate between one mini-batch", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 469, + 483, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 166, + 483 + ], + "score": 1.0, + "content": "for optimizing", + "type": "text" + }, + { + "bbox": [ + 167, + 470, + 175, + 479 + ], + "score": 0.83, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 469, + 269, + 483 + ], + "score": 1.0, + "content": "and one for optimizing", + "type": "text" + }, + { + "bbox": [ + 270, + 470, + 279, + 480 + ], + "score": 0.7, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 469, + 334, + 483 + ], + "score": 1.0, + "content": ". We also add", + "type": "text" + }, + { + "bbox": [ + 334, + 470, + 346, + 480 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 469, + 444, + 483 + ], + "score": 1.0, + "content": "regularization terms for", + "type": "text" + }, + { + "bbox": [ + 444, + 470, + 453, + 479 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 469, + 471, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 471, + 470, + 479, + 479 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 469, + 483, + 483 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 343, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 344, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 344, + 499 + ], + "score": 1.0, + "content": "The objective for the cost-augmented inference network is:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 501, + 441, + 522 + ], + "lines": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "spans": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "score": 0.91, + "content": "\\hat { \\Phi } \\underset { \\Phi } { \\mathrm { a r g m a x } } [ \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } ) _ { i } ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "81b3451fee569d726e87a3eefef544d0a83f9edbf6416c0fbd76d4ca9b61468c.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 506, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 180, + 539 + ], + "score": 1.0, + "content": "That is, we update", + "type": "text" + }, + { + "bbox": [ + 180, + 526, + 189, + 536 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 525, + 218, + 539 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 218, + 526, + 234, + 537 + ], + "score": 0.91, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "yields an output that has low energy and high cost, in order to mimic", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 309, + 549 + ], + "score": 1.0, + "content": "cost-augmented inference. The energy parameters", + "type": "text" + }, + { + "bbox": [ + 309, + 537, + 318, + 546 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "are kept fixed. There is an analogy here to the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 188, + 561 + ], + "score": 1.0, + "content": "generator in GANs:", + "type": "text" + }, + { + "bbox": [ + 189, + 548, + 205, + 559 + ], + "score": 0.89, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "is trained to produce a high-cost structured output that is also appealing to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 557, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 337, + 572 + ], + "score": 1.0, + "content": "the current energy function. To help stabilize training of", + "type": "text" + }, + { + "bbox": [ + 337, + 559, + 345, + 568 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 557, + 507, + 572 + ], + "score": 1.0, + "content": ", we add several terms to this objective,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 570, + 225, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 225, + 580 + ], + "score": 1.0, + "content": "discussed below in Section 5.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 267, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 268, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 268, + 600 + ], + "score": 1.0, + "content": "The objective for the energy function is:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 601, + 460, + 623 + ], + "lines": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "spans": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "score": 0.91, + "content": "\\hat { \\Theta } \\underset { \\Theta } { \\mathrm { a r g m i n } } [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + } + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }", + "type": "interline_equation", + "image_path": "6e4c463e6ac65a7e85e44a613b15c85229d4923b6dd4c9b25b7d1273aa2be9da.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 182, + 639 + ], + "score": 1.0, + "content": "That is, we update", + "type": "text" + }, + { + "bbox": [ + 183, + 626, + 192, + 636 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "so as to widen the gap between the cost-augmented and ground truth outputs.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "There is an analogy here to the discriminator in GANs. The energy function is updated so as to enable", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 646, + 387, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 283, + 662 + ], + "score": 1.0, + "content": "it to distinguish “fake” outputs produced by", + "type": "text" + }, + { + "bbox": [ + 283, + 648, + 299, + 659 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 646, + 371, + 662 + ], + "score": 1.0, + "content": "from real outputs", + "type": "text" + }, + { + "bbox": [ + 372, + 650, + 382, + 659 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\psi } _ { j } } \\mathbf { \\sigma } _ { j } \\mathbf { \\sigma } _ { j } ", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 646, + 387, + 662 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 392, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 394, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 247, + 678 + ], + "score": 1.0, + "content": "Training iterates between updating", + "type": "text" + }, + { + "bbox": [ + 247, + 665, + 255, + 675 + ], + "score": 0.83, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 663, + 273, + 678 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 274, + 665, + 282, + 675 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 663, + 394, + 678 + ], + "score": 1.0, + "content": "using the objectives above.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 232, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 232, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 232, + 701 + ], + "score": 1.0, + "content": "4.1 TEST-TIME INFERENCE", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 316, + 722 + ], + "score": 1.0, + "content": "After training, we want to use an inference network", + "type": "text" + }, + { + "bbox": [ + 316, + 710, + 333, + 721 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "defined in Eq. (4). However, training only", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 285, + 734 + ], + "score": 1.0, + "content": "gives us a cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 286, + 721, + 302, + 732 + ], + "score": 0.9, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 720, + 330, + 734 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 330, + 721, + 347, + 732 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 720, + 365, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 365, + 721, + 381, + 732 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "have the same functional form,", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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, + 81, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 182, + 96 + ], + "score": 1.0, + "content": "The architecture of", + "type": "text" + }, + { + "bbox": [ + 182, + 83, + 199, + 93 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "will depend on the task. For MLC, the same set of labels is applicable to every", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 132, + 106 + ], + "score": 1.0, + "content": "input,", + "type": "text" + }, + { + "bbox": [ + 132, + 95, + 152, + 105 + ], + "score": 0.27, + "content": "{ \\bf { S 0 } } \\ y", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 93, + 466, + 106 + ], + "score": 1.0, + "content": "has the same length for all inputs. So, we can use a feed-forward network for", + "type": "text" + }, + { + "bbox": [ + 467, + 94, + 483, + 105 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 104, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "a vector output, treating each dimension as the prediction for a single label. For sequence labeling,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 128, + 128 + ], + "score": 1.0, + "content": "each", + "type": "text" + }, + { + "bbox": [ + 128, + 117, + 136, + 126 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 115, + 219, + 128 + ], + "score": 1.0, + "content": "(and therefore each", + "type": "text" + }, + { + "bbox": [ + 219, + 117, + 227, + 127 + ], + "score": 0.62, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 115, + 506, + 128 + ], + "score": 1.0, + "content": ") can have a different length, so we must use a network architecture", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 121, + 138 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 127, + 137, + 137 + ], + "score": 0.87, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "that permits different lengths of predictions. We use an RNN that returns a vector at each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 151, + 150 + ], + "score": 1.0, + "content": "position of", + "type": "text" + }, + { + "bbox": [ + 152, + 139, + 159, + 147 + ], + "score": 0.71, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 137, + 506, + 150 + ], + "score": 1.0, + "content": ". We interpret this vector as a probability distribution over output labels at that position.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 104, + 81, + 506, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 218, + 167 + ], + "score": 1.0, + "content": "We note that the output of", + "type": "text" + }, + { + "bbox": [ + 219, + 154, + 235, + 165 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "must be compatible with the energy function, which is typically", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 322, + 179 + ], + "score": 1.0, + "content": "defined in terms of the original discrete output space", + "type": "text" + }, + { + "bbox": [ + 322, + 166, + 331, + 176 + ], + "score": 0.67, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 164, + 505, + 179 + ], + "score": 1.0, + "content": ". This may require generalizing the energy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "score": 1.0, + "content": "function to be able to operate both on elements of", + "type": "text" + }, + { + "bbox": [ + 308, + 177, + 317, + 187 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 176, + 335, + 189 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 176, + 349, + 187 + ], + "score": 0.88, + "content": "\\mathcal { V } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 176, + 506, + 189 + ], + "score": 1.0, + "content": ". For MLC, no change is required. For", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 462, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 462, + 199 + ], + "score": 1.0, + "content": "sequence labeling, the change is straightforward and is described below in Section 7.2.1.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 154, + 506, + 199 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 214, + 420, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 420, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 420, + 229 + ], + "score": 1.0, + "content": "4 JOINT TRAINING OF SPENS AND INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 436, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 238, + 437, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 437, + 252 + ], + "score": 1.0, + "content": "Belanger & McCallum (2016) propose a structured hinge loss for training SPENs:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 238, + 437, + 252 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 253, + 439, + 286 + ], + "lines": [ + { + "bbox": [ + 170, + 253, + 439, + 286 + ], + "spans": [ + { + "bbox": [ + 170, + 253, + 439, + 286 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\Theta } \\sum _ { \\langle x _ { i } , y _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\operatorname* { m a x } _ { y \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } \\left( \\triangle ( \\pmb { y } , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right) \\right] _ { + }", + "type": "interline_equation", + "image_path": "8b09b16075467b88bf5b8bf7af453f3340a24e7d9e02967171df4ed33283c98a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 170, + 253, + 439, + 264.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 170, + 264.0, + 439, + 275.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 170, + 275.0, + 439, + 286.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 133, + 303 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 143, + 300 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 289, + 254, + 303 + ], + "score": 1.0, + "content": "is the set of training pairs,", + "type": "text" + }, + { + "bbox": [ + 254, + 290, + 329, + 302 + ], + "score": 0.92, + "content": "[ f ] _ { + } = \\operatorname* { m a x } ( 0 , f )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 289, + 350, + 303 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 350, + 290, + 388, + 302 + ], + "score": 0.93, + "content": "\\triangle ( \\pmb { y } , \\pmb { y } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "is a structured cost function", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 364, + 312 + ], + "score": 1.0, + "content": "that returns a nonnegative value indicating the difference between", + "type": "text" + }, + { + "bbox": [ + 364, + 303, + 372, + 312 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 300, + 389, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 389, + 301, + 399, + 312 + ], + "score": 0.87, + "content": "\\boldsymbol { y } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 300, + 505, + 312 + ], + "score": 1.0, + "content": ". This loss is often referred", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 483, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 483, + 324 + ], + "score": 1.0, + "content": "to as “margin-rescaled” structured hinge loss (Taskar et al., 2004; Tsochantaridis et al., 2005).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 289, + 505, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "However, this loss is expensive to minimize for structured models because of the “cost-augmented”", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 168, + 354 + ], + "score": 1.0, + "content": "inference step", + "type": "text" + }, + { + "bbox": [ + 168, + 340, + 227, + 353 + ], + "score": 0.9, + "content": "( \\operatorname* { m a x } _ { \\pmb { y } \\in \\mathcal { y } _ { R } ( \\pmb { x } ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 338, + 506, + 354 + ], + "score": 1.0, + "content": ". In prior work with SPENs, this step used gradient descent. We", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 332, + 365 + ], + "score": 1.0, + "content": "replace this with a cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 333, + 351, + 362, + 363 + ], + "score": 0.92, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 351, + 505, + 365 + ], + "score": 1.0, + "content": ". As suggested by the notation, the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 248, + 376 + ], + "score": 1.0, + "content": "cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 248, + 363, + 264, + 374 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 361, + 372, + 376 + ], + "score": 1.0, + "content": "and the inference network", + "type": "text" + }, + { + "bbox": [ + 372, + 363, + 389, + 374 + ], + "score": 0.89, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "will typically have the same", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 503, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 287, + 387 + ], + "score": 1.0, + "content": "functional form, but use different parameters", + "type": "text" + }, + { + "bbox": [ + 288, + 374, + 296, + 383 + ], + "score": 0.85, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 372, + 314, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 314, + 374, + 322, + 383 + ], + "score": 0.82, + "content": "\\Psi", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 372, + 503, + 387 + ], + "score": 1.0, + "content": ". We write our new optimization problem as:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 328, + 506, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 388, + 452, + 417 + ], + "lines": [ + { + "bbox": [ + 158, + 388, + 452, + 417 + ], + "spans": [ + { + "bbox": [ + 158, + 388, + 452, + 417 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\pmb { x } _ { i } , \\pmb { y } _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right] _ { + }", + "type": "interline_equation", + "image_path": "3cd9ffa2b7b4e03e6ad212e519e8fd303dc78c32edbda1b39426a6f957ea3fca.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 158, + 388, + 452, + 397.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 158, + 397.6666666666667, + 452, + 407.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 158, + 407.33333333333337, + 452, + 417.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 440 + ], + "score": 1.0, + "content": "We treat this optimization problem as a minimax game and find a saddle point for the game. Following", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "Goodfellow et al. (2014), we implement this using an iterative numerical approach. We alternatively", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 144, + 462 + ], + "score": 1.0, + "content": "optimize", + "type": "text" + }, + { + "bbox": [ + 144, + 448, + 152, + 457 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 446, + 170, + 462 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 448, + 179, + 457 + ], + "score": 0.8, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 446, + 326, + 462 + ], + "score": 1.0, + "content": ", holding the other fixed. Optimizing", + "type": "text" + }, + { + "bbox": [ + 326, + 448, + 335, + 457 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 446, + 506, + 462 + ], + "score": 1.0, + "content": "to completion in the inner loop of training", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "is computationally prohibitive and may lead to overfitting. So we alternate between one mini-batch", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 469, + 483, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 166, + 483 + ], + "score": 1.0, + "content": "for optimizing", + "type": "text" + }, + { + "bbox": [ + 167, + 470, + 175, + 479 + ], + "score": 0.83, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 469, + 269, + 483 + ], + "score": 1.0, + "content": "and one for optimizing", + "type": "text" + }, + { + "bbox": [ + 270, + 470, + 279, + 480 + ], + "score": 0.7, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 469, + 334, + 483 + ], + "score": 1.0, + "content": ". We also add", + "type": "text" + }, + { + "bbox": [ + 334, + 470, + 346, + 480 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 469, + 444, + 483 + ], + "score": 1.0, + "content": "regularization terms for", + "type": "text" + }, + { + "bbox": [ + 444, + 470, + 453, + 479 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 469, + 471, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 471, + 470, + 479, + 479 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 469, + 483, + 483 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 423, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 343, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 344, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 344, + 499 + ], + "score": 1.0, + "content": "The objective for the cost-augmented inference network is:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 486, + 344, + 499 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 501, + 441, + 522 + ], + "lines": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "spans": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "score": 0.91, + "content": "\\hat { \\Phi } \\underset { \\Phi } { \\mathrm { a r g m a x } } [ \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } ) _ { i } ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "81b3451fee569d726e87a3eefef544d0a83f9edbf6416c0fbd76d4ca9b61468c.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 169, + 501, + 441, + 522 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 506, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 180, + 539 + ], + "score": 1.0, + "content": "That is, we update", + "type": "text" + }, + { + "bbox": [ + 180, + 526, + 189, + 536 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 525, + 218, + 539 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 218, + 526, + 234, + 537 + ], + "score": 0.91, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "yields an output that has low energy and high cost, in order to mimic", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 309, + 549 + ], + "score": 1.0, + "content": "cost-augmented inference. The energy parameters", + "type": "text" + }, + { + "bbox": [ + 309, + 537, + 318, + 546 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "are kept fixed. There is an analogy here to the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 188, + 561 + ], + "score": 1.0, + "content": "generator in GANs:", + "type": "text" + }, + { + "bbox": [ + 189, + 548, + 205, + 559 + ], + "score": 0.89, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "is trained to produce a high-cost structured output that is also appealing to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 557, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 337, + 572 + ], + "score": 1.0, + "content": "the current energy function. To help stabilize training of", + "type": "text" + }, + { + "bbox": [ + 337, + 559, + 345, + 568 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 557, + 507, + 572 + ], + "score": 1.0, + "content": ", we add several terms to this objective,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 570, + 225, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 225, + 580 + ], + "score": 1.0, + "content": "discussed below in Section 5.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 525, + 507, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 267, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 268, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 268, + 600 + ], + "score": 1.0, + "content": "The objective for the energy function is:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 585, + 268, + 600 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 601, + 460, + 623 + ], + "lines": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "spans": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "score": 0.91, + "content": "\\hat { \\Theta } \\underset { \\Theta } { \\mathrm { a r g m i n } } [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + } + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }", + "type": "interline_equation", + "image_path": "6e4c463e6ac65a7e85e44a613b15c85229d4923b6dd4c9b25b7d1273aa2be9da.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 150, + 601, + 460, + 623 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 182, + 639 + ], + "score": 1.0, + "content": "That is, we update", + "type": "text" + }, + { + "bbox": [ + 183, + 626, + 192, + 636 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "so as to widen the gap between the cost-augmented and ground truth outputs.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "There is an analogy here to the discriminator in GANs. The energy function is updated so as to enable", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 646, + 387, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 283, + 662 + ], + "score": 1.0, + "content": "it to distinguish “fake” outputs produced by", + "type": "text" + }, + { + "bbox": [ + 283, + 648, + 299, + 659 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 646, + 371, + 662 + ], + "score": 1.0, + "content": "from real outputs", + "type": "text" + }, + { + "bbox": [ + 372, + 650, + 382, + 659 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\psi } _ { j } } \\mathbf { \\sigma } _ { j } \\mathbf { \\sigma } _ { j } ", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 646, + 387, + 662 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 626, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 392, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 394, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 247, + 678 + ], + "score": 1.0, + "content": "Training iterates between updating", + "type": "text" + }, + { + "bbox": [ + 247, + 665, + 255, + 675 + ], + "score": 0.83, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 663, + 273, + 678 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 274, + 665, + 282, + 675 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 663, + 394, + 678 + ], + "score": 1.0, + "content": "using the objectives above.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 663, + 394, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 232, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 232, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 232, + 701 + ], + "score": 1.0, + "content": "4.1 TEST-TIME INFERENCE", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 316, + 722 + ], + "score": 1.0, + "content": "After training, we want to use an inference network", + "type": "text" + }, + { + "bbox": [ + 316, + 710, + 333, + 721 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "defined in Eq. (4). However, training only", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 285, + 734 + ], + "score": 1.0, + "content": "gives us a cost-augmented inference network", + "type": "text" + }, + { + "bbox": [ + 286, + 721, + 302, + 732 + ], + "score": 0.9, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 720, + 330, + 734 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 330, + 721, + 347, + 732 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 720, + 365, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 365, + 721, + 381, + 732 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "have the same functional form,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 152, + 95 + ], + "score": 1.0, + "content": "we can use", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 152, + 83, + 161, + 92 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 161, + 82, + 209, + 95 + ], + "score": 1.0, + "content": "to initialize", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 209, + 83, + 218, + 92 + ], + "score": 0.8, + "content": "\\Psi", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 218, + 82, + 341, + 95 + ], + "score": 1.0, + "content": ", then do additional training on", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 341, + 83, + 358, + 94 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 358, + 82, + 436, + 95 + ], + "score": 1.0, + "content": "as in Eq. (5) where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 437, + 83, + 447, + 92 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 447, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "is the training", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "score": 1.0, + "content": "or validation set. This step helps the resulting inference network to produce outputs with lower", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "energy, as it is no longer affected by the cost function. Since this procedure does not use the output", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 452, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 157, + 128 + ], + "score": 1.0, + "content": "labels of the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 158, + 117, + 165, + 125 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 166, + 114, + 183, + 128 + ], + "score": 1.0, + "content": "’s in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 184, + 116, + 194, + 125 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 194, + 114, + 452, + 128 + ], + "score": 1.0, + "content": ", it could also be applied to the test data in a transductive setting.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 709, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 152, + 95 + ], + "score": 1.0, + "content": "we can use", + "type": "text" + }, + { + "bbox": [ + 152, + 83, + 161, + 92 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 82, + 209, + 95 + ], + "score": 1.0, + "content": "to initialize", + "type": "text" + }, + { + "bbox": [ + 209, + 83, + 218, + 92 + ], + "score": 0.8, + "content": "\\Psi", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 82, + 341, + 95 + ], + "score": 1.0, + "content": ", then do additional training on", + "type": "text" + }, + { + "bbox": [ + 341, + 83, + 358, + 94 + ], + "score": 0.88, + "content": "\\mathbf { A } _ { \\Psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 82, + 436, + 95 + ], + "score": 1.0, + "content": "as in Eq. (5) where", + "type": "text" + }, + { + "bbox": [ + 437, + 83, + 447, + 92 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "is the training", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "score": 1.0, + "content": "or validation set. This step helps the resulting inference network to produce outputs with lower", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "energy, as it is no longer affected by the cost function. Since this procedure does not use the output", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 452, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 157, + 128 + ], + "score": 1.0, + "content": "labels of the", + "type": "text" + }, + { + "bbox": [ + 158, + 117, + 165, + 125 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 114, + 183, + 128 + ], + "score": 1.0, + "content": "’s in", + "type": "text" + }, + { + "bbox": [ + 184, + 116, + 194, + 125 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 114, + 452, + 128 + ], + "score": 1.0, + "content": ", it could also be applied to the test data in a transductive setting.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 108, + 140, + 276, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 278, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 278, + 153 + ], + "score": 1.0, + "content": "4.2 VARIATIONS AND SPECIAL CASES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 506, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "score": 1.0, + "content": "This approach also permits us to use large-margin structured prediction with slack rescaling (Tsochan-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "taridis et al., 2005). Slack rescaling can yield higher accuracies than margin rescaling, but requires", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 181, + 507, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 507, + 195 + ], + "score": 1.0, + "content": "“cost-scaled” inference during training which is intractable for many classes of output structures.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 206 + ], + "score": 1.0, + "content": "However, we can use our notion of inference networks to circumvent this tractability issue and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "approximately optimize the slack-rescaled hinge loss, yielding the following optimization problem:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 218, + 455, + 247 + ], + "lines": [ + { + "bbox": [ + 155, + 218, + 455, + 247 + ], + "spans": [ + { + "bbox": [ + 155, + 218, + 455, + 247 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\mathbf { x } _ { i } , \\mathbf { y } _ { i } \\rangle \\in \\mathcal { D } } \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) , \\mathbf { y } _ { i } ) [ 1 - E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) ) + E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "c38a7125f1caf5dee8eb0dcc6338c0a0ca5a1baa5f9921e518f50e97c7405cd5.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 155, + 218, + 455, + 227.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 227.66666666666666, + 455, + 237.33333333333331 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 237.33333333333331, + 455, + 246.99999999999997 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 250, + 505, + 262 + ], + "lines": [ + { + "bbox": [ + 107, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 249, + 467, + 263 + ], + "score": 1.0, + "content": "Using the same argument as above, we can also break this into alternating optimization of", + "type": "text" + }, + { + "bbox": [ + 467, + 250, + 475, + 260 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 249, + 493, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 494, + 250, + 502, + 260 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 249, + 506, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "We can optimize a structured perceptron (Collins, 2002) version by using the margin-rescaled hinge", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 206, + 291 + ], + "score": 1.0, + "content": "loss (Eq. (7)) and fixing", + "type": "text" + }, + { + "bbox": [ + 206, + 278, + 288, + 290 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 277, + 505, + 291 + ], + "score": 1.0, + "content": ". When using this loss, the cost-augmented inference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "network is actually a test-time inference network, because the cost is always zero, so using this loss", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 372, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 372, + 313 + ], + "score": 1.0, + "content": "may lessen the need to retune the inference network after training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 104, + 316, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 159, + 330 + ], + "score": 1.0, + "content": "When we fix", + "type": "text" + }, + { + "bbox": [ + 160, + 316, + 242, + 329 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 316, + 507, + 330 + ], + "score": 1.0, + "content": ", then margin-rescaled hinge is equivalent to slack-rescaled hinge.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 326, + 159, + 340 + ], + "score": 1.0, + "content": "While using", + "type": "text" + }, + { + "bbox": [ + 159, + 329, + 191, + 338 + ], + "score": 0.89, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "is not useful in standard max-margin training with exact argmax inference", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 504, + 351 + ], + "score": 1.0, + "content": "(because the cost has no impact on optimization when fixed to a positive constant), it is potentially", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 350, + 368, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 335, + 362 + ], + "score": 1.0, + "content": "useful in our setting. Consider our SPEN objectives with", + "type": "text" + }, + { + "bbox": [ + 335, + 350, + 363, + 360 + ], + "score": 0.9, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 350, + 368, + 362 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 364, + 385, + 379 + ], + "lines": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "spans": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "score": 0.94, + "content": "[ 1 - E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb A } _ { \\Phi } ( { \\pmb x } _ { i } ) ) + E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "e57faeecede0e0329d0b02faa574cae0a413eb640a5c47c7dca92999b9f2e2e6.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 426, + 395 + ], + "score": 1.0, + "content": "There will always be a nonzero difference between the two energies because", + "type": "text" + }, + { + "bbox": [ + 426, + 382, + 460, + 394 + ], + "score": 0.92, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "will never", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 236, + 406 + ], + "score": 1.0, + "content": "exactly equal the discrete vector", + "type": "text" + }, + { + "bbox": [ + 237, + 394, + 248, + 405 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\mathcal { Y } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 393, + 506, + 406 + ], + "score": 1.0, + "content": ". Since there is no explicit minimization over all discrete vectors", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 107, + 406, + 114, + 416 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 404, + 505, + 417 + ], + "score": 1.0, + "content": ", this case is more similar to a “contrastive” hinge loss which seeks to make the energy of the true", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 415, + 458, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 458, + 427 + ], + "score": 1.0, + "content": "output lower than the energy of a particular “negative sample” by a margin of at least 1.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 506, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "In our experiments, we will compare four hinge losses for training SPENs: margin-rescaled (Eq. (7)),", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 482, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 345, + 455 + ], + "score": 1.0, + "content": "slack-rescaled (Eq. (10)), perceptron (margin-rescaled with", + "type": "text" + }, + { + "bbox": [ + 345, + 443, + 373, + 453 + ], + "score": 0.88, + "content": "\\triangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 442, + 446, + 455 + ], + "score": 1.0, + "content": "), and contrastive", + "type": "text" + }, + { + "bbox": [ + 446, + 443, + 475, + 453 + ], + "score": 0.86, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 442, + 482, + 455 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 470, + 389, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 469, + 390, + 484 + ], + "spans": [ + { + "bbox": [ + 104, + 469, + 390, + 484 + ], + "score": 1.0, + "content": "5 IMPROVING TRAINING FOR INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 494, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "We found that the alternating nature of the optimization led to difficulties during training. Similar", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "observations have been noted about other alternative optimization settings, especially those underlying", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "generative adversarial networks (Salimans et al., 2016). Below we describe several techniques we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 528, + 467, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 467, + 540 + ], + "score": 1.0, + "content": "found to help stabilize training, which are optional terms added to the objective in Eq. (8).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 493, + 556 + ], + "lines": [ + { + "bbox": [ + 107, + 542, + 492, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 545, + 119, + 555 + ], + "score": 0.83, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 542, + 221, + 558 + ], + "score": 1.0, + "content": "Regularization: We use", + "type": "text" + }, + { + "bbox": [ + 221, + 545, + 233, + 555 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 542, + 392, + 558 + ], + "score": 1.0, + "content": "regularization, adding the penalty term", + "type": "text" + }, + { + "bbox": [ + 392, + 543, + 415, + 556 + ], + "score": 0.92, + "content": "\\| \\Phi \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 542, + 480, + 558 + ], + "score": 1.0, + "content": "with coefficient", + "type": "text" + }, + { + "bbox": [ + 480, + 544, + 492, + 555 + ], + "score": 0.87, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 361, + 574 + ], + "score": 1.0, + "content": "Entropy Regularization: We add an entropy-based regularizer", + "type": "text" + }, + { + "bbox": [ + 361, + 560, + 421, + 573 + ], + "score": 0.92, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "defined for the prob-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 303, + 585 + ], + "score": 1.0, + "content": "lem under consideration. For MLC, the output of", + "type": "text" + }, + { + "bbox": [ + 304, + 572, + 334, + 584 + ], + "score": 0.93, + "content": "\\mathbf { A } _ { \\Phi } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "is a vector of scalars in [0, 1], one for each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 437, + 596 + ], + "score": 1.0, + "content": "label, where the scalar is interpreted as a label probability. The entropy regularizer", + "type": "text" + }, + { + "bbox": [ + 438, + 584, + 461, + 594 + ], + "score": 0.37, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "is the sum", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 594, + 504, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 496, + 607 + ], + "score": 1.0, + "content": "of the entropies over these label binary distributions. For sequence labeling, where the length of", + "type": "text" + }, + { + "bbox": [ + 496, + 596, + 504, + 604 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 604, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 115, + 618 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 605, + 126, + 615 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 604, + 208, + 618 + ], + "score": 1.0, + "content": "and where there are", + "type": "text" + }, + { + "bbox": [ + 209, + 605, + 217, + 615 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 604, + 329, + 618 + ], + "score": 1.0, + "content": "unique labels, the output of", + "type": "text" + }, + { + "bbox": [ + 330, + 605, + 360, + 617 + ], + "score": 0.93, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 604, + 406, + 618 + ], + "score": 1.0, + "content": "is a length-", + "type": "text" + }, + { + "bbox": [ + 406, + 605, + 416, + 615 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 604, + 496, + 618 + ], + "score": 1.0, + "content": "sequence of length-", + "type": "text" + }, + { + "bbox": [ + 496, + 606, + 504, + 615 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 615, + 504, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 336, + 630 + ], + "score": 1.0, + "content": "vectors, each of which represents the distribution over the", + "type": "text" + }, + { + "bbox": [ + 337, + 617, + 345, + 626 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 615, + 443, + 630 + ], + "score": 1.0, + "content": "labels at that position in", + "type": "text" + }, + { + "bbox": [ + 443, + 618, + 451, + 626 + ], + "score": 0.66, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 615, + 480, + 630 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 480, + 617, + 504, + 627 + ], + "score": 0.85, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 627, + 439, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 439, + 640 + ], + "score": 1.0, + "content": "is the sum of entropies of these label distributions across positions in the sequence.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 503, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 221, + 656 + ], + "score": 1.0, + "content": "When tuning the coefficient", + "type": "text" + }, + { + "bbox": [ + 222, + 644, + 233, + 655 + ], + "score": 0.87, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 643, + 504, + 656 + ], + "score": 1.0, + "content": "for this regularizer, we consider both positive and negative values,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 654, + 437, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 437, + 667 + ], + "score": 1.0, + "content": "permitting us to favor either low- or high-entropy distributions as the task prefers.1", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 422, + 686 + ], + "score": 1.0, + "content": "Local Cross Entropy Loss: We add a local (non-structured) cross entropy", + "type": "text" + }, + { + "bbox": [ + 422, + 671, + 505, + 684 + ], + "score": 0.9, + "content": "\\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } )", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 680, + 507, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 507, + 698 + ], + "score": 1.0, + "content": "defined for the problem under consideration. We only experiment with this loss for sequence labeling.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 699, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 119, + 699, + 505, + 714 + ], + "score": 1.0, + "content": "1For MLC, encouraging lower entropy distributions worked better, while for sequence labeling, higher", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "entropy was better, similar to the effect found by Pereyra et al. (2017). Further research is required to gain", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 438, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 438, + 733 + ], + "score": 1.0, + "content": "understanding of the role of entropy regularization in such alternating optimization settings.", + "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, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 128 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 140, + 276, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 278, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 278, + 153 + ], + "score": 1.0, + "content": "4.2 VARIATIONS AND SPECIAL CASES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 506, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "score": 1.0, + "content": "This approach also permits us to use large-margin structured prediction with slack rescaling (Tsochan-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "taridis et al., 2005). Slack rescaling can yield higher accuracies than margin rescaling, but requires", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 181, + 507, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 507, + 195 + ], + "score": 1.0, + "content": "“cost-scaled” inference during training which is intractable for many classes of output structures.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 206 + ], + "score": 1.0, + "content": "However, we can use our notion of inference networks to circumvent this tractability issue and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "approximately optimize the slack-rescaled hinge loss, yielding the following optimization problem:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 161, + 507, + 217 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 218, + 455, + 247 + ], + "lines": [ + { + "bbox": [ + 155, + 218, + 455, + 247 + ], + "spans": [ + { + "bbox": [ + 155, + 218, + 455, + 247 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\mathbf { x } _ { i } , \\mathbf { y } _ { i } \\rangle \\in \\mathcal { D } } \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) , \\mathbf { y } _ { i } ) [ 1 - E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) ) + E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "c38a7125f1caf5dee8eb0dcc6338c0a0ca5a1baa5f9921e518f50e97c7405cd5.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 155, + 218, + 455, + 227.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 227.66666666666666, + 455, + 237.33333333333331 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 237.33333333333331, + 455, + 246.99999999999997 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 250, + 505, + 262 + ], + "lines": [ + { + "bbox": [ + 107, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 249, + 467, + 263 + ], + "score": 1.0, + "content": "Using the same argument as above, we can also break this into alternating optimization of", + "type": "text" + }, + { + "bbox": [ + 467, + 250, + 475, + 260 + ], + "score": 0.84, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 249, + 493, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 494, + 250, + 502, + 260 + ], + "score": 0.82, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 249, + 506, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 107, + 249, + 506, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "We can optimize a structured perceptron (Collins, 2002) version by using the margin-rescaled hinge", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 206, + 291 + ], + "score": 1.0, + "content": "loss (Eq. (7)) and fixing", + "type": "text" + }, + { + "bbox": [ + 206, + 278, + 288, + 290 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 277, + 505, + 291 + ], + "score": 1.0, + "content": ". When using this loss, the cost-augmented inference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "network is actually a test-time inference network, because the cost is always zero, so using this loss", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 372, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 372, + 313 + ], + "score": 1.0, + "content": "may lessen the need to retune the inference network after training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 266, + 505, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 104, + 316, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 159, + 330 + ], + "score": 1.0, + "content": "When we fix", + "type": "text" + }, + { + "bbox": [ + 160, + 316, + 242, + 329 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 316, + 507, + 330 + ], + "score": 1.0, + "content": ", then margin-rescaled hinge is equivalent to slack-rescaled hinge.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 326, + 159, + 340 + ], + "score": 1.0, + "content": "While using", + "type": "text" + }, + { + "bbox": [ + 159, + 329, + 191, + 338 + ], + "score": 0.89, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "is not useful in standard max-margin training with exact argmax inference", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 504, + 351 + ], + "score": 1.0, + "content": "(because the cost has no impact on optimization when fixed to a positive constant), it is potentially", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 350, + 368, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 335, + 362 + ], + "score": 1.0, + "content": "useful in our setting. Consider our SPEN objectives with", + "type": "text" + }, + { + "bbox": [ + 335, + 350, + 363, + 360 + ], + "score": 0.9, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 350, + 368, + 362 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 316, + 507, + 362 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 364, + 385, + 379 + ], + "lines": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "spans": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "score": 0.94, + "content": "[ 1 - E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb A } _ { \\Phi } ( { \\pmb x } _ { i } ) ) + E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb y } _ { i } ) ] _ { + }", + "type": "interline_equation", + "image_path": "e57faeecede0e0329d0b02faa574cae0a413eb640a5c47c7dca92999b9f2e2e6.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 226, + 364, + 385, + 379 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 426, + 395 + ], + "score": 1.0, + "content": "There will always be a nonzero difference between the two energies because", + "type": "text" + }, + { + "bbox": [ + 426, + 382, + 460, + 394 + ], + "score": 0.92, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "will never", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 236, + 406 + ], + "score": 1.0, + "content": "exactly equal the discrete vector", + "type": "text" + }, + { + "bbox": [ + 237, + 394, + 248, + 405 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\mathcal { Y } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 393, + 506, + 406 + ], + "score": 1.0, + "content": ". Since there is no explicit minimization over all discrete vectors", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 107, + 406, + 114, + 416 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 404, + 505, + 417 + ], + "score": 1.0, + "content": ", this case is more similar to a “contrastive” hinge loss which seeks to make the energy of the true", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 415, + 458, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 458, + 427 + ], + "score": 1.0, + "content": "output lower than the energy of a particular “negative sample” by a margin of at least 1.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 381, + 506, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 506, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "In our experiments, we will compare four hinge losses for training SPENs: margin-rescaled (Eq. (7)),", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 482, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 345, + 455 + ], + "score": 1.0, + "content": "slack-rescaled (Eq. (10)), perceptron (margin-rescaled with", + "type": "text" + }, + { + "bbox": [ + 345, + 443, + 373, + 453 + ], + "score": 0.88, + "content": "\\triangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 442, + 446, + 455 + ], + "score": 1.0, + "content": "), and contrastive", + "type": "text" + }, + { + "bbox": [ + 446, + 443, + 475, + 453 + ], + "score": 0.86, + "content": "\\triangle = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 442, + 482, + 455 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 432, + 506, + 455 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 470, + 389, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 469, + 390, + 484 + ], + "spans": [ + { + "bbox": [ + 104, + 469, + 390, + 484 + ], + "score": 1.0, + "content": "5 IMPROVING TRAINING FOR INFERENCE NETWORKS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 494, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "We found that the alternating nature of the optimization led to difficulties during training. Similar", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "observations have been noted about other alternative optimization settings, especially those underlying", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "generative adversarial networks (Salimans et al., 2016). Below we describe several techniques we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 528, + 467, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 467, + 540 + ], + "score": 1.0, + "content": "found to help stabilize training, which are optional terms added to the objective in Eq. (8).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 494, + 506, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 493, + 556 + ], + "lines": [ + { + "bbox": [ + 107, + 542, + 492, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 545, + 119, + 555 + ], + "score": 0.83, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 542, + 221, + 558 + ], + "score": 1.0, + "content": "Regularization: We use", + "type": "text" + }, + { + "bbox": [ + 221, + 545, + 233, + 555 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 542, + 392, + 558 + ], + "score": 1.0, + "content": "regularization, adding the penalty term", + "type": "text" + }, + { + "bbox": [ + 392, + 543, + 415, + 556 + ], + "score": 0.92, + "content": "\\| \\Phi \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 542, + 480, + 558 + ], + "score": 1.0, + "content": "with coefficient", + "type": "text" + }, + { + "bbox": [ + 480, + 544, + 492, + 555 + ], + "score": 0.87, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 107, + 542, + 492, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 361, + 574 + ], + "score": 1.0, + "content": "Entropy Regularization: We add an entropy-based regularizer", + "type": "text" + }, + { + "bbox": [ + 361, + 560, + 421, + 573 + ], + "score": 0.92, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "defined for the prob-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 303, + 585 + ], + "score": 1.0, + "content": "lem under consideration. For MLC, the output of", + "type": "text" + }, + { + "bbox": [ + 304, + 572, + 334, + 584 + ], + "score": 0.93, + "content": "\\mathbf { A } _ { \\Phi } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "is a vector of scalars in [0, 1], one for each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 437, + 596 + ], + "score": 1.0, + "content": "label, where the scalar is interpreted as a label probability. The entropy regularizer", + "type": "text" + }, + { + "bbox": [ + 438, + 584, + 461, + 594 + ], + "score": 0.37, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "is the sum", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 594, + 504, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 496, + 607 + ], + "score": 1.0, + "content": "of the entropies over these label binary distributions. For sequence labeling, where the length of", + "type": "text" + }, + { + "bbox": [ + 496, + 596, + 504, + 604 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 604, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 115, + 618 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 605, + 126, + 615 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 604, + 208, + 618 + ], + "score": 1.0, + "content": "and where there are", + "type": "text" + }, + { + "bbox": [ + 209, + 605, + 217, + 615 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 604, + 329, + 618 + ], + "score": 1.0, + "content": "unique labels, the output of", + "type": "text" + }, + { + "bbox": [ + 330, + 605, + 360, + 617 + ], + "score": 0.93, + "content": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 604, + 406, + 618 + ], + "score": 1.0, + "content": "is a length-", + "type": "text" + }, + { + "bbox": [ + 406, + 605, + 416, + 615 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 604, + 496, + 618 + ], + "score": 1.0, + "content": "sequence of length-", + "type": "text" + }, + { + "bbox": [ + 496, + 606, + 504, + 615 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 615, + 504, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 336, + 630 + ], + "score": 1.0, + "content": "vectors, each of which represents the distribution over the", + "type": "text" + }, + { + "bbox": [ + 337, + 617, + 345, + 626 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 615, + 443, + 630 + ], + "score": 1.0, + "content": "labels at that position in", + "type": "text" + }, + { + "bbox": [ + 443, + 618, + 451, + 626 + ], + "score": 0.66, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 615, + 480, + 630 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 480, + 617, + 504, + 627 + ], + "score": 0.85, + "content": "\\mathrm { l o s s } _ { \\mathrm { H } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 627, + 439, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 439, + 640 + ], + "score": 1.0, + "content": "is the sum of entropies of these label distributions across positions in the sequence.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 560, + 506, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 503, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 221, + 656 + ], + "score": 1.0, + "content": "When tuning the coefficient", + "type": "text" + }, + { + "bbox": [ + 222, + 644, + 233, + 655 + ], + "score": 0.87, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 643, + 504, + 656 + ], + "score": 1.0, + "content": "for this regularizer, we consider both positive and negative values,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 654, + 437, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 437, + 667 + ], + "score": 1.0, + "content": "permitting us to favor either low- or high-entropy distributions as the task prefers.1", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 643, + 504, + 667 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 422, + 686 + ], + "score": 1.0, + "content": "Local Cross Entropy Loss: We add a local (non-structured) cross entropy", + "type": "text" + }, + { + "bbox": [ + 422, + 671, + 505, + 684 + ], + "score": 0.9, + "content": "\\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } )", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 680, + 507, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 507, + 698 + ], + "score": 1.0, + "content": "defined for the problem under consideration. We only experiment with this loss for sequence labeling.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 670, + 507, + 698 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "It is the sum of the label cross entropy losses over all positions in the sequence. This loss provides", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "more explicit feedback to the inference network, helping the optimization procedure to find a solution", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "that minimizes the energy function while also correctly classifying individual labels. It can also be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 321, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 321, + 127 + ], + "score": 1.0, + "content": "viewed as a multi-task loss for the inference network.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 418, + 146 + ], + "score": 1.0, + "content": "Regularization Toward Pretrained Inference Network: We add the penalty", + "type": "text" + }, + { + "bbox": [ + 419, + 132, + 464, + 144 + ], + "score": 0.94, + "content": "\\lVert \\Phi - \\Phi _ { 0 } \\rVert _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 131, + 491, + 146 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 491, + 132, + 504, + 144 + ], + "score": 0.88, + "content": "\\Phi _ { 0 }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 479, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 468, + 157 + ], + "score": 1.0, + "content": "is a pretrained network, e.g., a local classifier trained to independently predict each part of", + "type": "text" + }, + { + "bbox": [ + 468, + 146, + 475, + 155 + ], + "score": 0.81, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 142, + 479, + 157 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 413, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 413, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 413, + 174 + ], + "score": 1.0, + "content": "Each additional term has its own tunable hyperparameter. Finally we obtain:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 197, + 466, + 237 + ], + "lines": [ + { + "bbox": [ + 145, + 197, + 466, + 237 + ], + "spans": [ + { + "bbox": [ + 145, + 197, + 466, + 237 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\hat { \\Phi } \\underset { \\Phi } { \\operatorname { a r g m a x } } \\ [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\boldsymbol { y } _ { i } ) ] _ { + } - \\lambda _ { 1 } \\| \\Phi \\| _ { 2 } ^ { 2 } } \\\\ { + \\lambda _ { 2 } \\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) - \\lambda _ { 3 } \\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - \\lambda _ { 4 } \\| \\Phi - \\Phi _ { 0 } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "fc64f56ebe399567e7f1d7d37808748ed8b7c86a56715673a34127347f2f0f18.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 145, + 197, + 466, + 210.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 210.33333333333334, + 466, + 223.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 223.66666666666669, + 466, + 237.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 273, + 211, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 213, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 213, + 288 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "Our methods are reminiscent of other alternating optimization problems like that underlying generative", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "adversarial networks (GANs; Goodfellow et al. 2014). GANs are based on a minimax game and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 316, + 348 + ], + "score": 1.0, + "content": "have a value function that one agent (a discriminator", + "type": "text" + }, + { + "bbox": [ + 317, + 335, + 326, + 345 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 334, + 506, + 348 + ], + "score": 1.0, + "content": ") seeks to maximize and another (a generator", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 116, + 356 + ], + "score": 0.56, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 345, + 505, + 359 + ], + "score": 1.0, + "content": ") seeks to minimize. By their analysis, a log loss discriminator converges to a degenerate uniform", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "solution. When using hinge loss, we can get a non-degenerate discriminator while matching the data", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "distribution (Dai et al., 2017; Zhao et al., 2016). Our formulation is closer to this hinge loss version", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 380, + 158, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 158, + 390 + ], + "score": 1.0, + "content": "of the GAN.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "Our approach is also related to knowledge distillation (Ba & Caruana, 2014; Hinton et al., 2015),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "which refers to strategies in which one model (a “student”) is trained to mimic another (a “teacher”).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "Typically, the teacher is a larger, more accurate model but which is too computationally expensive to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "use at test time. Urban et al. (2016) train shallow networks using image classification data labeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "by an ensemble of deep teacher nets. Geras et al. (2016) train a convolutional network to mimic an", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "LSTM for speech recognition. Others have explored knowledge distillation for sequence-to-sequence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 462, + 368, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 368, + 474 + ], + "score": 1.0, + "content": "learning (Kim & Rush, 2016) and parsing (Kuncoro et al., 2016).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "Since we train a single inference network for an entire dataset, our approach is also related to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "“amortized inference” (Srikumar et al., 2012; Gershman & Goodman, 2014; Paige & Wood, 2016;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "Chang et al., 2015). Such methods precompute or save solutions to subproblems for faster overall", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "computation. Our inference networks likely devote more modeling capacity to the most frequent", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "substructures in the data. A kind of inference network is used in variational autoencoders (Kingma &", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 532, + 395, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 395, + 546 + ], + "score": 1.0, + "content": "Welling, 2013) to approximate posterior inference in generative models.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 506, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "Our methods are also related to work in structured prediction that seeks to approximate structured", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "models with factorized ones, e.g., mean-field approximations in graphical models (Koller & Friedman,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "2009; Krähenbühl & Koltun, 2011). Like our use of inference networks, there have been efforts in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 507, + 596 + ], + "score": 1.0, + "content": "designing differentiable approximations of combinatorial search procedures (Martins & Kreutzer,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 593, + 507, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 507, + 607 + ], + "score": 1.0, + "content": "2017; Goyal et al., 2018) and structured losses for training with them (Wiseman & Rush, 2016).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "Since we relax discrete output variables to be continuous, there is also a connection to recent work", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "that focuses on structured prediction with continuous valued output variables (Wang et al., 2016).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "They also propose a formulation that yields an alternating optimization problem, but it is based on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 183, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 183, + 649 + ], + "score": 1.0, + "content": "proximal methods.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "There are other settings in which gradient descent is used for inference, e.g., image generation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "applications like DeepDream (Mordvintsev et al., 2015) and neural style transfer (Gatys et al., 2015),", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "as well as machine translation (Hoang et al., 2017). In these and related settings, gradient descent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "has started to be replaced by inference networks, especially for image transformation tasks (Johnson", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "et al., 2016; Li & Wand, 2016). Our results below provide more evidence for making this transition.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "An alternative to what we pursue here would be to obtain an easier convex optimization problem for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 362, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 362, + 732 + ], + "score": 1.0, + "content": "inference via input convex neural networks (Amos et al., 2017).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "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": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "It is the sum of the label cross entropy losses over all positions in the sequence. This loss provides", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "more explicit feedback to the inference network, helping the optimization procedure to find a solution", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "that minimizes the energy function while also correctly classifying individual labels. It can also be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 321, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 321, + 127 + ], + "score": 1.0, + "content": "viewed as a multi-task loss for the inference network.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 83, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 418, + 146 + ], + "score": 1.0, + "content": "Regularization Toward Pretrained Inference Network: We add the penalty", + "type": "text" + }, + { + "bbox": [ + 419, + 132, + 464, + 144 + ], + "score": 0.94, + "content": "\\lVert \\Phi - \\Phi _ { 0 } \\rVert _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 131, + 491, + 146 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 491, + 132, + 504, + 144 + ], + "score": 0.88, + "content": "\\Phi _ { 0 }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 479, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 468, + 157 + ], + "score": 1.0, + "content": "is a pretrained network, e.g., a local classifier trained to independently predict each part of", + "type": "text" + }, + { + "bbox": [ + 468, + 146, + 475, + 155 + ], + "score": 0.81, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 142, + 479, + 157 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 131, + 504, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 413, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 413, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 413, + 174 + ], + "score": 1.0, + "content": "Each additional term has its own tunable hyperparameter. Finally we obtain:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 158, + 413, + 174 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 197, + 466, + 237 + ], + "lines": [ + { + "bbox": [ + 145, + 197, + 466, + 237 + ], + "spans": [ + { + "bbox": [ + 145, + 197, + 466, + 237 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\hat { \\Phi } \\underset { \\Phi } { \\operatorname { a r g m a x } } \\ [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\boldsymbol { y } _ { i } ) ] _ { + } - \\lambda _ { 1 } \\| \\Phi \\| _ { 2 } ^ { 2 } } \\\\ { + \\lambda _ { 2 } \\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) - \\lambda _ { 3 } \\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - \\lambda _ { 4 } \\| \\Phi - \\Phi _ { 0 } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "fc64f56ebe399567e7f1d7d37808748ed8b7c86a56715673a34127347f2f0f18.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 145, + 197, + 466, + 210.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 210.33333333333334, + 466, + 223.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 223.66666666666669, + 466, + 237.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 273, + 211, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 213, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 213, + 288 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "Our methods are reminiscent of other alternating optimization problems like that underlying generative", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "adversarial networks (GANs; Goodfellow et al. 2014). GANs are based on a minimax game and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 316, + 348 + ], + "score": 1.0, + "content": "have a value function that one agent (a discriminator", + "type": "text" + }, + { + "bbox": [ + 317, + 335, + 326, + 345 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 334, + 506, + 348 + ], + "score": 1.0, + "content": ") seeks to maximize and another (a generator", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 116, + 356 + ], + "score": 0.56, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 345, + 505, + 359 + ], + "score": 1.0, + "content": ") seeks to minimize. By their analysis, a log loss discriminator converges to a degenerate uniform", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "solution. When using hinge loss, we can get a non-degenerate discriminator while matching the data", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "distribution (Dai et al., 2017; Zhao et al., 2016). Our formulation is closer to this hinge loss version", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 380, + 158, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 158, + 390 + ], + "score": 1.0, + "content": "of the GAN.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 312, + 506, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "Our approach is also related to knowledge distillation (Ba & Caruana, 2014; Hinton et al., 2015),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "which refers to strategies in which one model (a “student”) is trained to mimic another (a “teacher”).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "Typically, the teacher is a larger, more accurate model but which is too computationally expensive to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "use at test time. Urban et al. (2016) train shallow networks using image classification data labeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "by an ensemble of deep teacher nets. Geras et al. (2016) train a convolutional network to mimic an", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "LSTM for speech recognition. Others have explored knowledge distillation for sequence-to-sequence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 462, + 368, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 368, + 474 + ], + "score": 1.0, + "content": "learning (Kim & Rush, 2016) and parsing (Kuncoro et al., 2016).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 396, + 506, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "Since we train a single inference network for an entire dataset, our approach is also related to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "“amortized inference” (Srikumar et al., 2012; Gershman & Goodman, 2014; Paige & Wood, 2016;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "Chang et al., 2015). Such methods precompute or save solutions to subproblems for faster overall", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "computation. Our inference networks likely devote more modeling capacity to the most frequent", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "substructures in the data. A kind of inference network is used in variational autoencoders (Kingma &", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 532, + 395, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 395, + 546 + ], + "score": 1.0, + "content": "Welling, 2013) to approximate posterior inference in generative models.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 478, + 506, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 506, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "Our methods are also related to work in structured prediction that seeks to approximate structured", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "models with factorized ones, e.g., mean-field approximations in graphical models (Koller & Friedman,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "2009; Krähenbühl & Koltun, 2011). Like our use of inference networks, there have been efforts in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 507, + 596 + ], + "score": 1.0, + "content": "designing differentiable approximations of combinatorial search procedures (Martins & Kreutzer,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 593, + 507, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 507, + 607 + ], + "score": 1.0, + "content": "2017; Goyal et al., 2018) and structured losses for training with them (Wiseman & Rush, 2016).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "Since we relax discrete output variables to be continuous, there is also a connection to recent work", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "that focuses on structured prediction with continuous valued output variables (Wang et al., 2016).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "They also propose a formulation that yields an alternating optimization problem, but it is based on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 183, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 183, + 649 + ], + "score": 1.0, + "content": "proximal methods.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 550, + 507, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "There are other settings in which gradient descent is used for inference, e.g., image generation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "applications like DeepDream (Mordvintsev et al., 2015) and neural style transfer (Gatys et al., 2015),", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "as well as machine translation (Hoang et al., 2017). In these and related settings, gradient descent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "has started to be replaced by inference networks, especially for image transformation tasks (Johnson", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "et al., 2016; Li & Wand, 2016). Our results below provide more evidence for making this transition.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "An alternative to what we pursue here would be to obtain an easier convex optimization problem for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 362, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 362, + 732 + ], + "score": 1.0, + "content": "inference via input convex neural networks (Amos et al., 2017).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 654, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 190, + 104, + 421, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 142, + 89, + 467, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 88, + 469, + 102 + ], + "spans": [ + { + "bbox": [ + 142, + 88, + 469, + 102 + ], + "score": 1.0, + "content": "Table 1: Test F1 when comparing methods on multi-label classification datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 190, + 104, + 421, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 104, + 421, + 158 + ], + "spans": [ + { + "bbox": [ + 190, + 104, + 421, + 158 + ], + "score": 0.927, + "html": "
BibtexBookmarksDeliciousavg.
MLP38.933.837.836.8
SPEN (BM16)42.234.437.538.0
SPEN (E2E)38.133.934.435.5
SPEN (InfNet)42.237.637.539.1
", + "type": "table", + "image_path": "8b72a4945f4a7f3180daa392e3b744eef87f57e685021a59c525807ba1899d6a.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 104, + 421, + 117.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 190, + 117.5, + 421, + 131.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 190, + 131.0, + 421, + 144.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 190, + 144.5, + 421, + 158.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.25 + }, + { + "type": "title", + "bbox": [ + 108, + 182, + 200, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 201, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 201, + 196 + ], + "score": 1.0, + "content": "7 EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "In Sec. 7.1 we compare our approach to previous work on training SPENs for MLC. We compare", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "accuracy and speed, finding our approach to outperform prior work. We then perform experiments", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 230, + 269, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 269, + 241 + ], + "score": 1.0, + "content": "with sequence labeling tasks in Sec. 7.2.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 255, + 267, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 269, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 269, + 268 + ], + "score": 1.0, + "content": "7.1 MULTI-LABEL CLASSIFICATION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 506, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 288 + ], + "score": 1.0, + "content": "We use the MLC datasets used by Belanger & McCallum (2016): Bibtex, Delicious, and Bookmarks.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "Dataset statistics are shown in Table 7 in the Appendix. For Bibtex and Delicious, we follow Belanger", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "score": 1.0, + "content": "and McCallum and tune the hyperparameters using a different sampling of train and test data, then use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "score": 1.0, + "content": "the standard train/test split for final experimentation using the tuned hyperparameters. For Bookmarks,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "we use the same train/dev/test split as (Belanger & McCallum, 2016). For evaluation, we report the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 331, + 304, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 304, + 344 + ], + "score": 1.0, + "content": "example averaged (macro averaged) F1 measure.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "We use the SPEN for MLC described in Section 2 and also used by Belanger & McCallum (2016). For", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 241, + 372 + ], + "score": 1.0, + "content": "the feature representation network", + "type": "text" + }, + { + "bbox": [ + 242, + 359, + 264, + 371 + ], + "score": 0.91, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 358, + 506, + 372 + ], + "score": 1.0, + "content": ", we use feed-forward networks with two hidden layers, using", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "their same layer widths: 150 for Bibtex/Bookmarks and 250 for Delicious. We pretrain the feature", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 145, + 394 + ], + "score": 1.0, + "content": "networks", + "type": "text" + }, + { + "bbox": [ + 146, + 381, + 168, + 393 + ], + "score": 0.92, + "content": "F ( { \\dot { \\mathbf { x } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "by minimizing independent-label cross entropy for 10 epochs using Adam (Kingma", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "& Ba, 2014) with learning rate 0.001. While training SPENs, we only update the parameters of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 173, + 416 + ], + "score": 1.0, + "content": "energy function", + "type": "text" + }, + { + "bbox": [ + 174, + 403, + 189, + 414 + ], + "score": 0.69, + "content": "( \\Theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 403, + 299, + 416 + ], + "score": 1.0, + "content": "and the inference network", + "type": "text" + }, + { + "bbox": [ + 299, + 403, + 314, + 414 + ], + "score": 0.73, + "content": "( \\Phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 403, + 482, + 416 + ], + "score": 1.0, + "content": ", keeping the feature network parameters", + "type": "text" + }, + { + "bbox": [ + 482, + 403, + 505, + 415 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 414, + 358, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 318, + 426 + ], + "score": 1.0, + "content": "fixed. We use Adam with learning rate 0.001 to train", + "type": "text" + }, + { + "bbox": [ + 319, + 415, + 328, + 424 + ], + "score": 0.81, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 414, + 345, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 415, + 354, + 424 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 414, + 358, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "The inference networks are feed-forward networks with two hidden layers, using the same archi-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 238, + 455 + ], + "score": 1.0, + "content": "tectures as the feature networks", + "type": "text" + }, + { + "bbox": [ + 238, + 442, + 261, + 453 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 441, + 505, + 455 + ], + "score": 1.0, + "content": ". This permits us to initialize inference network parameters", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 115, + 463 + ], + "score": 0.79, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "using pretrained feature network parameters. For the output, we use an affine transformation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 426, + 477 + ], + "score": 1.0, + "content": "layer with a sigmoid nonlinearity function, so the output values are in the range", + "type": "text" + }, + { + "bbox": [ + 426, + 464, + 448, + 475 + ], + "score": 0.89, + "content": "( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ". We interpret", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "each value as the probability of predicting the corresponding label. We obtain discrete predictions", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 234, + 498 + ], + "score": 1.0, + "content": "by thresholding at a threshold", + "type": "text" + }, + { + "bbox": [ + 234, + 487, + 241, + 496 + ], + "score": 0.73, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "tuned to maximize F1 on the development data. We add three", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 337, + 510 + ], + "score": 1.0, + "content": "terms to the inference network objective from Section 5:", + "type": "text" + }, + { + "bbox": [ + 337, + 497, + 350, + 507 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "regularization, entropy regularization,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "and regularization toward the pretrained feature network. Margin rescaling and slack rescaling use", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 518, + 455, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 140, + 532 + ], + "score": 1.0, + "content": "squared", + "type": "text" + }, + { + "bbox": [ + 140, + 519, + 152, + 529 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 518, + 203, + 532 + ], + "score": 1.0, + "content": "distance for", + "type": "text" + }, + { + "bbox": [ + 203, + 519, + 213, + 528 + ], + "score": 0.8, + "content": "\\triangle", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 518, + 455, + 532 + ], + "score": 1.0, + "content": ". Additional details are provided in Sec. 9.1 in the appendix.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "Comparison to Prior Work. Table 1 shows results comparing to prior work. The MLP and “SPEN", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "(BM16)” baseline results are taken from (Belanger & McCallum, 2016). We obtained the “SPEN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "(E2E)” (Belanger et al., 2017) results by running the code available from the authors on these datasets.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "This method constructs a recurrent neural network that performs gradient-based minimization of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 196, + 592 + ], + "score": 1.0, + "content": "energy with respect to", + "type": "text" + }, + { + "bbox": [ + 196, + 581, + 204, + 591 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 579, + 506, + 592 + ], + "score": 1.0, + "content": ". They noted in their software release that, while this method is more stable,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 590, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 506, + 602 + ], + "score": 1.0, + "content": "it is prone to overfitting and actually performs worse than the original SPEN. We indeed find this to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 601, + 426, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 426, + 614 + ], + "score": 1.0, + "content": "be the case, as SPEN (E2E) underperforms SPEN (BM16) on all three datasets.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "score": 1.0, + "content": "Our method (“SPEN (InfNet)”) achieves the best average performance across the three datasets.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "It performs especially well on Bookmarks, which is the largest of the three. Our results use the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "contrastive hinge loss and retune the inference network on the development data after the energy is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "trained; these decisions were made based on the tuning described in Sec. 9.1, but all four hinge losses", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 663, + 227, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 227, + 675 + ], + "score": 1.0, + "content": "led to similarly strong results.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "score": 1.0, + "content": "Speed Comparison. Table 2 compares training and test-time inference speed among the different", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "methods. We only report speeds of methods that we ran.2 The SPEN (E2E) times were obtained", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "2The MLP F1 scores above were taken from Belanger & McCallum (2016), but the MLP timing results", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 388, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 388, + 732 + ], + "score": 1.0, + "content": "reported in Table 2 are from our own experimental replication of their results.", + "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, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 190, + 104, + 421, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 142, + 89, + 467, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 88, + 469, + 102 + ], + "spans": [ + { + "bbox": [ + 142, + 88, + 469, + 102 + ], + "score": 1.0, + "content": "Table 1: Test F1 when comparing methods on multi-label classification datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 190, + 104, + 421, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 104, + 421, + 158 + ], + "spans": [ + { + "bbox": [ + 190, + 104, + 421, + 158 + ], + "score": 0.927, + "html": "
BibtexBookmarksDeliciousavg.
MLP38.933.837.836.8
SPEN (BM16)42.234.437.538.0
SPEN (E2E)38.133.934.435.5
SPEN (InfNet)42.237.637.539.1
", + "type": "table", + "image_path": "8b72a4945f4a7f3180daa392e3b744eef87f57e685021a59c525807ba1899d6a.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 104, + 421, + 117.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 190, + 117.5, + 421, + 131.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 190, + 131.0, + 421, + 144.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 190, + 144.5, + 421, + 158.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.25 + }, + { + "type": "title", + "bbox": [ + 108, + 182, + 200, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 201, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 201, + 196 + ], + "score": 1.0, + "content": "7 EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "In Sec. 7.1 we compare our approach to previous work on training SPENs for MLC. We compare", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "accuracy and speed, finding our approach to outperform prior work. We then perform experiments", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 230, + 269, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 269, + 241 + ], + "score": 1.0, + "content": "with sequence labeling tasks in Sec. 7.2.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 207, + 505, + 241 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 255, + 267, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 269, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 269, + 268 + ], + "score": 1.0, + "content": "7.1 MULTI-LABEL CLASSIFICATION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 506, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 288 + ], + "score": 1.0, + "content": "We use the MLC datasets used by Belanger & McCallum (2016): Bibtex, Delicious, and Bookmarks.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "Dataset statistics are shown in Table 7 in the Appendix. For Bibtex and Delicious, we follow Belanger", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "score": 1.0, + "content": "and McCallum and tune the hyperparameters using a different sampling of train and test data, then use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "score": 1.0, + "content": "the standard train/test split for final experimentation using the tuned hyperparameters. For Bookmarks,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "we use the same train/dev/test split as (Belanger & McCallum, 2016). For evaluation, we report the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 331, + 304, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 304, + 344 + ], + "score": 1.0, + "content": "example averaged (macro averaged) F1 measure.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 277, + 506, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "We use the SPEN for MLC described in Section 2 and also used by Belanger & McCallum (2016). For", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 241, + 372 + ], + "score": 1.0, + "content": "the feature representation network", + "type": "text" + }, + { + "bbox": [ + 242, + 359, + 264, + 371 + ], + "score": 0.91, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 358, + 506, + 372 + ], + "score": 1.0, + "content": ", we use feed-forward networks with two hidden layers, using", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "their same layer widths: 150 for Bibtex/Bookmarks and 250 for Delicious. We pretrain the feature", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 145, + 394 + ], + "score": 1.0, + "content": "networks", + "type": "text" + }, + { + "bbox": [ + 146, + 381, + 168, + 393 + ], + "score": 0.92, + "content": "F ( { \\dot { \\mathbf { x } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "by minimizing independent-label cross entropy for 10 epochs using Adam (Kingma", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "& Ba, 2014) with learning rate 0.001. While training SPENs, we only update the parameters of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 173, + 416 + ], + "score": 1.0, + "content": "energy function", + "type": "text" + }, + { + "bbox": [ + 174, + 403, + 189, + 414 + ], + "score": 0.69, + "content": "( \\Theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 403, + 299, + 416 + ], + "score": 1.0, + "content": "and the inference network", + "type": "text" + }, + { + "bbox": [ + 299, + 403, + 314, + 414 + ], + "score": 0.73, + "content": "( \\Phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 403, + 482, + 416 + ], + "score": 1.0, + "content": ", keeping the feature network parameters", + "type": "text" + }, + { + "bbox": [ + 482, + 403, + 505, + 415 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 414, + 358, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 318, + 426 + ], + "score": 1.0, + "content": "fixed. We use Adam with learning rate 0.001 to train", + "type": "text" + }, + { + "bbox": [ + 319, + 415, + 328, + 424 + ], + "score": 0.81, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 414, + 345, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 415, + 354, + 424 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 414, + 358, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 347, + 506, + 426 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "The inference networks are feed-forward networks with two hidden layers, using the same archi-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 238, + 455 + ], + "score": 1.0, + "content": "tectures as the feature networks", + "type": "text" + }, + { + "bbox": [ + 238, + 442, + 261, + 453 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 441, + 505, + 455 + ], + "score": 1.0, + "content": ". This permits us to initialize inference network parameters", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 115, + 463 + ], + "score": 0.79, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "using pretrained feature network parameters. For the output, we use an affine transformation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 426, + 477 + ], + "score": 1.0, + "content": "layer with a sigmoid nonlinearity function, so the output values are in the range", + "type": "text" + }, + { + "bbox": [ + 426, + 464, + 448, + 475 + ], + "score": 0.89, + "content": "( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ". We interpret", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "each value as the probability of predicting the corresponding label. We obtain discrete predictions", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 234, + 498 + ], + "score": 1.0, + "content": "by thresholding at a threshold", + "type": "text" + }, + { + "bbox": [ + 234, + 487, + 241, + 496 + ], + "score": 0.73, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "tuned to maximize F1 on the development data. We add three", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 337, + 510 + ], + "score": 1.0, + "content": "terms to the inference network objective from Section 5:", + "type": "text" + }, + { + "bbox": [ + 337, + 497, + 350, + 507 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "regularization, entropy regularization,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "and regularization toward the pretrained feature network. Margin rescaling and slack rescaling use", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 518, + 455, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 140, + 532 + ], + "score": 1.0, + "content": "squared", + "type": "text" + }, + { + "bbox": [ + 140, + 519, + 152, + 529 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 518, + 203, + 532 + ], + "score": 1.0, + "content": "distance for", + "type": "text" + }, + { + "bbox": [ + 203, + 519, + 213, + 528 + ], + "score": 0.8, + "content": "\\triangle", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 518, + 455, + 532 + ], + "score": 1.0, + "content": ". Additional details are provided in Sec. 9.1 in the appendix.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 430, + 506, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "Comparison to Prior Work. Table 1 shows results comparing to prior work. The MLP and “SPEN", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "(BM16)” baseline results are taken from (Belanger & McCallum, 2016). We obtained the “SPEN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "(E2E)” (Belanger et al., 2017) results by running the code available from the authors on these datasets.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "This method constructs a recurrent neural network that performs gradient-based minimization of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 196, + 592 + ], + "score": 1.0, + "content": "energy with respect to", + "type": "text" + }, + { + "bbox": [ + 196, + 581, + 204, + 591 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 579, + 506, + 592 + ], + "score": 1.0, + "content": ". They noted in their software release that, while this method is more stable,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 590, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 506, + 602 + ], + "score": 1.0, + "content": "it is prone to overfitting and actually performs worse than the original SPEN. We indeed find this to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 601, + 426, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 426, + 614 + ], + "score": 1.0, + "content": "be the case, as SPEN (E2E) underperforms SPEN (BM16) on all three datasets.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 534, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "score": 1.0, + "content": "Our method (“SPEN (InfNet)”) achieves the best average performance across the three datasets.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "It performs especially well on Bookmarks, which is the largest of the three. Our results use the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "contrastive hinge loss and retune the inference network on the development data after the energy is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "trained; these decisions were made based on the tuning described in Sec. 9.1, but all four hinge losses", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 663, + 227, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 227, + 675 + ], + "score": 1.0, + "content": "led to similarly strong results.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 617, + 507, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "score": 1.0, + "content": "Speed Comparison. Table 2 compares training and test-time inference speed among the different", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "methods. We only report speeds of methods that we ran.2 The SPEN (E2E) times were obtained", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "using code obtained from Belanger and McCallum. We suspect that SPEN (BM16) training would be", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "comparable to or slower than SPEN (E2E). Our method can process examples during training about", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "10 times as fast as the end-to-end SPEN, and 60-130 times as fast during test-time inference. In fact,", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "at test time, our method is roughly the same speed as the MLP baseline, since our inference networks", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "use the same architecture as the feature networks which form the MLP baseline. Compared to the", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "MLP, the training of our method takes significantly more time overall because of joint training of the", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 247, + 479, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 479, + 260 + ], + "score": 1.0, + "content": "energy function and inference network, but fortunately the test-time inference is comparable.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 678, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 137, + 104, + 475, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 151, + 89, + 455, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 87, + 456, + 104 + ], + "spans": [ + { + "bbox": [ + 151, + 87, + 456, + 104 + ], + "score": 1.0, + "content": "Table 2: Training and test-time inference speed comparison (examples/sec).", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 137, + 104, + 475, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 104, + 475, + 158 + ], + "spans": [ + { + "bbox": [ + 137, + 104, + 475, + 158 + ], + "score": 0.976, + "html": "
Training Speed (examples/sec)Testing Speed (examples/sec)
BibtexBookmarksDeliciousBibtexBookmarksDelicious
MLP2167019591261589070692307113750
SPEN (E2E)55155938314201401832
SPEN (InfNet)5533546746679419488888112148
", + "type": "table", + "image_path": "3a9a43483713f0298592fe74c282cc354bc5beea38f2261988b0e2867be2a061.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 137, + 104, + 475, + 122.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 122.0, + 475, + 140.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 137, + 140.0, + 475, + 158.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 106, + 181, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "using code obtained from Belanger and McCallum. We suspect that SPEN (BM16) training would be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "comparable to or slower than SPEN (E2E). Our method can process examples during training about", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "10 times as fast as the end-to-end SPEN, and 60-130 times as fast during test-time inference. In fact,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "at test time, our method is roughly the same speed as the MLP baseline, since our inference networks", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "use the same architecture as the feature networks which form the MLP baseline. Compared to the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "MLP, the training of our method takes significantly more time overall because of joint training of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 247, + 479, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 479, + 260 + ], + "score": 1.0, + "content": "energy function and inference network, but fortunately the test-time inference is comparable.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 272, + 226, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 227, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 227, + 285 + ], + "score": 1.0, + "content": "7.2 SEQUENCE LABELING", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 292, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "We also evaluate our methods on sequence labeling. We report experiments with Twitter part-of-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 304, + 493, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 493, + 316 + ], + "score": 1.0, + "content": "speech (POS) tagging here. Named entity recognition experiments are reported in the Appendix.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 106, + 326, + 346, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 347, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 347, + 340 + ], + "score": 1.0, + "content": "7.2.1 ENERGY FUNCTIONS FOR SEQUENCE LABELING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 506, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 171, + 359 + ], + "score": 1.0, + "content": "The input space", + "type": "text" + }, + { + "bbox": [ + 171, + 347, + 181, + 356 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "is now the set of all sequences of symbols drawn from a vocabulary. For an input", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 146, + 370 + ], + "score": 1.0, + "content": "sequence", + "type": "text" + }, + { + "bbox": [ + 146, + 360, + 154, + 367 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 357, + 193, + 370 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 193, + 358, + 203, + 367 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 357, + 271, + 370 + ], + "score": 1.0, + "content": ", where there are", + "type": "text" + }, + { + "bbox": [ + 272, + 358, + 280, + 367 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 357, + 450, + 370 + ], + "score": 1.0, + "content": "possible output labels for each position in", + "type": "text" + }, + { + "bbox": [ + 451, + 360, + 458, + 367 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 357, + 505, + 370 + ], + "score": 1.0, + "content": ", the output", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 508, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 131, + 382 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 131, + 369, + 154, + 380 + ], + "score": 0.91, + "content": "\\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 367, + 165, + 382 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 165, + 367, + 185, + 380 + ], + "score": 0.91, + "content": "[ L ] ^ { \\widetilde { N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 367, + 267, + 382 + ], + "score": 1.0, + "content": ", where the notation", + "type": "text" + }, + { + "bbox": [ + 267, + 369, + 278, + 380 + ], + "score": 0.82, + "content": "[ q ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 367, + 429, + 382 + ], + "score": 1.0, + "content": "represents the set containing the first", + "type": "text" + }, + { + "bbox": [ + 429, + 370, + 435, + 380 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 367, + 508, + 382 + ], + "score": 1.0, + "content": "positive integers.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 378, + 481, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 149, + 393 + ], + "score": 1.0, + "content": "We define", + "type": "text" + }, + { + "bbox": [ + 149, + 380, + 227, + 392 + ], + "score": 0.92, + "content": "\\pmb { y } = \\langle y _ { 1 } , y _ { 2 } , . . , y _ { N } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 378, + 275, + 393 + ], + "score": 1.0, + "content": "where each", + "type": "text" + }, + { + "bbox": [ + 276, + 381, + 285, + 391 + ], + "score": 0.83, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 378, + 443, + 393 + ], + "score": 1.0, + "content": "ranges over possible output labels, i.e.,", + "type": "text" + }, + { + "bbox": [ + 443, + 379, + 477, + 392 + ], + "score": 0.92, + "content": "y _ { i } \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 378, + 481, + 393 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 506, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "When defining our energy for sequence labeling, we take inspiration from bidirectional LSTMs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 199, + 420 + ], + "score": 1.0, + "content": "(BLSTMs; Hochreiter", + "type": "text" + }, + { + "bbox": [ + 199, + 408, + 208, + 417 + ], + "score": 0.31, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "Schmidhuber 1997) and conditional random fields (CRFs; Lafferty et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "2001). A “linear chain” CRF uses two types of features: one capturing the connection between an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 174, + 442 + ], + "score": 1.0, + "content": "output label and", + "type": "text" + }, + { + "bbox": [ + 174, + 431, + 182, + 439 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "and the other capturing the dependence between neighboring output labels. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 323, + 453 + ], + "score": 1.0, + "content": "use a BLSTM to compute feature representations for", + "type": "text" + }, + { + "bbox": [ + 323, + 442, + 331, + 450 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 439, + 367, + 453 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 368, + 439, + 421, + 452 + ], + "score": 0.92, + "content": "f ( \\pmb { x } , t ) \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "to denote the “input", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 451, + 476, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 217, + 463 + ], + "score": 1.0, + "content": "feature vector” for position", + "type": "text" + }, + { + "bbox": [ + 217, + 452, + 222, + 461 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 451, + 306, + 463 + ], + "score": 1.0, + "content": ", defining it to be the", + "type": "text" + }, + { + "bbox": [ + 306, + 452, + 312, + 461 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 451, + 468, + 463 + ], + "score": 1.0, + "content": "-dimensional BLSTM hidden vector at", + "type": "text" + }, + { + "bbox": [ + 468, + 453, + 472, + 461 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 451, + 476, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 291, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 291, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 291, + 482 + ], + "score": 1.0, + "content": "We then define the following energy function:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 483, + 407, + 518 + ], + "lines": [ + { + "bbox": [ + 204, + 483, + 407, + 518 + ], + "spans": [ + { + "bbox": [ + 204, + 483, + 407, + 518 + ], + "score": 0.94, + "content": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } U _ { y _ { t } } ^ { \\top } f ( \\pmb { x } , t ) + \\sum _ { t } W _ { y _ { t - 1 } , y _ { t } } \\right)", + "type": "interline_equation", + "image_path": "a2de9a95dbf1faa7fdd406f922cdf30d4c171fb6c35d5e95f61b51265db017fc.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 483, + 407, + 500.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 204, + 500.5, + 407, + 518.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 133, + 535 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 522, + 168, + 534 + ], + "score": 0.94, + "content": "U _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 520, + 290, + 535 + ], + "score": 1.0, + "content": "is a parameter vector for label", + "type": "text" + }, + { + "bbox": [ + 290, + 523, + 295, + 532 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 520, + 398, + 535 + ], + "score": 1.0, + "content": "and the parameter matrix", + "type": "text" + }, + { + "bbox": [ + 398, + 522, + 446, + 533 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R } ^ { L \\times L }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "contains label", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 279, + 546 + ], + "score": 1.0, + "content": "pair parameters. The full set of parameters", + "type": "text" + }, + { + "bbox": [ + 279, + 534, + 288, + 544 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 533, + 339, + 546 + ], + "score": 1.0, + "content": "includes the", + "type": "text" + }, + { + "bbox": [ + 340, + 534, + 351, + 545 + ], + "score": 0.88, + "content": "U _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 533, + 385, + 546 + ], + "score": 1.0, + "content": "vectors,", + "type": "text" + }, + { + "bbox": [ + 386, + 534, + 398, + 544 + ], + "score": 0.77, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 533, + 505, + 546 + ], + "score": 1.0, + "content": ", and the parameters of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 305, + 558 + ], + "score": 1.0, + "content": "BLSTM. The above energy only permits discrete", + "type": "text" + }, + { + "bbox": [ + 306, + 546, + 313, + 556 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 543, + 486, + 558 + ], + "score": 1.0, + "content": ". For the general case that permits relaxing", + "type": "text" + }, + { + "bbox": [ + 486, + 546, + 493, + 556 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 225, + 569 + ], + "score": 1.0, + "content": "be continuous, we treat each", + "type": "text" + }, + { + "bbox": [ + 225, + 558, + 234, + 567 + ], + "score": 0.83, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 555, + 441, + 569 + ], + "score": 1.0, + "content": "as a vector. It will be one-hot for the ground truth", + "type": "text" + }, + { + "bbox": [ + 441, + 558, + 449, + 567 + ], + "score": 0.79, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "and will be a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 429, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 264, + 579 + ], + "score": 1.0, + "content": "vector of label probabilities for relaxed", + "type": "text" + }, + { + "bbox": [ + 264, + 568, + 272, + 578 + ], + "score": 0.59, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 567, + 429, + 579 + ], + "score": 1.0, + "content": "’s. Then the general energy function is:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 582, + 428, + 617 + ], + "lines": [ + { + "bbox": [ + 183, + 582, + 428, + 617 + ], + "spans": [ + { + "bbox": [ + 183, + 582, + 428, + 617 + ], + "score": 0.95, + "content": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } \\sum _ { i = 1 } ^ { L } y _ { t , i } \\left( U _ { i } ^ { \\top } f ( \\pmb { x } , t ) \\right) + \\sum _ { t } y _ { t - 1 } ^ { \\top } W y _ { t } \\right)", + "type": "interline_equation", + "image_path": "cb4ca5a91be813d2a1984f6c9163203c55b0b5b5df1adf4d42d7c5c8a4c4da79.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 183, + 582, + 428, + 593.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 183, + 593.6666666666666, + 428, + 605.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 183, + 605.3333333333333, + 428, + 616.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 133, + 633 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 622, + 148, + 632 + ], + "score": 0.87, + "content": "y _ { t , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 620, + 173, + 633 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 173, + 622, + 177, + 630 + ], + "score": 0.35, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 620, + 262, + 633 + ], + "score": 1.0, + "content": "th entry of the vector", + "type": "text" + }, + { + "bbox": [ + 262, + 622, + 271, + 632 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 620, + 461, + 633 + ], + "score": 1.0, + "content": ". In the discrete case, this entry is 1 for a single", + "type": "text" + }, + { + "bbox": [ + 461, + 621, + 465, + 630 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "and 0 for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "all others, so this energy reduces to Eq. (12) in that case. In the continuous case, this scalar indicates", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 641, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 340, + 655 + ], + "score": 1.0, + "content": "the probability of the tth position being labeled with label", + "type": "text" + }, + { + "bbox": [ + 341, + 643, + 345, + 652 + ], + "score": 0.64, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 641, + 505, + 655 + ], + "score": 1.0, + "content": ". For the label pair terms in this general", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 652, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 360, + 667 + ], + "score": 1.0, + "content": "energy function, we use a bilinear product between the vectors", + "type": "text" + }, + { + "bbox": [ + 361, + 655, + 380, + 665 + ], + "score": 0.88, + "content": "y _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 652, + 398, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 655, + 408, + 665 + ], + "score": 0.84, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 652, + 506, + 667 + ], + "score": 1.0, + "content": "using parameter matrix", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 664, + 370, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 118, + 674 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 664, + 370, + 677 + ], + "score": 1.0, + "content": ", which also reduces to Eq. (12) when they are one-hot vectors.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Tag Language Model. In order to capture long-distance dependencies in an entire sequence of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "labels, we train a “tag language model” on a large corpus of automatically-tagged tweets, then include", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "a term in the energy function representing the log-probability of the given tag sequence under this tag", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 353, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 353, + 732 + ], + "score": 1.0, + "content": "language model. Details are provided below in Section 7.2.4.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.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, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 137, + 104, + 475, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 151, + 89, + 455, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 87, + 456, + 104 + ], + "spans": [ + { + "bbox": [ + 151, + 87, + 456, + 104 + ], + "score": 1.0, + "content": "Table 2: Training and test-time inference speed comparison (examples/sec).", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 137, + 104, + 475, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 104, + 475, + 158 + ], + "spans": [ + { + "bbox": [ + 137, + 104, + 475, + 158 + ], + "score": 0.976, + "html": "
Training Speed (examples/sec)Testing Speed (examples/sec)
BibtexBookmarksDeliciousBibtexBookmarksDelicious
MLP2167019591261589070692307113750
SPEN (E2E)55155938314201401832
SPEN (InfNet)5533546746679419488888112148
", + "type": "table", + "image_path": "3a9a43483713f0298592fe74c282cc354bc5beea38f2261988b0e2867be2a061.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 137, + 104, + 475, + 122.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 122.0, + 475, + 140.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 137, + 140.0, + 475, + 158.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 106, + 181, + 505, + 259 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 105, + 182, + 506, + 260 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 272, + 226, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 227, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 227, + 285 + ], + "score": 1.0, + "content": "7.2 SEQUENCE LABELING", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 292, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "We also evaluate our methods on sequence labeling. We report experiments with Twitter part-of-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 304, + 493, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 493, + 316 + ], + "score": 1.0, + "content": "speech (POS) tagging here. Named entity recognition experiments are reported in the Appendix.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 292, + 506, + 316 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 326, + 346, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 347, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 347, + 340 + ], + "score": 1.0, + "content": "7.2.1 ENERGY FUNCTIONS FOR SEQUENCE LABELING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 506, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 171, + 359 + ], + "score": 1.0, + "content": "The input space", + "type": "text" + }, + { + "bbox": [ + 171, + 347, + 181, + 356 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "is now the set of all sequences of symbols drawn from a vocabulary. For an input", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 146, + 370 + ], + "score": 1.0, + "content": "sequence", + "type": "text" + }, + { + "bbox": [ + 146, + 360, + 154, + 367 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 357, + 193, + 370 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 193, + 358, + 203, + 367 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 357, + 271, + 370 + ], + "score": 1.0, + "content": ", where there are", + "type": "text" + }, + { + "bbox": [ + 272, + 358, + 280, + 367 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 357, + 450, + 370 + ], + "score": 1.0, + "content": "possible output labels for each position in", + "type": "text" + }, + { + "bbox": [ + 451, + 360, + 458, + 367 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 357, + 505, + 370 + ], + "score": 1.0, + "content": ", the output", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 508, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 131, + 382 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 131, + 369, + 154, + 380 + ], + "score": 0.91, + "content": "\\mathcal { V } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 367, + 165, + 382 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 165, + 367, + 185, + 380 + ], + "score": 0.91, + "content": "[ L ] ^ { \\widetilde { N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 367, + 267, + 382 + ], + "score": 1.0, + "content": ", where the notation", + "type": "text" + }, + { + "bbox": [ + 267, + 369, + 278, + 380 + ], + "score": 0.82, + "content": "[ q ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 367, + 429, + 382 + ], + "score": 1.0, + "content": "represents the set containing the first", + "type": "text" + }, + { + "bbox": [ + 429, + 370, + 435, + 380 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 367, + 508, + 382 + ], + "score": 1.0, + "content": "positive integers.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 378, + 481, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 149, + 393 + ], + "score": 1.0, + "content": "We define", + "type": "text" + }, + { + "bbox": [ + 149, + 380, + 227, + 392 + ], + "score": 0.92, + "content": "\\pmb { y } = \\langle y _ { 1 } , y _ { 2 } , . . , y _ { N } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 378, + 275, + 393 + ], + "score": 1.0, + "content": "where each", + "type": "text" + }, + { + "bbox": [ + 276, + 381, + 285, + 391 + ], + "score": 0.83, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 378, + 443, + 393 + ], + "score": 1.0, + "content": "ranges over possible output labels, i.e.,", + "type": "text" + }, + { + "bbox": [ + 443, + 379, + 477, + 392 + ], + "score": 0.92, + "content": "y _ { i } \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 378, + 481, + 393 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 345, + 508, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 506, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "When defining our energy for sequence labeling, we take inspiration from bidirectional LSTMs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 199, + 420 + ], + "score": 1.0, + "content": "(BLSTMs; Hochreiter", + "type": "text" + }, + { + "bbox": [ + 199, + 408, + 208, + 417 + ], + "score": 0.31, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "Schmidhuber 1997) and conditional random fields (CRFs; Lafferty et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "2001). A “linear chain” CRF uses two types of features: one capturing the connection between an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 174, + 442 + ], + "score": 1.0, + "content": "output label and", + "type": "text" + }, + { + "bbox": [ + 174, + 431, + 182, + 439 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "and the other capturing the dependence between neighboring output labels. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 323, + 453 + ], + "score": 1.0, + "content": "use a BLSTM to compute feature representations for", + "type": "text" + }, + { + "bbox": [ + 323, + 442, + 331, + 450 + ], + "score": 0.74, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 439, + 367, + 453 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 368, + 439, + 421, + 452 + ], + "score": 0.92, + "content": "f ( \\pmb { x } , t ) \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "to denote the “input", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 451, + 476, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 217, + 463 + ], + "score": 1.0, + "content": "feature vector” for position", + "type": "text" + }, + { + "bbox": [ + 217, + 452, + 222, + 461 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 451, + 306, + 463 + ], + "score": 1.0, + "content": ", defining it to be the", + "type": "text" + }, + { + "bbox": [ + 306, + 452, + 312, + 461 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 451, + 468, + 463 + ], + "score": 1.0, + "content": "-dimensional BLSTM hidden vector at", + "type": "text" + }, + { + "bbox": [ + 468, + 453, + 472, + 461 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 451, + 476, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 396, + 506, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 291, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 291, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 291, + 482 + ], + "score": 1.0, + "content": "We then define the following energy function:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 466, + 291, + 482 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 483, + 407, + 518 + ], + "lines": [ + { + "bbox": [ + 204, + 483, + 407, + 518 + ], + "spans": [ + { + "bbox": [ + 204, + 483, + 407, + 518 + ], + "score": 0.94, + "content": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } U _ { y _ { t } } ^ { \\top } f ( \\pmb { x } , t ) + \\sum _ { t } W _ { y _ { t - 1 } , y _ { t } } \\right)", + "type": "interline_equation", + "image_path": "a2de9a95dbf1faa7fdd406f922cdf30d4c171fb6c35d5e95f61b51265db017fc.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 483, + 407, + 500.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 204, + 500.5, + 407, + 518.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 133, + 535 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 522, + 168, + 534 + ], + "score": 0.94, + "content": "U _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 520, + 290, + 535 + ], + "score": 1.0, + "content": "is a parameter vector for label", + "type": "text" + }, + { + "bbox": [ + 290, + 523, + 295, + 532 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 520, + 398, + 535 + ], + "score": 1.0, + "content": "and the parameter matrix", + "type": "text" + }, + { + "bbox": [ + 398, + 522, + 446, + 533 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R } ^ { L \\times L }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "contains label", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 279, + 546 + ], + "score": 1.0, + "content": "pair parameters. The full set of parameters", + "type": "text" + }, + { + "bbox": [ + 279, + 534, + 288, + 544 + ], + "score": 0.83, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 533, + 339, + 546 + ], + "score": 1.0, + "content": "includes the", + "type": "text" + }, + { + "bbox": [ + 340, + 534, + 351, + 545 + ], + "score": 0.88, + "content": "U _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 533, + 385, + 546 + ], + "score": 1.0, + "content": "vectors,", + "type": "text" + }, + { + "bbox": [ + 386, + 534, + 398, + 544 + ], + "score": 0.77, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 533, + 505, + 546 + ], + "score": 1.0, + "content": ", and the parameters of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 305, + 558 + ], + "score": 1.0, + "content": "BLSTM. The above energy only permits discrete", + "type": "text" + }, + { + "bbox": [ + 306, + 546, + 313, + 556 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 543, + 486, + 558 + ], + "score": 1.0, + "content": ". For the general case that permits relaxing", + "type": "text" + }, + { + "bbox": [ + 486, + 546, + 493, + 556 + ], + "score": 0.76, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 225, + 569 + ], + "score": 1.0, + "content": "be continuous, we treat each", + "type": "text" + }, + { + "bbox": [ + 225, + 558, + 234, + 567 + ], + "score": 0.83, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 555, + 441, + 569 + ], + "score": 1.0, + "content": "as a vector. It will be one-hot for the ground truth", + "type": "text" + }, + { + "bbox": [ + 441, + 558, + 449, + 567 + ], + "score": 0.79, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "and will be a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 429, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 264, + 579 + ], + "score": 1.0, + "content": "vector of label probabilities for relaxed", + "type": "text" + }, + { + "bbox": [ + 264, + 568, + 272, + 578 + ], + "score": 0.59, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 567, + 429, + 579 + ], + "score": 1.0, + "content": "’s. Then the general energy function is:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 520, + 506, + 579 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 582, + 428, + 617 + ], + "lines": [ + { + "bbox": [ + 183, + 582, + 428, + 617 + ], + "spans": [ + { + "bbox": [ + 183, + 582, + 428, + 617 + ], + "score": 0.95, + "content": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } \\sum _ { i = 1 } ^ { L } y _ { t , i } \\left( U _ { i } ^ { \\top } f ( \\pmb { x } , t ) \\right) + \\sum _ { t } y _ { t - 1 } ^ { \\top } W y _ { t } \\right)", + "type": "interline_equation", + "image_path": "cb4ca5a91be813d2a1984f6c9163203c55b0b5b5df1adf4d42d7c5c8a4c4da79.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 183, + 582, + 428, + 593.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 183, + 593.6666666666666, + 428, + 605.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 183, + 605.3333333333333, + 428, + 616.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 133, + 633 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 622, + 148, + 632 + ], + "score": 0.87, + "content": "y _ { t , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 620, + 173, + 633 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 173, + 622, + 177, + 630 + ], + "score": 0.35, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 620, + 262, + 633 + ], + "score": 1.0, + "content": "th entry of the vector", + "type": "text" + }, + { + "bbox": [ + 262, + 622, + 271, + 632 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 620, + 461, + 633 + ], + "score": 1.0, + "content": ". In the discrete case, this entry is 1 for a single", + "type": "text" + }, + { + "bbox": [ + 461, + 621, + 465, + 630 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "and 0 for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "all others, so this energy reduces to Eq. (12) in that case. In the continuous case, this scalar indicates", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 641, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 340, + 655 + ], + "score": 1.0, + "content": "the probability of the tth position being labeled with label", + "type": "text" + }, + { + "bbox": [ + 341, + 643, + 345, + 652 + ], + "score": 0.64, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 641, + 505, + 655 + ], + "score": 1.0, + "content": ". For the label pair terms in this general", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 652, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 360, + 667 + ], + "score": 1.0, + "content": "energy function, we use a bilinear product between the vectors", + "type": "text" + }, + { + "bbox": [ + 361, + 655, + 380, + 665 + ], + "score": 0.88, + "content": "y _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 652, + 398, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 655, + 408, + 665 + ], + "score": 0.84, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 652, + 506, + 667 + ], + "score": 1.0, + "content": "using parameter matrix", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 664, + 370, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 118, + 674 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 664, + 370, + 677 + ], + "score": 1.0, + "content": ", which also reduces to Eq. (12) when they are one-hot vectors.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 620, + 506, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Tag Language Model. In order to capture long-distance dependencies in an entire sequence of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "labels, we train a “tag language model” on a large corpus of automatically-tagged tweets, then include", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "a term in the energy function representing the log-probability of the given tag sequence under this tag", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 353, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 353, + 732 + ], + "score": 1.0, + "content": "language model. Details are provided below in Section 7.2.4.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 104, + 688, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 204, + 116, + 406, + 179 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 504, + 102 + ], + "score": 1.0, + "content": "Table 3: Comparison of SPEN hinge losses and showing the impact of retuning (Twitter POS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 436, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 436, + 113 + ], + "score": 1.0, + "content": "validation accuracies). Inference networks are trained with the cross entropy term.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 204, + 116, + 406, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 116, + 406, + 179 + ], + "spans": [ + { + "bbox": [ + 204, + 116, + 406, + 179 + ], + "score": 0.968, + "html": "
SPEN hinge lossvalidation accuracy (%)
-retuning 89.1+retuning
margin rescaling slack rescaling89.489.3
perceptron (MR,△= 0)89.289.6
88.889.4
contrastive (△= 1)89.0
", + "type": "table", + "image_path": "7902a62cd03e34d65119c0ce5c2887af77c0114eb6d439f00ba232fee30b3ac2.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 204, + 116, + 406, + 128.6 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 128.6, + 406, + 141.2 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 141.2, + 406, + 153.79999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 204, + 153.79999999999998, + 406, + 166.39999999999998 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 204, + 166.39999999999998, + 406, + 178.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 146, + 249, + 464, + 302 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 201, + 504, + 246 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 215 + ], + "score": 1.0, + "content": "Table 4: Twitter POS accuracies of BLSTM, CRF, and SPEN (InfNet), using our tuned SPEN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "configuration (slack-rescaled hinge, inference network trained with cross entropy term). Though", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "slowest to train, the SPEN matches the test-time speed of the BLSTM while achieving the highest", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 236, + 153, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 153, + 247 + ], + "score": 1.0, + "content": "accuracies.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 146, + 249, + 464, + 302 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 249, + 464, + 302 + ], + "spans": [ + { + "bbox": [ + 146, + 249, + 464, + 302 + ], + "score": 0.973, + "html": "
validation accuracy (%)test accuracy (%)training speed (examples/sec)testing speed (examples/sec)
BLSTM88.688.83851250
CRF89.189.2250500
SPEN (InfNet)89.689.81251250
", + "type": "table", + "image_path": "29f2914da3874eb87cf5a63ba8a63ca0c718be7cbf302e423cefbdb9f035a4c7.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 146, + 249, + 464, + 266.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 146, + 266.6666666666667, + 464, + 284.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 146, + 284.33333333333337, + 464, + 302.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.25 + }, + { + "type": "title", + "bbox": [ + 107, + 326, + 239, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 239, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 239, + 339 + ], + "score": 1.0, + "content": "7.2.2 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 506, + 358 + ], + "score": 1.0, + "content": "For Twitter part-of-speech (POS) tagging, we use the annotated data from Gimpel et al. (2011)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 279, + 369 + ], + "score": 1.0, + "content": "and Owoputi et al. (2013) which contains", + "type": "text" + }, + { + "bbox": [ + 280, + 357, + 312, + 367 + ], + "score": 0.89, + "content": "L = 2 5", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "POS tags. For training, we combine the 1000-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "tweet OCT27TRAIN set and the 327-tweet OCT27DEV set. For validation, we use the 500-tweet", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "score": 1.0, + "content": "OCT27TEST set and for testing we use the 547-tweet DAILY547 test set. We use 100-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "skip-gram embeddings trained on 56 million English tweets with word2vec (Mikolov et al., 2013).3", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 338, + 419 + ], + "score": 1.0, + "content": "We use a BLSTM to compute the “input feature vector”", + "type": "text" + }, + { + "bbox": [ + 338, + 406, + 367, + 418 + ], + "score": 0.93, + "content": "f ( { \\pmb x } , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 407, + 441, + 419 + ], + "score": 1.0, + "content": "for each position", + "type": "text" + }, + { + "bbox": [ + 441, + 408, + 446, + 417 + ], + "score": 0.58, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 407, + 505, + 419 + ], + "score": 1.0, + "content": ", using hidden", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 212, + 429 + ], + "score": 1.0, + "content": "vectors of dimensionality", + "type": "text" + }, + { + "bbox": [ + 212, + 417, + 248, + 428 + ], + "score": 0.89, + "content": "d = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 417, + 506, + 429 + ], + "score": 1.0, + "content": ". We also use BLSTMs for the inference networks. The output", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "layer of the inference network is a softmax function, so at every position, the inference network", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "produces a distribution over labels at that position. We train inference networks using stochastic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 462, + 463 + ], + "score": 1.0, + "content": "gradient descent (SGD) with momentum and train the energy parameters using Adam. For", + "type": "text" + }, + { + "bbox": [ + 462, + 451, + 472, + 460 + ], + "score": 0.8, + "content": "\\triangle", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 450, + 505, + 463 + ], + "score": 1.0, + "content": ", we use", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 119, + 472 + ], + "score": 0.87, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "distance. We tune hyperparameters on the validation set; full details of tuning are provided in the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "score": 1.0, + "content": "appendix. We found that the cross entropy stabilization term worked well for this setting; details and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 327, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 327, + 495 + ], + "score": 1.0, + "content": "an empirical comparison are provided in Section 9.2.1.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "We compare to standard BLSTM and CRF baselines. We train the BLSTM baseline to minimize", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 524 + ], + "score": 1.0, + "content": "per-token log loss; this is often called a “BLSTM tagger”. We train a CRF baseline using the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "energy in Eq. (12) with the standard conditional log-likelihood objective using the standard dynamic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "programming algorithms (forward-backward) to compute gradients during training. Further details", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 224, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 224, + 556 + ], + "score": 1.0, + "content": "are provided in the appendix.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 107, + 567, + 179, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 180, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 180, + 581 + ], + "score": 1.0, + "content": "7.2.3 RESULTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Loss Function Comparison. Table 3 shows results when comparing SPEN training objectives. We", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 599, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 610 + ], + "score": 1.0, + "content": "see a larger difference among losses here than for MLC tasks. When using the perceptron loss, there", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 621 + ], + "score": 1.0, + "content": "is no margin, which leads to overfitting: 89.4 on validation, 88.6 on test (not shown in the table).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "The contrastive loss, which strives to achieve a margin of 1, does better on test (89.0). We also see", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "here that margin rescaling and slack rescaling both outperform the contrastive hinge, unlike the MLC", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 642, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 506, + 654 + ], + "score": 1.0, + "content": "tasks. We suspect that in the case in which each input/output has a different length, using a cost that", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 653, + 246, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 246, + 666 + ], + "score": 1.0, + "content": "captures length is more important.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "Comparison to Standard Baselines. Table 4 compares our final tuned SPEN configuration to two", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "standard baselines: a BLSTM tagger and a CRF. The SPEN achieves higher validation and test", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "accuracies with faster test-time inference. While our method is slower than the baselines during", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 712, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "score": 1.0, + "content": "3The pretrained embeddings are the same as those used by Tu et al. (2017) and are available at http:", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 247, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 247, + 731 + ], + "score": 1.0, + "content": "//ttic.uchicago.edu/~lifu/", + "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, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 204, + 116, + 406, + 179 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 504, + 102 + ], + "score": 1.0, + "content": "Table 3: Comparison of SPEN hinge losses and showing the impact of retuning (Twitter POS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 436, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 436, + 113 + ], + "score": 1.0, + "content": "validation accuracies). Inference networks are trained with the cross entropy term.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 204, + 116, + 406, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 116, + 406, + 179 + ], + "spans": [ + { + "bbox": [ + 204, + 116, + 406, + 179 + ], + "score": 0.968, + "html": "
SPEN hinge lossvalidation accuracy (%)
-retuning 89.1+retuning
margin rescaling slack rescaling89.489.3
perceptron (MR,△= 0)89.289.6
88.889.4
contrastive (△= 1)89.0
", + "type": "table", + "image_path": "7902a62cd03e34d65119c0ce5c2887af77c0114eb6d439f00ba232fee30b3ac2.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 204, + 116, + 406, + 128.6 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 128.6, + 406, + 141.2 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 141.2, + 406, + 153.79999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 204, + 153.79999999999998, + 406, + 166.39999999999998 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 204, + 166.39999999999998, + 406, + 178.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 146, + 249, + 464, + 302 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 201, + 504, + 246 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 215 + ], + "score": 1.0, + "content": "Table 4: Twitter POS accuracies of BLSTM, CRF, and SPEN (InfNet), using our tuned SPEN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "configuration (slack-rescaled hinge, inference network trained with cross entropy term). Though", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "slowest to train, the SPEN matches the test-time speed of the BLSTM while achieving the highest", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 236, + 153, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 153, + 247 + ], + "score": 1.0, + "content": "accuracies.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 146, + 249, + 464, + 302 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 249, + 464, + 302 + ], + "spans": [ + { + "bbox": [ + 146, + 249, + 464, + 302 + ], + "score": 0.973, + "html": "
validation accuracy (%)test accuracy (%)training speed (examples/sec)testing speed (examples/sec)
BLSTM88.688.83851250
CRF89.189.2250500
SPEN (InfNet)89.689.81251250
", + "type": "table", + "image_path": "29f2914da3874eb87cf5a63ba8a63ca0c718be7cbf302e423cefbdb9f035a4c7.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 146, + 249, + 464, + 266.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 146, + 266.6666666666667, + 464, + 284.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 146, + 284.33333333333337, + 464, + 302.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.25 + }, + { + "type": "title", + "bbox": [ + 107, + 326, + 239, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 239, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 239, + 339 + ], + "score": 1.0, + "content": "7.2.2 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 506, + 358 + ], + "score": 1.0, + "content": "For Twitter part-of-speech (POS) tagging, we use the annotated data from Gimpel et al. (2011)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 279, + 369 + ], + "score": 1.0, + "content": "and Owoputi et al. (2013) which contains", + "type": "text" + }, + { + "bbox": [ + 280, + 357, + 312, + 367 + ], + "score": 0.89, + "content": "L = 2 5", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "POS tags. For training, we combine the 1000-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "tweet OCT27TRAIN set and the 327-tweet OCT27DEV set. For validation, we use the 500-tweet", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "score": 1.0, + "content": "OCT27TEST set and for testing we use the 547-tweet DAILY547 test set. We use 100-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "skip-gram embeddings trained on 56 million English tweets with word2vec (Mikolov et al., 2013).3", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 346, + 506, + 402 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 338, + 419 + ], + "score": 1.0, + "content": "We use a BLSTM to compute the “input feature vector”", + "type": "text" + }, + { + "bbox": [ + 338, + 406, + 367, + 418 + ], + "score": 0.93, + "content": "f ( { \\pmb x } , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 407, + 441, + 419 + ], + "score": 1.0, + "content": "for each position", + "type": "text" + }, + { + "bbox": [ + 441, + 408, + 446, + 417 + ], + "score": 0.58, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 407, + 505, + 419 + ], + "score": 1.0, + "content": ", using hidden", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 212, + 429 + ], + "score": 1.0, + "content": "vectors of dimensionality", + "type": "text" + }, + { + "bbox": [ + 212, + 417, + 248, + 428 + ], + "score": 0.89, + "content": "d = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 417, + 506, + 429 + ], + "score": 1.0, + "content": ". We also use BLSTMs for the inference networks. The output", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "layer of the inference network is a softmax function, so at every position, the inference network", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "produces a distribution over labels at that position. We train inference networks using stochastic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 462, + 463 + ], + "score": 1.0, + "content": "gradient descent (SGD) with momentum and train the energy parameters using Adam. For", + "type": "text" + }, + { + "bbox": [ + 462, + 451, + 472, + 460 + ], + "score": 0.8, + "content": "\\triangle", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 450, + 505, + 463 + ], + "score": 1.0, + "content": ", we use", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 119, + 472 + ], + "score": 0.87, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "distance. We tune hyperparameters on the validation set; full details of tuning are provided in the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "score": 1.0, + "content": "appendix. We found that the cross entropy stabilization term worked well for this setting; details and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 327, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 327, + 495 + ], + "score": 1.0, + "content": "an empirical comparison are provided in Section 9.2.1.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 406, + 506, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "We compare to standard BLSTM and CRF baselines. We train the BLSTM baseline to minimize", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 524 + ], + "score": 1.0, + "content": "per-token log loss; this is often called a “BLSTM tagger”. We train a CRF baseline using the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "energy in Eq. (12) with the standard conditional log-likelihood objective using the standard dynamic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "programming algorithms (forward-backward) to compute gradients during training. Further details", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 224, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 224, + 556 + ], + "score": 1.0, + "content": "are provided in the appendix.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 500, + 505, + 556 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 567, + 179, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 180, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 180, + 581 + ], + "score": 1.0, + "content": "7.2.3 RESULTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Loss Function Comparison. Table 3 shows results when comparing SPEN training objectives. We", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 599, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 610 + ], + "score": 1.0, + "content": "see a larger difference among losses here than for MLC tasks. When using the perceptron loss, there", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 621 + ], + "score": 1.0, + "content": "is no margin, which leads to overfitting: 89.4 on validation, 88.6 on test (not shown in the table).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "The contrastive loss, which strives to achieve a margin of 1, does better on test (89.0). We also see", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "here that margin rescaling and slack rescaling both outperform the contrastive hinge, unlike the MLC", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 642, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 506, + 654 + ], + "score": 1.0, + "content": "tasks. We suspect that in the case in which each input/output has a different length, using a cost that", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 653, + 246, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 246, + 666 + ], + "score": 1.0, + "content": "captures length is more important.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 587, + 506, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "Comparison to Standard Baselines. Table 4 compares our final tuned SPEN configuration to two", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "standard baselines: a BLSTM tagger and a CRF. The SPEN achieves higher validation and test", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "accuracies with faster test-time inference. While our method is slower than the baselines during", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "training, it is faster than the CRF at test time, operating at essentially the same speed as the BLSTM", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 184, + 252, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 252, + 196 + ], + "score": 1.0, + "content": "baseline while being more accurate.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 669, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 212, + 115, + 398, + 148 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 504, + 102 + ], + "score": 1.0, + "content": "Table 5: Twitter POS validation/test accuracies when adding tag language model (TLM) energy term", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 294, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 294, + 113 + ], + "score": 1.0, + "content": "to a SPEN trained with margin-rescaled hinge.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 212, + 115, + 398, + 148 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 212, + 115, + 398, + 148 + ], + "spans": [ + { + "bbox": [ + 212, + 115, + 398, + 148 + ], + "score": 0.959, + "html": "
val. accuracy (%)test accuracy (%)
-TLM89.889.6
+TLM89.990.2
", + "type": "table", + "image_path": "8537d0717da40f4c1c2018e46b6eaad0d33c747c6a87d714b36ba1dacfa0a6d9.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 115, + 398, + 131.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 212, + 131.5, + 398, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "training, it is faster than the CRF at test time, operating at essentially the same speed as the BLSTM", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 184, + 252, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 252, + 196 + ], + "score": 1.0, + "content": "baseline while being more accurate.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "Here, the SPEN and CRF are using the same functional form for their energy functions, namely", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "the energy given in Eq. (13). We note that the SPEN outperforms the CRF, despite using the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "form for the energy. There are two factors that can explain this. First, the losses are different. The", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 235, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 504, + 245 + ], + "score": 1.0, + "content": "CRF uses conditional log-likelihood while the SPEN results here use slack-rescaled hinge, which", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "outperforms the other hinge loss variants (Table 3). Second, the stabilization terms used when training", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "the inference network may be providing a regularizing effect for the model. Our motivation for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "score": 1.0, + "content": "these experiments was to show the impact of these differences while keeping the form of the energy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 277, + 295, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 295, + 290 + ], + "score": 1.0, + "content": "function fixed. We now turn to richer energies.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 109, + 301, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "7.2.4 TOWARDS GLOBAL ENERGIES: TAG LANGUAGE MODELS FOR TWITTER POS TAGGING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "score": 1.0, + "content": "The above results only use the pairwise energy; no results used the tag language model (TLM). To", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "compute the TLM energy term, we first automatically tag unlabeled tweets, then train an LSTM", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "language model on the automatic tag sequences. When doing so, we define the input tag embeddings", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 127, + 366 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 128, + 354, + 136, + 363 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "-dimensional one-hot vectors specifying the tags in the training sequences. This is nonstandard", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "compared to standard language modeling. In standard language modeling, we train on observed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "score": 1.0, + "content": "sequences and compute likelihoods of other fully-observed sequences. However, in our case, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "score": 1.0, + "content": "train on tag sequences but we want to use the same model on sequences of tag distributions produced", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "by an inference network. We train the TLM on sequences of one-hot vectors and then use it to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "compute likelihoods of sequences of tag distributions. Further details about training are provided in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 419, + 228, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 228, + 432 + ], + "score": 1.0, + "content": "Section 9.2.2 in the appendix.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 104, + 433, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 259, + 451 + ], + "score": 1.0, + "content": "We define an additional energy term", + "type": "text" + }, + { + "bbox": [ + 260, + 435, + 300, + 448 + ], + "score": 0.92, + "content": "E ^ { \\mathrm { T L M } } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 433, + 496, + 451 + ], + "score": 1.0, + "content": "based on the pretrained TLM. If the argument", + "type": "text" + }, + { + "bbox": [ + 496, + 438, + 504, + 448 + ], + "score": 0.69, + "content": "\\textbf { { y } }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "consisted of one-hot vectors, we could simply compute its likelihood. However, to support relaxed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 297, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 114, + 470 + ], + "score": 0.67, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 458, + 297, + 470 + ], + "score": 1.0, + "content": "’s, we need to define a more general function:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 474, + 408, + 510 + ], + "lines": [ + { + "bbox": [ + 203, + 474, + 408, + 510 + ], + "spans": [ + { + "bbox": [ + 203, + 474, + 408, + 510 + ], + "score": 0.94, + "content": "E ^ { \\mathrm { T L M } } ( \\pmb { y } ) = - \\sum _ { t = 1 } ^ { | \\pmb { y } | + 1 } \\log ( \\pmb { y } _ { t } ^ { \\top } \\mathrm { T L M } ( \\langle \\pmb { y } _ { 0 } , . . . , \\pmb { y } _ { t - 1 } \\rangle ) )", + "type": "interline_equation", + "image_path": "5eb397eae23ba8116a03e4aa804b4d4ce2322a93afe9110101cb66e890e1379c.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 474, + 408, + 492.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 203, + 492.0, + 408, + 510.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 104, + 513, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 138, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 138, + 517, + 149, + 526 + ], + "score": 0.79, + "content": "y _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 513, + 306, + 529 + ], + "score": 1.0, + "content": "is the start-of-sequence symbol,", + "type": "text" + }, + { + "bbox": [ + 306, + 516, + 333, + 528 + ], + "score": 0.89, + "content": "y _ { \\vert \\pmb { y } \\vert + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 513, + 506, + 529 + ], + "score": 1.0, + "content": "is the end-of-sequence symbol, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 190, + 538 + ], + "score": 0.88, + "content": "\\mathrm { T L M } \\big ( \\langle y _ { 0 } , . . . , y _ { t - 1 } \\rangle \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 525, + 410, + 540 + ], + "score": 1.0, + "content": "returns the softmax distribution over tags at position", + "type": "text" + }, + { + "bbox": [ + 410, + 527, + 415, + 536 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 525, + 506, + 540 + ], + "score": 1.0, + "content": "(under the pretrained", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 368, + 551 + ], + "score": 1.0, + "content": "tag language model) given the preceding tag vectors. When each", + "type": "text" + }, + { + "bbox": [ + 369, + 539, + 379, + 549 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "is a one-hot vector, this energy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 400, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 388, + 562 + ], + "score": 1.0, + "content": "reduces to the negative log-likelihood of the tag sequence specified by", + "type": "text" + }, + { + "bbox": [ + 388, + 550, + 396, + 560 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 547, + 400, + 562 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 579 + ], + "score": 1.0, + "content": "We define the new joint energy as the sum of the energy function in Eq. (13) and the TLM energy", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "function in Eq. (14). During learning, we keep the TLM parameters fixed to their pretrained values,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 586, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 329, + 600 + ], + "score": 1.0, + "content": "but we tune the weight of the TLM energy (over the set", + "type": "text" + }, + { + "bbox": [ + 329, + 587, + 389, + 599 + ], + "score": 0.8, + "content": "\\{ 0 . 1 , 0 . 2 , 0 . 5 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 586, + 506, + 600 + ], + "score": 1.0, + "content": "in the joint energy. We train", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 506, + 611 + ], + "score": 1.0, + "content": "SPENs with the new joint energy using the margin-rescaled hinge, training the inference network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 610, + 220, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 220, + 622 + ], + "score": 1.0, + "content": "with the cross entropy term.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 104, + 625, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "Table 5 shows results.4 Adding the TLM energy leads to a gain of 0.6 on the test set. Other settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "showed more variance; when using slack-rescaled hinge, we found a small drop on test, while when", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "simply training inference networks for a fixed, pretrained joint energy with tuned mixture coefficient,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "we found a gain of 0.3 on test when adding the TLM energy. We investigated the improvements and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "found some to involve corrections that seemingly stem from handling non-local dependencies better.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "Table 10 in the appendix shows examples in which the model with the TLM appears to be better at", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "using the broader context when making tagging decisions. These results suggest that our method of", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "4The baseline results differ slightly from earlier results because we found that we could achieve higher", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "accuracies in SPEN training by avoiding using pretrained feature network parameters for the inference network.", + "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, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 212, + 115, + 398, + 148 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 504, + 102 + ], + "score": 1.0, + "content": "Table 5: Twitter POS validation/test accuracies when adding tag language model (TLM) energy term", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 294, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 294, + 113 + ], + "score": 1.0, + "content": "to a SPEN trained with margin-rescaled hinge.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 212, + 115, + 398, + 148 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 212, + 115, + 398, + 148 + ], + "spans": [ + { + "bbox": [ + 212, + 115, + 398, + 148 + ], + "score": 0.959, + "html": "
val. accuracy (%)test accuracy (%)
-TLM89.889.6
+TLM89.990.2
", + "type": "table", + "image_path": "8537d0717da40f4c1c2018e46b6eaad0d33c747c6a87d714b36ba1dacfa0a6d9.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 115, + 398, + 131.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 212, + 131.5, + 398, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 504, + 195 + ], + "lines": [], + "index": 4.5, + "bbox_fs": [ + 106, + 173, + 505, + 196 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "Here, the SPEN and CRF are using the same functional form for their energy functions, namely", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "the energy given in Eq. (13). We note that the SPEN outperforms the CRF, despite using the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "form for the energy. There are two factors that can explain this. First, the losses are different. The", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 235, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 504, + 245 + ], + "score": 1.0, + "content": "CRF uses conditional log-likelihood while the SPEN results here use slack-rescaled hinge, which", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "outperforms the other hinge loss variants (Table 3). Second, the stabilization terms used when training", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "the inference network may be providing a regularizing effect for the model. Our motivation for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "score": 1.0, + "content": "these experiments was to show the impact of these differences while keeping the form of the energy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 277, + 295, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 295, + 290 + ], + "score": 1.0, + "content": "function fixed. We now turn to richer energies.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 200, + 506, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 301, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "7.2.4 TOWARDS GLOBAL ENERGIES: TAG LANGUAGE MODELS FOR TWITTER POS TAGGING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 301, + 505, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "score": 1.0, + "content": "The above results only use the pairwise energy; no results used the tag language model (TLM). To", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "compute the TLM energy term, we first automatically tag unlabeled tweets, then train an LSTM", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "language model on the automatic tag sequences. When doing so, we define the input tag embeddings", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 127, + 366 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 128, + 354, + 136, + 363 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "-dimensional one-hot vectors specifying the tags in the training sequences. This is nonstandard", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "compared to standard language modeling. In standard language modeling, we train on observed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "score": 1.0, + "content": "sequences and compute likelihoods of other fully-observed sequences. However, in our case, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "score": 1.0, + "content": "train on tag sequences but we want to use the same model on sequences of tag distributions produced", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "by an inference network. We train the TLM on sequences of one-hot vectors and then use it to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "compute likelihoods of sequences of tag distributions. Further details about training are provided in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 419, + 228, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 228, + 432 + ], + "score": 1.0, + "content": "Section 9.2.2 in the appendix.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 319, + 506, + 432 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 104, + 433, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 259, + 451 + ], + "score": 1.0, + "content": "We define an additional energy term", + "type": "text" + }, + { + "bbox": [ + 260, + 435, + 300, + 448 + ], + "score": 0.92, + "content": "E ^ { \\mathrm { T L M } } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 433, + 496, + 451 + ], + "score": 1.0, + "content": "based on the pretrained TLM. If the argument", + "type": "text" + }, + { + "bbox": [ + 496, + 438, + 504, + 448 + ], + "score": 0.69, + "content": "\\textbf { { y } }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "consisted of one-hot vectors, we could simply compute its likelihood. However, to support relaxed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 297, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 114, + 470 + ], + "score": 0.67, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 458, + 297, + 470 + ], + "score": 1.0, + "content": "’s, we need to define a more general function:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 433, + 505, + 470 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 474, + 408, + 510 + ], + "lines": [ + { + "bbox": [ + 203, + 474, + 408, + 510 + ], + "spans": [ + { + "bbox": [ + 203, + 474, + 408, + 510 + ], + "score": 0.94, + "content": "E ^ { \\mathrm { T L M } } ( \\pmb { y } ) = - \\sum _ { t = 1 } ^ { | \\pmb { y } | + 1 } \\log ( \\pmb { y } _ { t } ^ { \\top } \\mathrm { T L M } ( \\langle \\pmb { y } _ { 0 } , . . . , \\pmb { y } _ { t - 1 } \\rangle ) )", + "type": "interline_equation", + "image_path": "5eb397eae23ba8116a03e4aa804b4d4ce2322a93afe9110101cb66e890e1379c.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 474, + 408, + 492.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 203, + 492.0, + 408, + 510.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 104, + 513, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 138, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 138, + 517, + 149, + 526 + ], + "score": 0.79, + "content": "y _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 513, + 306, + 529 + ], + "score": 1.0, + "content": "is the start-of-sequence symbol,", + "type": "text" + }, + { + "bbox": [ + 306, + 516, + 333, + 528 + ], + "score": 0.89, + "content": "y _ { \\vert \\pmb { y } \\vert + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 513, + 506, + 529 + ], + "score": 1.0, + "content": "is the end-of-sequence symbol, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 190, + 538 + ], + "score": 0.88, + "content": "\\mathrm { T L M } \\big ( \\langle y _ { 0 } , . . . , y _ { t - 1 } \\rangle \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 525, + 410, + 540 + ], + "score": 1.0, + "content": "returns the softmax distribution over tags at position", + "type": "text" + }, + { + "bbox": [ + 410, + 527, + 415, + 536 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 525, + 506, + 540 + ], + "score": 1.0, + "content": "(under the pretrained", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 368, + 551 + ], + "score": 1.0, + "content": "tag language model) given the preceding tag vectors. When each", + "type": "text" + }, + { + "bbox": [ + 369, + 539, + 379, + 549 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "is a one-hot vector, this energy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 400, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 388, + 562 + ], + "score": 1.0, + "content": "reduces to the negative log-likelihood of the tag sequence specified by", + "type": "text" + }, + { + "bbox": [ + 388, + 550, + 396, + 560 + ], + "score": 0.77, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 547, + 400, + 562 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 513, + 506, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 579 + ], + "score": 1.0, + "content": "We define the new joint energy as the sum of the energy function in Eq. (13) and the TLM energy", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "function in Eq. (14). During learning, we keep the TLM parameters fixed to their pretrained values,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 586, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 329, + 600 + ], + "score": 1.0, + "content": "but we tune the weight of the TLM energy (over the set", + "type": "text" + }, + { + "bbox": [ + 329, + 587, + 389, + 599 + ], + "score": 0.8, + "content": "\\{ 0 . 1 , 0 . 2 , 0 . 5 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 586, + 506, + 600 + ], + "score": 1.0, + "content": "in the joint energy. We train", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 506, + 611 + ], + "score": 1.0, + "content": "SPENs with the new joint energy using the margin-rescaled hinge, training the inference network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 610, + 220, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 220, + 622 + ], + "score": 1.0, + "content": "with the cross entropy term.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 564, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 104, + 625, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "Table 5 shows results.4 Adding the TLM energy leads to a gain of 0.6 on the test set. Other settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "showed more variance; when using slack-rescaled hinge, we found a small drop on test, while when", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "simply training inference networks for a fixed, pretrained joint energy with tuned mixture coefficient,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "we found a gain of 0.3 on test when adding the TLM energy. We investigated the improvements and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "found some to involve corrections that seemingly stem from handling non-local dependencies better.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "Table 10 in the appendix shows examples in which the model with the TLM appears to be better at", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "using the broader context when making tagging decisions. These results suggest that our method of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 219 + ], + "score": 1.0, + "content": "training inference networks can be used to add rich features to structured prediction, though we leave", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 217, + 335, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 335, + 229 + ], + "score": 1.0, + "content": "a thorough exploration of global energies to future work.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 625, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 126, + 504, + 180 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 89, + 505, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "score": 1.0, + "content": "Table 6: Comparison of test-time inference algorithms for a trained CRF (Twitter POS tagging). We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "show the test accuracy for the inference network setting that does best on validation. All inference", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 111, + 434, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 434, + 124 + ], + "score": 1.0, + "content": "networks use the same architecture and therefore have essentially the same speed.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 107, + 126, + 504, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 126, + 504, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 126, + 504, + 180 + ], + "score": 0.972, + "html": "
test-time inference algorithmval. accuracy (%)test accuracy (%)speed (examples/sec)
Viterbialgorithm89.189.2500
Inference network + cross entropy89.789.51250
Inference network+ entropy89.6
Inference network + squared L2 distance88.9
", + "type": "table", + "image_path": "561df4aea97afbad078266a90ebf6a32391e3c2f361ff2f78b753fbb2276ec13.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 107, + 126, + 504, + 144.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 144.0, + 504, + 162.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 162.0, + 504, + 180.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 219 + ], + "score": 1.0, + "content": "training inference networks can be used to add rich features to structured prediction, though we leave", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 217, + 335, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 335, + 229 + ], + "score": 1.0, + "content": "a thorough exploration of global energies to future work.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 109, + 242, + 454, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 456, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 456, + 255 + ], + "score": 1.0, + "content": "7.2.5 BEYOND SPENS: INFERENCE NETWORKS FOR STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "We note that inference networks can be used for any prediction problem. We now explore the use of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "an inference network to approximate test-time inference for a trained CRF. The results are shown", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "in Table 6. All results use the same trained CRF energy function (Eq. (12)), trained to minimize", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "log loss using the forward-backward algorithm for exact inference during training. The first row", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "shows accuracy and speed when using Viterbi for test-time inference, which is the same setting as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "the “CRF” row in Table 4. Subsequent rows show results when training inference networks to mimic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 327, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 341 + ], + "score": 1.0, + "content": "Viterbi with various stabilization terms. When training these inference networks, we train them on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "the training set and tune based on early stopping on the validation set. The energy stays fixed while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 351, + 231, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 231, + 361 + ], + "score": 1.0, + "content": "inference networks are trained.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "When using either entropy or cross entropy, our inference networks outperform Viterbi while doubling", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 243, + 390 + ], + "score": 1.0, + "content": "its speed. When using the squared", + "type": "text" + }, + { + "bbox": [ + 243, + 379, + 256, + 389 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "distance term (which regularizes the inference network toward", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 478, + 401 + ], + "score": 1.0, + "content": "the pretrained BLSTM), the accuracy reduces to be closer to that of the BLSTM, which reaches", + "type": "text" + }, + { + "bbox": [ + 478, + 389, + 505, + 400 + ], + "score": 0.84, + "content": "8 8 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "score": 1.0, + "content": "on validation (see Table 4). When using no stabilization terms for the inference network, learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "score": 1.0, + "content": "fails, reaching", + "type": "text" + }, + { + "bbox": [ + 167, + 411, + 194, + 422 + ], + "score": 0.85, + "content": "1 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "on the development set, showing the importance of using some stabilization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 277, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 277, + 434 + ], + "score": 1.0, + "content": "term while training the inference network.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "These results show promise for training inference networks to speed up combinatorial algorithms for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 450, + 270, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 270, + 461 + ], + "score": 1.0, + "content": "structured prediction and other domains.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 309, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 310, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 310, + 494 + ], + "score": 1.0, + "content": "8 CONCLUSIONS AND FUTURE WORK", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 505, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "We presented ways to jointly train structured energy functions and inference networks using large-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "margin objectives. The energy function captures arbitrary dependencies among the labels, while the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "inference networks learns to capture the properties of the energy in an efficient manner, yielding fast", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "test-time inference. Future work includes exploring the space of network architectures for inference", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "networks to balance accuracy and efficiency, experimenting with additional global terms in structured", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 560, + 473, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 473, + 573 + ], + "score": 1.0, + "content": "energy functions, and exploring richer structured output spaces such as trees and sentences.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 108, + 586, + 200, + 596 + ], + "lines": [ + { + "bbox": [ + 107, + 587, + 200, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 587, + 200, + 597 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "We thank the anonymous reviewers, David Belanger, Weiran Wang and Zheng Cai. We also thank", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 616, + 358, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 358, + 629 + ], + "score": 1.0, + "content": "NVIDIA Corporation for donating GPUs used in this research.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 646, + 176, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 177, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 177, + 660 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 664, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 504, + 678 + ], + "score": 1.0, + "content": "Brandon Amos, Lei Xu, and J. Zico Kolter. Input convex neural networks. In Proc. of ICML, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 490, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 490, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 490, + 701 + ], + "score": 1.0, + "content": "Jimmy Ba and Rich Caruana. Do deep nets really need to be deep? In Advances in NIPS, 2014.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "David Belanger and Andrew McCallum. Structured prediction energy networks. In Proc. of ICML,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 719, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 143, + 733 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 126, + 504, + 180 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 89, + 505, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "score": 1.0, + "content": "Table 6: Comparison of test-time inference algorithms for a trained CRF (Twitter POS tagging). We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "show the test accuracy for the inference network setting that does best on validation. All inference", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 111, + 434, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 434, + 124 + ], + "score": 1.0, + "content": "networks use the same architecture and therefore have essentially the same speed.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 107, + 126, + 504, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 126, + 504, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 126, + 504, + 180 + ], + "score": 0.972, + "html": "
test-time inference algorithmval. accuracy (%)test accuracy (%)speed (examples/sec)
Viterbialgorithm89.189.2500
Inference network + cross entropy89.789.51250
Inference network+ entropy89.6
Inference network + squared L2 distance88.9
", + "type": "table", + "image_path": "561df4aea97afbad078266a90ebf6a32391e3c2f361ff2f78b753fbb2276ec13.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 107, + 126, + 504, + 144.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 144.0, + 504, + 162.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 162.0, + 504, + 180.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 504, + 228 + ], + "lines": [], + "index": 6.5, + "bbox_fs": [ + 105, + 205, + 505, + 229 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 109, + 242, + 454, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 456, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 456, + 255 + ], + "score": 1.0, + "content": "7.2.5 BEYOND SPENS: INFERENCE NETWORKS FOR STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "We note that inference networks can be used for any prediction problem. We now explore the use of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "an inference network to approximate test-time inference for a trained CRF. The results are shown", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "in Table 6. All results use the same trained CRF energy function (Eq. (12)), trained to minimize", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "log loss using the forward-backward algorithm for exact inference during training. The first row", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "shows accuracy and speed when using Viterbi for test-time inference, which is the same setting as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "the “CRF” row in Table 4. Subsequent rows show results when training inference networks to mimic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 327, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 341 + ], + "score": 1.0, + "content": "Viterbi with various stabilization terms. When training these inference networks, we train them on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "the training set and tune based on early stopping on the validation set. The energy stays fixed while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 351, + 231, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 231, + 361 + ], + "score": 1.0, + "content": "inference networks are trained.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 263, + 506, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "When using either entropy or cross entropy, our inference networks outperform Viterbi while doubling", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 243, + 390 + ], + "score": 1.0, + "content": "its speed. When using the squared", + "type": "text" + }, + { + "bbox": [ + 243, + 379, + 256, + 389 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "distance term (which regularizes the inference network toward", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 478, + 401 + ], + "score": 1.0, + "content": "the pretrained BLSTM), the accuracy reduces to be closer to that of the BLSTM, which reaches", + "type": "text" + }, + { + "bbox": [ + 478, + 389, + 505, + 400 + ], + "score": 0.84, + "content": "8 8 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "score": 1.0, + "content": "on validation (see Table 4). When using no stabilization terms for the inference network, learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "score": 1.0, + "content": "fails, reaching", + "type": "text" + }, + { + "bbox": [ + 167, + 411, + 194, + 422 + ], + "score": 0.85, + "content": "1 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "on the development set, showing the importance of using some stabilization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 277, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 277, + 434 + ], + "score": 1.0, + "content": "term while training the inference network.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 366, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "These results show promise for training inference networks to speed up combinatorial algorithms for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 450, + 270, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 270, + 461 + ], + "score": 1.0, + "content": "structured prediction and other domains.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 438, + 506, + 461 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 309, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 310, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 310, + 494 + ], + "score": 1.0, + "content": "8 CONCLUSIONS AND FUTURE WORK", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 505, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "We presented ways to jointly train structured energy functions and inference networks using large-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "margin objectives. The energy function captures arbitrary dependencies among the labels, while the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "inference networks learns to capture the properties of the energy in an efficient manner, yielding fast", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "test-time inference. Future work includes exploring the space of network architectures for inference", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "networks to balance accuracy and efficiency, experimenting with additional global terms in structured", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 560, + 473, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 473, + 573 + ], + "score": 1.0, + "content": "energy functions, and exploring richer structured output spaces such as trees and sentences.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 505, + 506, + 573 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 586, + 200, + 596 + ], + "lines": [ + { + "bbox": [ + 107, + 587, + 200, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 587, + 200, + 597 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "We thank the anonymous reviewers, David Belanger, Weiran Wang and Zheng Cai. We also thank", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 616, + 358, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 358, + 629 + ], + "score": 1.0, + "content": "NVIDIA Corporation for donating GPUs used in this research.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 605, + 505, + 629 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 646, + 176, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 177, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 177, + 660 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 664, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 504, + 678 + ], + "score": 1.0, + "content": "Brandon Amos, Lei Xu, and J. Zico Kolter. Input convex neural networks. In Proc. of ICML, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 664, + 504, + 678 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 490, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 490, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 490, + 701 + ], + "score": 1.0, + "content": "Jimmy Ba and Rich Caruana. Do deep nets really need to be deep? In Advances in NIPS, 2014.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 687, + 490, + 701 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "David Belanger and Andrew McCallum. Structured prediction energy networks. In Proc. of ICML,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 719, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 143, + 733 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 708, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "David Belanger, Bishan Yang, and Andrew McCallum. End-to-end learning for structured prediction", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 288, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 288, + 106 + ], + "score": 1.0, + "content": "energy networks. In Proc. of ICML, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Kai-Wei Chang, Shyam Upadhyay, Gourab Kundu, and Dan Roth. Structural learning with amortized", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 257, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 257, + 135 + ], + "score": 1.0, + "content": "inference. In Proc. of AAAI, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "score": 1.0, + "content": "Michael Collins. Discriminative training methods for hidden Markov models: Theory and experiments", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 152, + 338, + 164 + ], + "spans": [ + { + "bbox": [ + 116, + 152, + 338, + 164 + ], + "score": 1.0, + "content": "with perceptron algorithms. In Proc. of EMNLP, 2002.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 105, + 170, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 185 + ], + "score": 1.0, + "content": "Zihang Dai, Amjad Almahairi, Bachman Philip, Eduard Hovy, and Aaron Courville. Calibrating", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 401, + 194 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 401, + 194 + ], + "score": 1.0, + "content": "energy-based generative adversarial networks. In Proc. of ICLR, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 486, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 485, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 485, + 213 + ], + "score": 1.0, + "content": "Justin Domke. Generic methods for optimization-based modeling. In Proc. of AISTATS, 2012.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 218, + 506, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 231 + ], + "score": 1.0, + "content": "Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge. A neural algorithm of artistic style. CoRR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 230, + 209, + 241 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 209, + 241 + ], + "score": 1.0, + "content": "abs/1508.06576, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 505, + 262 + ], + "score": 1.0, + "content": "Krzysztof J. Geras, Abdel rahman Mohamed, Rich Caruana, Gregor Urban, Shengjie Wang, Ozlem", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "Aslan, Matthai Philipose, Matthew Richardson, and Charles Sutton. Blending LSTMs into CNNs.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 283, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 283, + 282 + ], + "score": 1.0, + "content": "In Proc. of ICLR (workshop track), 2016.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 104, + 288, + 506, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 303 + ], + "score": 1.0, + "content": "Samuel Gershman and Noah Goodman. Amortized inference in probabilistic reasoning. In Proc. of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 299, + 264, + 312 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 264, + 312 + ], + "score": 1.0, + "content": "the Cognitive Science Society, 2014.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 318, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 332 + ], + "score": 1.0, + "content": "Kevin Gimpel, Nathan Schneider, Brendan O’Connor, Dipanjan Das, Daniel Mills, Jacob Eisenstein,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 327, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 506, + 344 + ], + "score": 1.0, + "content": "Michael Heilman, Dani Yogatama, Jeffrey Flanigan, and Noah A. Smith. Part-of-speech tagging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 340, + 413, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 413, + 353 + ], + "score": 1.0, + "content": "for Twitter: annotation, features, and experiments. In Proc. of ACL, 2011.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 104, + 358, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 370, + 496, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 370, + 496, + 381 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in NIPS, 2014.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 105, + 388, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 107, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 107, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Kartik Goyal, Graham Neubig, Chris Dyer, and Taylor Berg-Kirkpatrick. A continuous relaxation of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 399, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 399, + 470, + 412 + ], + "score": 1.0, + "content": "beam search for end-to-end training of neural sequence models. In Proc. of AAAI, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 504, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeffrey Dean. Distilling the knowledge in a neural network. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 429, + 272, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 272, + 442 + ], + "score": 1.0, + "content": "NIPS Deep Learning Workshop, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "Cong Duy Vu Hoang, Gholamreza Haffari, and Trevor Cohn. Towards decoding as continuous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 458, + 399, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 399, + 471 + ], + "score": 1.0, + "content": "optimisation in neural machine translation. In Proc. of EMNLP, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 476, + 496, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 497, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 497, + 491 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural Computation, 1997.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Justin Johnson, Alexandre Alahi, and Li Fei-Fei. Perceptual losses for real-time style transfer and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 506, + 288, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 288, + 519 + ], + "score": 1.0, + "content": "super-resolution. In Proc. of ECCV, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 507, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 507, + 538 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proc. of EMNLP,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 533, + 143, + 549 + ], + "spans": [ + { + "bbox": [ + 114, + 533, + 143, + 549 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 565, + 142, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 142, + 578 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 583, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 507, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 507, + 597 + ], + "score": 1.0, + "content": "Diederik Kingma and Max Welling. Auto-encoding variational Bayes. CoRR, abs/1312.6114, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "Daphne Koller and Nir Friedman. Probabilistic Graphical Models: Principles and Techniques. 2009.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "Philipp Krähenbühl and Vladlen Koltun. Efficient inference in fully connected CRFs with Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 632, + 296, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 296, + 644 + ], + "score": 1.0, + "content": "edge potentials. In Advances in NIPS, 2011.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "Adhiguna Kuncoro, Miguel Ballesteros, Lingpeng Kong, Chris Dyer, and Noah A. Smith. Distilling", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 662, + 484, + 675 + ], + "spans": [ + { + "bbox": [ + 116, + 662, + 484, + 675 + ], + "score": 1.0, + "content": "an ensemble of greedy dependency parsers into one MST parser. In Proc. of EMNLP, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. Conditional random fields:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 691, + 475, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 475, + 704 + ], + "score": 1.0, + "content": "Probabilistic models for segmenting and labeling sequence data. In Proc. of ICML, 2001.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Yann LeCun, Sumit Chopra, Raia Hadsell, Marc’Aurelio Ranzato, and Fu-Jie Huang. A tutorial on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 721, + 406, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 406, + 732 + ], + "score": 1.0, + "content": "energy-based learning. In Predicting Structured Data. MIT Press, 2006.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "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": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "David Belanger, Bishan Yang, and Andrew McCallum. End-to-end learning for structured prediction", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 288, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 288, + 106 + ], + "score": 1.0, + "content": "energy networks. In Proc. of ICML, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Kai-Wei Chang, Shyam Upadhyay, Gourab Kundu, and Dan Roth. Structural learning with amortized", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 257, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 257, + 135 + ], + "score": 1.0, + "content": "inference. In Proc. of AAAI, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 506, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "score": 1.0, + "content": "Michael Collins. Discriminative training methods for hidden Markov models: Theory and experiments", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 152, + 338, + 164 + ], + "spans": [ + { + "bbox": [ + 116, + 152, + 338, + 164 + ], + "score": 1.0, + "content": "with perceptron algorithms. In Proc. of EMNLP, 2002.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 140, + 505, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 170, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 185 + ], + "score": 1.0, + "content": "Zihang Dai, Amjad Almahairi, Bachman Philip, Eduard Hovy, and Aaron Courville. Calibrating", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 401, + 194 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 401, + 194 + ], + "score": 1.0, + "content": "energy-based generative adversarial networks. In Proc. of ICLR, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 169, + 506, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 486, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 485, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 485, + 213 + ], + "score": 1.0, + "content": "Justin Domke. Generic methods for optimization-based modeling. In Proc. of AISTATS, 2012.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 199, + 485, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 218, + 506, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 231 + ], + "score": 1.0, + "content": "Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge. A neural algorithm of artistic style. CoRR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 230, + 209, + 241 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 209, + 241 + ], + "score": 1.0, + "content": "abs/1508.06576, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 218, + 506, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 505, + 262 + ], + "score": 1.0, + "content": "Krzysztof J. Geras, Abdel rahman Mohamed, Rich Caruana, Gregor Urban, Shengjie Wang, Ozlem", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "Aslan, Matthai Philipose, Matthew Richardson, and Charles Sutton. Blending LSTMs into CNNs.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 283, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 283, + 282 + ], + "score": 1.0, + "content": "In Proc. of ICLR (workshop track), 2016.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 247, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 288, + 506, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 303 + ], + "score": 1.0, + "content": "Samuel Gershman and Noah Goodman. Amortized inference in probabilistic reasoning. In Proc. of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 299, + 264, + 312 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 264, + 312 + ], + "score": 1.0, + "content": "the Cognitive Science Society, 2014.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 287, + 506, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 318, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 332 + ], + "score": 1.0, + "content": "Kevin Gimpel, Nathan Schneider, Brendan O’Connor, Dipanjan Das, Daniel Mills, Jacob Eisenstein,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 327, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 506, + 344 + ], + "score": 1.0, + "content": "Michael Heilman, Dani Yogatama, Jeffrey Flanigan, and Noah A. Smith. Part-of-speech tagging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 340, + 413, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 413, + 353 + ], + "score": 1.0, + "content": "for Twitter: annotation, features, and experiments. In Proc. of ACL, 2011.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 317, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 358, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 370, + 496, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 370, + 496, + 381 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in NIPS, 2014.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 358, + 506, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 388, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 107, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 107, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Kartik Goyal, Graham Neubig, Chris Dyer, and Taylor Berg-Kirkpatrick. A continuous relaxation of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 399, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 399, + 470, + 412 + ], + "score": 1.0, + "content": "beam search for end-to-end training of neural sequence models. In Proc. of AAAI, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 107, + 389, + 505, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 504, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeffrey Dean. Distilling the knowledge in a neural network. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 429, + 272, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 272, + 442 + ], + "score": 1.0, + "content": "NIPS Deep Learning Workshop, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 417, + 505, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "Cong Duy Vu Hoang, Gholamreza Haffari, and Trevor Cohn. Towards decoding as continuous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 458, + 399, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 399, + 471 + ], + "score": 1.0, + "content": "optimisation in neural machine translation. In Proc. of EMNLP, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 446, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 476, + 496, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 497, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 497, + 491 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural Computation, 1997.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 475, + 497, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Justin Johnson, Alexandre Alahi, and Li Fei-Fei. Perceptual losses for real-time style transfer and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 506, + 288, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 288, + 519 + ], + "score": 1.0, + "content": "super-resolution. In Proc. of ECCV, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 495, + 505, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 507, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 507, + 538 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proc. of EMNLP,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 533, + 143, + 549 + ], + "spans": [ + { + "bbox": [ + 114, + 533, + 143, + 549 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 523, + 507, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 565, + 142, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 142, + 578 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 554, + 506, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 583, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 507, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 507, + 597 + ], + "score": 1.0, + "content": "Diederik Kingma and Max Welling. Auto-encoding variational Bayes. CoRR, abs/1312.6114, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 583, + 507, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "Daphne Koller and Nir Friedman. Probabilistic Graphical Models: Principles and Techniques. 2009.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 602, + 506, + 616 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "Philipp Krähenbühl and Vladlen Koltun. Efficient inference in fully connected CRFs with Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 632, + 296, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 296, + 644 + ], + "score": 1.0, + "content": "edge potentials. In Advances in NIPS, 2011.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 621, + 505, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "Adhiguna Kuncoro, Miguel Ballesteros, Lingpeng Kong, Chris Dyer, and Noah A. Smith. Distilling", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 662, + 484, + 675 + ], + "spans": [ + { + "bbox": [ + 116, + 662, + 484, + 675 + ], + "score": 1.0, + "content": "an ensemble of greedy dependency parsers into one MST parser. In Proc. of EMNLP, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 649, + 506, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. Conditional random fields:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 691, + 475, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 475, + 704 + ], + "score": 1.0, + "content": "Probabilistic models for segmenting and labeling sequence data. In Proc. of ICML, 2001.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 680, + 504, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Yann LeCun, Sumit Chopra, Raia Hadsell, Marc’Aurelio Ranzato, and Fu-Jie Huang. A tutorial on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 721, + 406, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 406, + 732 + ], + "score": 1.0, + "content": "energy-based learning. In Predicting Structured Data. MIT Press, 2006.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Chuan Li and Michael Wand. Precomputed real-time texture synthesis with Markovian generative", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 327, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 327, + 105 + ], + "score": 1.0, + "content": "adversarial networks. CoRR, abs/1604.04382, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 113, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 114, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 126 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 209, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 209, + 138 + ], + "score": 1.0, + "content": "In Proc. of ACL, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 145, + 504, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 506, + 159 + ], + "score": 1.0, + "content": "André F. T. Martins and Julia Kreutzer. Learning what’s easy: Fully differentiable neural easy-first", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 157, + 259, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 259, + 169 + ], + "score": 1.0, + "content": "taggers. In Proc. of EMNLP, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 188, + 426, + 200 + ], + "spans": [ + { + "bbox": [ + 117, + 188, + 426, + 200 + ], + "score": 1.0, + "content": "of words and phrases and their compositionality. In Advances in NIPS, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Alexander Mordvintsev, Christopher Olah, and Mike Tyka. DeepDream-a code example for visualiz-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 220, + 300, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 220, + 300, + 231 + ], + "score": 1.0, + "content": "ing neural networks. Google Research, 2015.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 239, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 506, + 252 + ], + "score": 1.0, + "content": "Olutobi Owoputi, Brendan O’Connor, Chris Dyer, Kevin Gimpel, Nathan Schneider, and Noah A.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "score": 1.0, + "content": "Smith. Improved part-of-speech tagging for online conversational text with word clusters. In Proc.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 262, + 188, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 188, + 274 + ], + "score": 1.0, + "content": "of NAACL, 2013.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 282, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Brooks Paige and Frank Wood. Inference networks for sequential Monte Carlo in graphical models.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 293, + 215, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 215, + 306 + ], + "score": 1.0, + "content": "In Proc. of ICML, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Richard Socher, and Christopher D. Manning. GloVe: Global vectors for word", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 326, + 286, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 286, + 338 + ], + "score": 1.0, + "content": "representation. In Proc. of EMNLP, 2014.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Gabriel Pereyra, George Tucker, Jan Chorowski, Lukasz Kaiser, and Geoffrey E. Hinton. Regularizing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 357, + 416, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 416, + 369 + ], + "score": 1.0, + "content": "neural networks by penalizing confident output distributions. CoRR, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 391 + ], + "score": 1.0, + "content": "Lev Ratinov and Dan Roth. Design challenges and misconceptions in named entity recognition. In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 388, + 210, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 210, + 401 + ], + "score": 1.0, + "content": "Proc. of CoNLL, 2009.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 105, + 408, + 504, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 419, + 433, + 432 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 433, + 432 + ], + "score": 1.0, + "content": "Xi Chen. Improved techniques for training GANs. In Advances in NIPS, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 440, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 507, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 507, + 454 + ], + "score": 1.0, + "content": "Vivek Srikumar, Gourab Kundu, and Dan Roth. On amortizing inference cost for structured prediction.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 451, + 224, + 464 + ], + "spans": [ + { + "bbox": [ + 115, + 451, + 224, + 464 + ], + "score": 1.0, + "content": "In Proc. of EMNLP, 2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 504, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "Ben Taskar, Carlos Guestrin, and Daphne Koller. Max-margin Markov networks. In Advances in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 483, + 168, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 168, + 495 + ], + "score": 1.0, + "content": "NIPS, 2004.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Erik F. Tjong Kim Sang and Fien De Meulder. Introduction to the CoNLL-2003 shared task:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 514, + 422, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 422, + 527 + ], + "score": 1.0, + "content": "Language-independent named entity recognition. In Proc. of CONLL, 2003.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 105, + 534, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "Ioannis Tsochantaridis, Thorsten Joachims, Thomas Hofmann, and Yasemin Altun. Large margin", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 546, + 411, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 411, + 558 + ], + "score": 1.0, + "content": "methods for structured and interdependent output variables. JMLR, 2005.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 104, + 566, + 505, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "Lifu Tu, Kevin Gimpel, and Karen Livescu. Learning to embed words in context for syntactic tasks.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 577, + 236, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 236, + 590 + ], + "score": 1.0, + "content": "In Proc. of RepL4NLP, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "Gregor Urban, Krzysztof J. Geras, Samira Ebrahimi Kahou, Ozlem Aslan, Shengjie Wang, Rich Caru-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "ana, Abdel-rahman Mohamed, Matthai Philipose, and Matthew Richardson. Do deep convolutional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 620, + 393, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 620, + 393, + 632 + ], + "score": 1.0, + "content": "nets really need to be deep? arXiv preprint arXiv:1603.05691, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 504, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 506, + 654 + ], + "score": 1.0, + "content": "Shenlong Wang, Sanja Fidler, and Raquel Urtasun. Proximal deep structured models. In Advances in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 651, + 167, + 663 + ], + "spans": [ + { + "bbox": [ + 114, + 651, + 167, + 663 + ], + "score": 1.0, + "content": "NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 105, + 672, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "Sam Wiseman and Alexander M. Rush. Sequence-to-sequence learning as beam-search optimization.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 683, + 223, + 695 + ], + "spans": [ + { + "bbox": [ + 115, + 683, + 223, + 695 + ], + "score": 1.0, + "content": "In Proc. of EMNLP, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 703, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 703, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 506, + 717 + ], + "score": 1.0, + "content": "Junbo Jake Zhao, Michaël Mathieu, and Yann LeCun. Energy-based generative adversarial network.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 714, + 170, + 727 + ], + "spans": [ + { + "bbox": [ + 116, + 714, + 170, + 727 + ], + "score": 1.0, + "content": "CoRR, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Chuan Li and Michael Wand. Precomputed real-time texture synthesis with Markovian generative", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 327, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 327, + 105 + ], + "score": 1.0, + "content": "adversarial networks. CoRR, abs/1604.04382, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 113, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 114, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 126 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 209, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 209, + 138 + ], + "score": 1.0, + "content": "In Proc. of ACL, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 114, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 145, + 504, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 506, + 159 + ], + "score": 1.0, + "content": "André F. T. Martins and Julia Kreutzer. Learning what’s easy: Fully differentiable neural easy-first", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 157, + 259, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 259, + 169 + ], + "score": 1.0, + "content": "taggers. In Proc. of EMNLP, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 144, + 506, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 188, + 426, + 200 + ], + "spans": [ + { + "bbox": [ + 117, + 188, + 426, + 200 + ], + "score": 1.0, + "content": "of words and phrases and their compositionality. In Advances in NIPS, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 176, + 505, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Alexander Mordvintsev, Christopher Olah, and Mike Tyka. DeepDream-a code example for visualiz-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 220, + 300, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 220, + 300, + 231 + ], + "score": 1.0, + "content": "ing neural networks. Google Research, 2015.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 208, + 506, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 239, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 506, + 252 + ], + "score": 1.0, + "content": "Olutobi Owoputi, Brendan O’Connor, Chris Dyer, Kevin Gimpel, Nathan Schneider, and Noah A.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "score": 1.0, + "content": "Smith. Improved part-of-speech tagging for online conversational text with word clusters. In Proc.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 262, + 188, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 188, + 274 + ], + "score": 1.0, + "content": "of NAACL, 2013.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 240, + 507, + 274 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 282, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Brooks Paige and Frank Wood. Inference networks for sequential Monte Carlo in graphical models.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 293, + 215, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 215, + 306 + ], + "score": 1.0, + "content": "In Proc. of ICML, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 282, + 506, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Richard Socher, and Christopher D. Manning. GloVe: Global vectors for word", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 326, + 286, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 286, + 338 + ], + "score": 1.0, + "content": "representation. In Proc. of EMNLP, 2014.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 314, + 505, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Gabriel Pereyra, George Tucker, Jan Chorowski, Lukasz Kaiser, and Geoffrey E. Hinton. Regularizing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 357, + 416, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 416, + 369 + ], + "score": 1.0, + "content": "neural networks by penalizing confident output distributions. CoRR, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 344, + 506, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 391 + ], + "score": 1.0, + "content": "Lev Ratinov and Dan Roth. Design challenges and misconceptions in named entity recognition. In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 388, + 210, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 210, + 401 + ], + "score": 1.0, + "content": "Proc. of CoNLL, 2009.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 375, + 505, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 408, + 504, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 419, + 433, + 432 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 433, + 432 + ], + "score": 1.0, + "content": "Xi Chen. Improved techniques for training GANs. In Advances in NIPS, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 408, + 505, + 432 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 440, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 507, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 507, + 454 + ], + "score": 1.0, + "content": "Vivek Srikumar, Gourab Kundu, and Dan Roth. On amortizing inference cost for structured prediction.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 451, + 224, + 464 + ], + "spans": [ + { + "bbox": [ + 115, + 451, + 224, + 464 + ], + "score": 1.0, + "content": "In Proc. of EMNLP, 2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 438, + 507, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 504, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "Ben Taskar, Carlos Guestrin, and Daphne Koller. Max-margin Markov networks. In Advances in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 483, + 168, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 168, + 495 + ], + "score": 1.0, + "content": "NIPS, 2004.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 471, + 506, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Erik F. Tjong Kim Sang and Fien De Meulder. Introduction to the CoNLL-2003 shared task:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 514, + 422, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 422, + 527 + ], + "score": 1.0, + "content": "Language-independent named entity recognition. In Proc. of CONLL, 2003.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 503, + 506, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 534, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "Ioannis Tsochantaridis, Thorsten Joachims, Thomas Hofmann, and Yasemin Altun. Large margin", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 546, + 411, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 411, + 558 + ], + "score": 1.0, + "content": "methods for structured and interdependent output variables. JMLR, 2005.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 534, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 566, + 505, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "Lifu Tu, Kevin Gimpel, and Karen Livescu. Learning to embed words in context for syntactic tasks.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 577, + 236, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 236, + 590 + ], + "score": 1.0, + "content": "In Proc. of RepL4NLP, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 566, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "Gregor Urban, Krzysztof J. Geras, Samira Ebrahimi Kahou, Ozlem Aslan, Shengjie Wang, Rich Caru-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "ana, Abdel-rahman Mohamed, Matthai Philipose, and Matthew Richardson. Do deep convolutional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 620, + 393, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 620, + 393, + 632 + ], + "score": 1.0, + "content": "nets really need to be deep? arXiv preprint arXiv:1603.05691, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 597, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 504, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 506, + 654 + ], + "score": 1.0, + "content": "Shenlong Wang, Sanja Fidler, and Raquel Urtasun. Proximal deep structured models. In Advances in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 651, + 167, + 663 + ], + "spans": [ + { + "bbox": [ + 114, + 651, + 167, + 663 + ], + "score": 1.0, + "content": "NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 639, + 506, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 672, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "Sam Wiseman and Alexander M. Rush. Sequence-to-sequence learning as beam-search optimization.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 683, + 223, + 695 + ], + "spans": [ + { + "bbox": [ + 115, + 683, + 223, + 695 + ], + "score": 1.0, + "content": "In Proc. of EMNLP, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 671, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 703, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 703, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 506, + 717 + ], + "score": 1.0, + "content": "Junbo Jake Zhao, Michaël Mathieu, and Yann LeCun. Energy-based generative adversarial network.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 714, + 170, + 727 + ], + "spans": [ + { + "bbox": [ + 116, + 714, + 170, + 727 + ], + "score": 1.0, + "content": "CoRR, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 703, + 506, + 727 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 102, + 428, + 146 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 186, + 89, + 423, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 88, + 424, + 102 + ], + "spans": [ + { + "bbox": [ + 187, + 88, + 424, + 102 + ], + "score": 1.0, + "content": "Table 7: Statistics of the multi-label classification datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 183, + 102, + 428, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 102, + 428, + 146 + ], + "spans": [ + { + "bbox": [ + 183, + 102, + 428, + 146 + ], + "score": 0.973, + "html": "
#labels# features#train#dev#test
Bibtex15918364836-2515
Bookmarks2082151480001200027856
Delicious98250112896-3185
", + "type": "table", + "image_path": "20e02680d9cca921396e957ae30f49b9ef6cfffa364deb938399a824a2f9d8f1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 183, + 102, + 428, + 116.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 183, + 116.66666666666667, + 428, + 131.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 183, + 131.33333333333334, + 428, + 146.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 207, + 196, + 403, + 249 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 172, + 504, + 194 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Table 8: Development F1 for Bookmarks when comparing hinge losses for SPEN (InfNet) and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 183, + 270, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 270, + 195 + ], + "score": 1.0, + "content": "whether to retune the inference network.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 207, + 196, + 403, + 249 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 207, + 196, + 403, + 249 + ], + "spans": [ + { + "bbox": [ + 207, + 196, + 403, + 249 + ], + "score": 0.97, + "html": "
hinge loss-retuning+retuning
margin rescaling38.5138.68
slack rescaling38.5738.62
perceptron (MR,△= 0)38.5538.70
contrastive (△= 1)38.8038.88
", + "type": "table", + "image_path": "fa2d86b3c7ba7b4ae31a000e1a9f9501718a743a237f4a4feeaeffb78aae75ad.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 196, + 403, + 209.25 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 207, + 209.25, + 403, + 222.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 207, + 222.5, + 403, + 235.75 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 207, + 235.75, + 403, + 249.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 106, + 275, + 180, + 288 + ], + "lines": [ + { + "bbox": [ + 104, + 273, + 182, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 273, + 182, + 291 + ], + "score": 1.0, + "content": "9 APPENDIX", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 302, + 267, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 268, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 268, + 315 + ], + "score": 1.0, + "content": "9.1 MULTI-LABEL CLASSIFICATION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 397, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 398, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 398, + 337 + ], + "score": 1.0, + "content": "Table 7 shows dataset statistics for the multi-label classification datasets.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 224, + 355 + ], + "score": 1.0, + "content": "Hyperparameter Tuning.", + "type": "text" + }, + { + "bbox": [ + 245, + 340, + 297, + 354 + ], + "score": 1.0, + "content": "We tune", + "type": "text" + }, + { + "bbox": [ + 298, + 342, + 305, + 352 + ], + "score": 0.65, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 340, + 339, + 354 + ], + "score": 1.0, + "content": "(the", + "type": "text" + }, + { + "bbox": [ + 339, + 342, + 352, + 352 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 340, + 491, + 354 + ], + "score": 1.0, + "content": "regularization strength for", + "type": "text" + }, + { + "bbox": [ + 492, + 342, + 501, + 352 + ], + "score": 0.61, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 340, + 506, + 354 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 174, + 365 + ], + "score": 1.0, + "content": "over the set", + "type": "text" + }, + { + "bbox": [ + 174, + 352, + 261, + 363 + ], + "score": 0.77, + "content": "\\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 352, + 266, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 283, + 351, + 416, + 365 + ], + "score": 1.0, + "content": "The classification threshold", + "type": "text" + }, + { + "bbox": [ + 416, + 354, + 424, + 362 + ], + "score": 0.66, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 108, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 108, + 364, + 308, + 375 + ], + "score": 0.27, + "content": "[ 0 , 0 . 0 1 , 0 . 0 2 , 0 . 0 3 , 0 . 0 4 , 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75]", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "as also done by Belanger & McCallum (2016). We tune the coefficients for the three stabilization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 433, + 398 + ], + "score": 1.0, + "content": "terms for the inference network objective from Section 5 over the follow ranges:", + "type": "text" + }, + { + "bbox": [ + 433, + 385, + 446, + 396 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 228, + 408 + ], + "score": 0.88, + "content": "( \\lambda _ { 1 } ~ \\in ~ \\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 396, + 333, + 410 + ], + "score": 1.0, + "content": "), entropy regularization", + "type": "text" + }, + { + "bbox": [ + 334, + 396, + 372, + 407 + ], + "score": 0.87, + "content": "\\mathbf { \\lambda } ) _ { 2 } ~ = ~ 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 396, + 506, + 410 + ], + "score": 1.0, + "content": ", and regularization toward the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 287, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 216, + 420 + ], + "score": 1.0, + "content": "pretrained feature network", + "type": "text" + }, + { + "bbox": [ + 216, + 407, + 281, + 419 + ], + "score": 0.91, + "content": "( \\dot { \\lambda } _ { 4 } \\in \\{ 0 , 1 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 407, + 287, + 420 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "Comparison of Loss Functions and Impact of Inference Network Retuning. Table 8 shows", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 507, + 448 + ], + "score": 1.0, + "content": "results comparing the four loss functions from Section 4.2 on the development set for Bookmarks,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "the largest of the three datasets. We find performance to be highly similar across the losses, with the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 457, + 334, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 334, + 469 + ], + "score": 1.0, + "content": "contrastive loss appearing slightly better than the others.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "After training, we “retune” the inference network as specified by Eq. (5) on the development set for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "20 epochs using a smaller learning rate of 0.00001. Table 8 shows slightly higher F1 for all losses", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "score": 1.0, + "content": "with retuning. We were surprised to see that the final cost-augmented inference network performs", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "well as a test-time inference network. This suggests that by the end of training, the cost-augmented", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 474, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 474, + 531 + ], + "score": 1.0, + "content": "network may be approaching the argmin and that there may not be much need for retuning.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 156, + 547 + ], + "score": 1.0, + "content": "When using", + "type": "text" + }, + { + "bbox": [ + 156, + 535, + 185, + 545 + ], + "score": 0.9, + "content": "\\triangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "or 1, retuning leads to the same small gain as when using the margin-rescaled or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "slack-rescaled losses. Here the gain is presumably from adjusting the inference network for other", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 556, + 479, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 479, + 569 + ], + "score": 1.0, + "content": "inputs rather than from converting it from a cost-augmented to a test-time inference network.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 107, + 584, + 236, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 237, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 237, + 597 + ], + "score": 1.0, + "content": "9.2 TWITTER POS TAGGING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 259, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "score": 1.0, + "content": "9.2.1 HYPERPARAMETER TUNING", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 507, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 639 + ], + "score": 1.0, + "content": "When training inference networks and SPENs for Twitter POS tagging, we use the following hyper-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 637, + 507, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 353, + 651 + ], + "score": 1.0, + "content": "parameter tuning. We tune the inference network learning rate", + "type": "text" + }, + { + "bbox": [ + 354, + 638, + 501, + 650 + ], + "score": 0.76, + "content": "( \\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 637, + 507, + 651 + ], + "score": 1.0, + "content": "),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 119, + 660 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 648, + 181, + 661 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 181, + 649, + 369, + 660 + ], + "score": 0.79, + "content": "( \\lambda _ { 1 } \\in \\{ 0 , 1 { \\mathrm { e } } - 3 , 1 { \\mathrm { e } } - 4 , 1 { \\mathrm { e } } - 5 , 1 { \\mathrm { e } } - { \\bar { 6 } } , 1 { \\mathrm { e } } - { \\bar { 7 } } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "), the entropy regularization term", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 108, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 108, + 660, + 218, + 672 + ], + "score": 0.89, + "content": "( \\lambda _ { 2 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 660, + 374, + 673 + ], + "score": 1.0, + "content": ", the cross entropy regularization term", + "type": "text" + }, + { + "bbox": [ + 374, + 660, + 483, + 672 + ], + "score": 0.89, + "content": "( \\lambda _ { 3 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 660, + 506, + 673 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 205, + 684 + ], + "score": 1.0, + "content": "the squared L2 distance", + "type": "text" + }, + { + "bbox": [ + 206, + 671, + 331, + 682 + ], + "score": 0.88, + "content": "( \\bar { \\lambda } _ { 4 } \\in \\{ 0 , 0 . 1 , 0 . 2 , \\bar { 0 . 5 } , 1 , 2 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "). We train the energy functions with Adam", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 681, + 497, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 238, + 694 + ], + "score": 1.0, + "content": "with a learning rate of 0.001 and", + "type": "text" + }, + { + "bbox": [ + 239, + 682, + 251, + 693 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 681, + 311, + 694 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 311, + 682, + 493, + 694 + ], + "score": 0.88, + "content": "( \\lambda _ { 1 } \\in \\{ 0 , 1 \\mathrm { { e } - 3 , 1 \\mathrm { { e } - 4 , 1 \\mathrm { { e } - 5 } , 1 \\mathrm { { e } - 6 } , 1 \\mathrm { { e } - 7 } \\} ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 681, + 497, + 694 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Table 9 compares the use of the cross entropy and entropy stabilization terms when training inference", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "networks for a SPEN with margin-rescaled hinge. Cross entropy works better than entropy in this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 423, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 423, + 734 + ], + "score": 1.0, + "content": "setting, though retuning permits the latter to bridge the gap more than halfway.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "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, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 102, + 428, + 146 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 186, + 89, + 423, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 88, + 424, + 102 + ], + "spans": [ + { + "bbox": [ + 187, + 88, + 424, + 102 + ], + "score": 1.0, + "content": "Table 7: Statistics of the multi-label classification datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 183, + 102, + 428, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 102, + 428, + 146 + ], + "spans": [ + { + "bbox": [ + 183, + 102, + 428, + 146 + ], + "score": 0.973, + "html": "
#labels# features#train#dev#test
Bibtex15918364836-2515
Bookmarks2082151480001200027856
Delicious98250112896-3185
", + "type": "table", + "image_path": "20e02680d9cca921396e957ae30f49b9ef6cfffa364deb938399a824a2f9d8f1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 183, + 102, + 428, + 116.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 183, + 116.66666666666667, + 428, + 131.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 183, + 131.33333333333334, + 428, + 146.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 207, + 196, + 403, + 249 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 172, + 504, + 194 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Table 8: Development F1 for Bookmarks when comparing hinge losses for SPEN (InfNet) and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 183, + 270, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 270, + 195 + ], + "score": 1.0, + "content": "whether to retune the inference network.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 207, + 196, + 403, + 249 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 207, + 196, + 403, + 249 + ], + "spans": [ + { + "bbox": [ + 207, + 196, + 403, + 249 + ], + "score": 0.97, + "html": "
hinge loss-retuning+retuning
margin rescaling38.5138.68
slack rescaling38.5738.62
perceptron (MR,△= 0)38.5538.70
contrastive (△= 1)38.8038.88
", + "type": "table", + "image_path": "fa2d86b3c7ba7b4ae31a000e1a9f9501718a743a237f4a4feeaeffb78aae75ad.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 196, + 403, + 209.25 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 207, + 209.25, + 403, + 222.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 207, + 222.5, + 403, + 235.75 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 207, + 235.75, + 403, + 249.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 106, + 275, + 180, + 288 + ], + "lines": [ + { + "bbox": [ + 104, + 273, + 182, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 273, + 182, + 291 + ], + "score": 1.0, + "content": "9 APPENDIX", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 302, + 267, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 268, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 268, + 315 + ], + "score": 1.0, + "content": "9.1 MULTI-LABEL CLASSIFICATION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 397, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 398, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 398, + 337 + ], + "score": 1.0, + "content": "Table 7 shows dataset statistics for the multi-label classification datasets.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 323, + 398, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 224, + 355 + ], + "score": 1.0, + "content": "Hyperparameter Tuning.", + "type": "text" + }, + { + "bbox": [ + 245, + 340, + 297, + 354 + ], + "score": 1.0, + "content": "We tune", + "type": "text" + }, + { + "bbox": [ + 298, + 342, + 305, + 352 + ], + "score": 0.65, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 340, + 339, + 354 + ], + "score": 1.0, + "content": "(the", + "type": "text" + }, + { + "bbox": [ + 339, + 342, + 352, + 352 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 340, + 491, + 354 + ], + "score": 1.0, + "content": "regularization strength for", + "type": "text" + }, + { + "bbox": [ + 492, + 342, + 501, + 352 + ], + "score": 0.61, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 340, + 506, + 354 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 174, + 365 + ], + "score": 1.0, + "content": "over the set", + "type": "text" + }, + { + "bbox": [ + 174, + 352, + 261, + 363 + ], + "score": 0.77, + "content": "\\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 352, + 266, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 283, + 351, + 416, + 365 + ], + "score": 1.0, + "content": "The classification threshold", + "type": "text" + }, + { + "bbox": [ + 416, + 354, + 424, + 362 + ], + "score": 0.66, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 108, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 108, + 364, + 308, + 375 + ], + "score": 0.27, + "content": "[ 0 , 0 . 0 1 , 0 . 0 2 , 0 . 0 3 , 0 . 0 4 , 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75]", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "as also done by Belanger & McCallum (2016). We tune the coefficients for the three stabilization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 433, + 398 + ], + "score": 1.0, + "content": "terms for the inference network objective from Section 5 over the follow ranges:", + "type": "text" + }, + { + "bbox": [ + 433, + 385, + 446, + 396 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 228, + 408 + ], + "score": 0.88, + "content": "( \\lambda _ { 1 } ~ \\in ~ \\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 396, + 333, + 410 + ], + "score": 1.0, + "content": "), entropy regularization", + "type": "text" + }, + { + "bbox": [ + 334, + 396, + 372, + 407 + ], + "score": 0.87, + "content": "\\mathbf { \\lambda } ) _ { 2 } ~ = ~ 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 396, + 506, + 410 + ], + "score": 1.0, + "content": ", and regularization toward the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 287, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 216, + 420 + ], + "score": 1.0, + "content": "pretrained feature network", + "type": "text" + }, + { + "bbox": [ + 216, + 407, + 281, + 419 + ], + "score": 0.91, + "content": "( \\dot { \\lambda } _ { 4 } \\in \\{ 0 , 1 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 407, + 287, + 420 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 339, + 506, + 420 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "Comparison of Loss Functions and Impact of Inference Network Retuning. Table 8 shows", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 507, + 448 + ], + "score": 1.0, + "content": "results comparing the four loss functions from Section 4.2 on the development set for Bookmarks,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "the largest of the three datasets. We find performance to be highly similar across the losses, with the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 457, + 334, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 334, + 469 + ], + "score": 1.0, + "content": "contrastive loss appearing slightly better than the others.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 423, + 507, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "After training, we “retune” the inference network as specified by Eq. (5) on the development set for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "20 epochs using a smaller learning rate of 0.00001. Table 8 shows slightly higher F1 for all losses", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "score": 1.0, + "content": "with retuning. We were surprised to see that the final cost-augmented inference network performs", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "well as a test-time inference network. This suggests that by the end of training, the cost-augmented", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 474, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 474, + 531 + ], + "score": 1.0, + "content": "network may be approaching the argmin and that there may not be much need for retuning.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 473, + 505, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 156, + 547 + ], + "score": 1.0, + "content": "When using", + "type": "text" + }, + { + "bbox": [ + 156, + 535, + 185, + 545 + ], + "score": 0.9, + "content": "\\triangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "or 1, retuning leads to the same small gain as when using the margin-rescaled or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "slack-rescaled losses. Here the gain is presumably from adjusting the inference network for other", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 556, + 479, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 479, + 569 + ], + "score": 1.0, + "content": "inputs rather than from converting it from a cost-augmented to a test-time inference network.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 534, + 506, + 569 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 584, + 236, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 237, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 237, + 597 + ], + "score": 1.0, + "content": "9.2 TWITTER POS TAGGING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 259, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "score": 1.0, + "content": "9.2.1 HYPERPARAMETER TUNING", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 507, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 639 + ], + "score": 1.0, + "content": "When training inference networks and SPENs for Twitter POS tagging, we use the following hyper-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 637, + 507, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 353, + 651 + ], + "score": 1.0, + "content": "parameter tuning. We tune the inference network learning rate", + "type": "text" + }, + { + "bbox": [ + 354, + 638, + 501, + 650 + ], + "score": 0.76, + "content": "( \\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 637, + 507, + 651 + ], + "score": 1.0, + "content": "),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 119, + 660 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 648, + 181, + 661 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 181, + 649, + 369, + 660 + ], + "score": 0.79, + "content": "( \\lambda _ { 1 } \\in \\{ 0 , 1 { \\mathrm { e } } - 3 , 1 { \\mathrm { e } } - 4 , 1 { \\mathrm { e } } - 5 , 1 { \\mathrm { e } } - { \\bar { 6 } } , 1 { \\mathrm { e } } - { \\bar { 7 } } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "), the entropy regularization term", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 108, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 108, + 660, + 218, + 672 + ], + "score": 0.89, + "content": "( \\lambda _ { 2 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 660, + 374, + 673 + ], + "score": 1.0, + "content": ", the cross entropy regularization term", + "type": "text" + }, + { + "bbox": [ + 374, + 660, + 483, + 672 + ], + "score": 0.89, + "content": "( \\lambda _ { 3 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 660, + 506, + 673 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 205, + 684 + ], + "score": 1.0, + "content": "the squared L2 distance", + "type": "text" + }, + { + "bbox": [ + 206, + 671, + 331, + 682 + ], + "score": 0.88, + "content": "( \\bar { \\lambda } _ { 4 } \\in \\{ 0 , 0 . 1 , 0 . 2 , \\bar { 0 . 5 } , 1 , 2 , 1 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "). We train the energy functions with Adam", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 681, + 497, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 238, + 694 + ], + "score": 1.0, + "content": "with a learning rate of 0.001 and", + "type": "text" + }, + { + "bbox": [ + 239, + 682, + 251, + 693 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 681, + 311, + 694 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 311, + 682, + 493, + 694 + ], + "score": 0.88, + "content": "( \\lambda _ { 1 } \\in \\{ 0 , 1 \\mathrm { { e } - 3 , 1 \\mathrm { { e } - 4 , 1 \\mathrm { { e } - 5 } , 1 \\mathrm { { e } - 6 } , 1 \\mathrm { { e } - 7 } \\} ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 681, + 497, + 694 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 626, + 507, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Table 9 compares the use of the cross entropy and entropy stabilization terms when training inference", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "networks for a SPEN with margin-rescaled hinge. Cross entropy works better than entropy in this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 423, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 423, + 734 + ], + "score": 1.0, + "content": "setting, though retuning permits the latter to bridge the gap more than halfway.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 116, + 427, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 502, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 504, + 102 + ], + "score": 1.0, + "content": "Table 9: Comparison of inference network stabilization terms and showing impact of retuning when", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 429, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 429, + 113 + ], + "score": 1.0, + "content": "training SPENs with margin-rescaled hinge (Twitter POS validation accuracies).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 183, + 116, + 427, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 116, + 427, + 158 + ], + "spans": [ + { + "bbox": [ + 183, + 116, + 427, + 158 + ], + "score": 0.966, + "html": "
validation accuracy (%)
inference network stabilization terms-retuning+retuning
cross entropy89.189.3
entropy84.286.8
", + "type": "table", + "image_path": "52e56f1f7963ce24dd015d0b30495b629bbf3b1fbb7952dcbcd1238e1cc48616.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 183, + 116, + 427, + 130.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 183, + 130.0, + 427, + 144.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 183, + 144.0, + 427, + 158.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 107, + 210, + 505, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 103, + 182, + 506, + 205 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "Table 10: Examples of improvements in Twitter POS tagging when using tag language model (TLM).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 470, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 470, + 205 + ], + "score": 1.0, + "content": "In all of these examples, the predicted tag when using the TLM matches the gold standard.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 210, + 505, + 356 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 210, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 210, + 505, + 356 + ], + "score": 0.983, + "html": "
predicted tags
#tweet (target word in bold)-TLM+TLM
1... that's a t-17, technically . does that count as top-25 ?determinerpronoun
2... lol you know im down like 4 flats on a cadillac ... lol...adjectivepreposition
3... them who he is : he wants her to like him for his pers..prepositionverb
4I wonder when Nic Cage is going to film " Another Somethingnounverb
5Something Las Vegas " . Cut my hair, gag and bore menounverb
6 7... they had their fun,we hd ours !;) lmaooo " Logic will get you from A to B . Imagination will take youproper noun verbverb
everywhere ." - Albert Einstein .noun
8lmao I'm not a sheep who listens to it cos everyone else does ..verbpreposition
9Noo its not cuss you have swag andd you wont look dumb !..nouncoord. conj.
", + "type": "table", + "image_path": "6825bbc3e98b08c9213a525503588606eea7ad0c4d07b08a4ef13e3a4ee9ddcc.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 107, + 210, + 505, + 258.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 258.6666666666667, + 505, + 307.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 307.33333333333337, + 505, + 356.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "When training CRFs, we use SGD with momentum. We tune the learning rate (over", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 391, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 253, + 403 + ], + "score": 0.81, + "content": "\\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 391, + 273, + 404 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 273, + 392, + 285, + 403 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 391, + 415, + 404 + ], + "score": 1.0, + "content": "regularization coefficient (over", + "type": "text" + }, + { + "bbox": [ + 415, + 392, + 505, + 403 + ], + "score": 0.9, + "content": "\\{ 0 , 1 \\mathrm { e } - 3 , 1 \\mathrm { e } - 4 , 1 \\mathrm { e } -", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 402, + 457, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 173, + 415 + ], + "score": 0.78, + "content": "5 , 1 \\mathrm { e } - 6 , 1 \\mathrm { e } - 7 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 402, + 457, + 416 + ], + "score": 1.0, + "content": "). For all methods, we use early stopping based on validation accuracy.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 106, + 426, + 352, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 353, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 353, + 439 + ], + "score": 1.0, + "content": "9.2.2 TAG LANGUAGE MODEL DETAILS AND ANALYSIS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 459 + ], + "score": 1.0, + "content": "To obtain training data for training the tag language model, we run the Twitter POS tagger from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 455, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 470 + ], + "score": 1.0, + "content": "Owoputi et al. (2013) on a dataset of 303K randomly-sampled English tweets. We train the tag", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "language model on 300K tweets and use the remaining 3K for tuning hyperparameters and early", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "stopping. We train an LSTM language model on the tag sequences using stochastic gradient descent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "with momentum and early stopping on the validation set. We used a dropout rate of 0.5 for the LSTM", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 268, + 514 + ], + "score": 1.0, + "content": "hidden layer. We tune the learning rate", + "type": "text" + }, + { + "bbox": [ + 269, + 500, + 348, + 512 + ], + "score": 0.8, + "content": "( \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 . 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 500, + 470, + 514 + ], + "score": 1.0, + "content": ", the number of LSTM layers", + "type": "text" + }, + { + "bbox": [ + 470, + 500, + 502, + 513 + ], + "score": 0.91, + "content": "( \\{ 1 , 2 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 500, + 506, + 514 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 511, + 278, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 209, + 524 + ], + "score": 1.0, + "content": "and the hidden layer size", + "type": "text" + }, + { + "bbox": [ + 210, + 511, + 272, + 523 + ], + "score": 0.66, + "content": "( \\{ 5 0 , 1 0 0 , 2 0 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 511, + 278, + 524 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "Table 10 shows examples in which our SPEN that includes the TLM appears to be using broader", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "score": 1.0, + "content": "context when making tagging decisions. These are examples from the test set labeled by two models:", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 289, + 563 + ], + "score": 1.0, + "content": "the SPEN without the TLM (which achieves", + "type": "text" + }, + { + "bbox": [ + 290, + 550, + 317, + 561 + ], + "score": 0.89, + "content": "8 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "accuracy, as shown in Table 5) and the SPEN", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 230, + 573 + ], + "score": 1.0, + "content": "with the TLM (which reaches", + "type": "text" + }, + { + "bbox": [ + 231, + 561, + 258, + 572 + ], + "score": 0.86, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "accuracy). In example 1, the token “that” is predicted to be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "a determiner based on local context, but is correctly labeled a pronoun when using the TLM. This", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "example is difficult because of the noun/verb tag ambiguity of the next word (“count”) and its impact", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "on the tag for “that”. Examples 2 and 3 show two corrections for the token “like”, which is a highly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "ambiguous word in Twitter POS tagging. The broader context makes it much clearer which tag is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 615, + 146, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 146, + 628 + ], + "score": 1.0, + "content": "intended.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "The next two examples (4 and 5) are cases of noun/verb ambiguity that are resolvable with larger", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "context. The last four examples show improvements for nonstandard word forms. The shortened form", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "of “had” (example 6) is difficult to tag due to its collision with “HD” (high-definition), but the model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "with the TLM is able to tag it correctly. In example 7, the ambiguous token “b” is frequently used as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "a short form of “be” on Twitter, and since it comes after “to” in this context, the verb interpretation is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "encouraged. However, the broader context makes it clear that it is not a verb and the TLM-enriched", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "model tags it correctly. The words in the last two examples are nonstandard word forms that were not", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "observed in the training data, which is likely the reason for their erroneous predictions. When using", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 720, + 417, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 417, + 732 + ], + "score": 1.0, + "content": "the TLM, we can better handle these rare forms based on the broader context.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 116, + 427, + 158 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 502, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 504, + 102 + ], + "score": 1.0, + "content": "Table 9: Comparison of inference network stabilization terms and showing impact of retuning when", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 429, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 429, + 113 + ], + "score": 1.0, + "content": "training SPENs with margin-rescaled hinge (Twitter POS validation accuracies).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 183, + 116, + 427, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 116, + 427, + 158 + ], + "spans": [ + { + "bbox": [ + 183, + 116, + 427, + 158 + ], + "score": 0.966, + "html": "
validation accuracy (%)
inference network stabilization terms-retuning+retuning
cross entropy89.189.3
entropy84.286.8
", + "type": "table", + "image_path": "52e56f1f7963ce24dd015d0b30495b629bbf3b1fbb7952dcbcd1238e1cc48616.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 183, + 116, + 427, + 130.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 183, + 130.0, + 427, + 144.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 183, + 144.0, + 427, + 158.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 107, + 210, + 505, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 103, + 182, + 506, + 205 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "Table 10: Examples of improvements in Twitter POS tagging when using tag language model (TLM).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 470, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 470, + 205 + ], + "score": 1.0, + "content": "In all of these examples, the predicted tag when using the TLM matches the gold standard.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 210, + 505, + 356 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 210, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 210, + 505, + 356 + ], + "score": 0.983, + "html": "
predicted tags
#tweet (target word in bold)-TLM+TLM
1... that's a t-17, technically . does that count as top-25 ?determinerpronoun
2... lol you know im down like 4 flats on a cadillac ... lol...adjectivepreposition
3... them who he is : he wants her to like him for his pers..prepositionverb
4I wonder when Nic Cage is going to film " Another Somethingnounverb
5Something Las Vegas " . Cut my hair, gag and bore menounverb
6 7... they had their fun,we hd ours !;) lmaooo " Logic will get you from A to B . Imagination will take youproper noun verbverb
everywhere ." - Albert Einstein .noun
8lmao I'm not a sheep who listens to it cos everyone else does ..verbpreposition
9Noo its not cuss you have swag andd you wont look dumb !..nouncoord. conj.
", + "type": "table", + "image_path": "6825bbc3e98b08c9213a525503588606eea7ad0c4d07b08a4ef13e3a4ee9ddcc.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 107, + 210, + 505, + 258.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 258.6666666666667, + 505, + 307.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 307.33333333333337, + 505, + 356.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "When training CRFs, we use SGD with momentum. We tune the learning rate (over", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 391, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 253, + 403 + ], + "score": 0.81, + "content": "\\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 391, + 273, + 404 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 273, + 392, + 285, + 403 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 391, + 415, + 404 + ], + "score": 1.0, + "content": "regularization coefficient (over", + "type": "text" + }, + { + "bbox": [ + 415, + 392, + 505, + 403 + ], + "score": 0.9, + "content": "\\{ 0 , 1 \\mathrm { e } - 3 , 1 \\mathrm { e } - 4 , 1 \\mathrm { e } -", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 402, + 457, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 173, + 415 + ], + "score": 0.78, + "content": "5 , 1 \\mathrm { e } - 6 , 1 \\mathrm { e } - 7 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 402, + 457, + 416 + ], + "score": 1.0, + "content": "). For all methods, we use early stopping based on validation accuracy.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 380, + 506, + 416 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 426, + 352, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 353, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 353, + 439 + ], + "score": 1.0, + "content": "9.2.2 TAG LANGUAGE MODEL DETAILS AND ANALYSIS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 459 + ], + "score": 1.0, + "content": "To obtain training data for training the tag language model, we run the Twitter POS tagger from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 455, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 470 + ], + "score": 1.0, + "content": "Owoputi et al. (2013) on a dataset of 303K randomly-sampled English tweets. We train the tag", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "language model on 300K tweets and use the remaining 3K for tuning hyperparameters and early", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "stopping. We train an LSTM language model on the tag sequences using stochastic gradient descent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "with momentum and early stopping on the validation set. We used a dropout rate of 0.5 for the LSTM", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 268, + 514 + ], + "score": 1.0, + "content": "hidden layer. We tune the learning rate", + "type": "text" + }, + { + "bbox": [ + 269, + 500, + 348, + 512 + ], + "score": 0.8, + "content": "( \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 . 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 500, + 470, + 514 + ], + "score": 1.0, + "content": ", the number of LSTM layers", + "type": "text" + }, + { + "bbox": [ + 470, + 500, + 502, + 513 + ], + "score": 0.91, + "content": "( \\{ 1 , 2 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 500, + 506, + 514 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 511, + 278, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 209, + 524 + ], + "score": 1.0, + "content": "and the hidden layer size", + "type": "text" + }, + { + "bbox": [ + 210, + 511, + 272, + 523 + ], + "score": 0.66, + "content": "( \\{ 5 0 , 1 0 0 , 2 0 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 511, + 278, + 524 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 444, + 506, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "Table 10 shows examples in which our SPEN that includes the TLM appears to be using broader", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "score": 1.0, + "content": "context when making tagging decisions. These are examples from the test set labeled by two models:", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 289, + 563 + ], + "score": 1.0, + "content": "the SPEN without the TLM (which achieves", + "type": "text" + }, + { + "bbox": [ + 290, + 550, + 317, + 561 + ], + "score": 0.89, + "content": "8 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "accuracy, as shown in Table 5) and the SPEN", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 230, + 573 + ], + "score": 1.0, + "content": "with the TLM (which reaches", + "type": "text" + }, + { + "bbox": [ + 231, + 561, + 258, + 572 + ], + "score": 0.86, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "accuracy). In example 1, the token “that” is predicted to be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "a determiner based on local context, but is correctly labeled a pronoun when using the TLM. This", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "example is difficult because of the noun/verb tag ambiguity of the next word (“count”) and its impact", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "on the tag for “that”. Examples 2 and 3 show two corrections for the token “like”, which is a highly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "ambiguous word in Twitter POS tagging. The broader context makes it much clearer which tag is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 615, + 146, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 146, + 628 + ], + "score": 1.0, + "content": "intended.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 528, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "The next two examples (4 and 5) are cases of noun/verb ambiguity that are resolvable with larger", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "context. The last four examples show improvements for nonstandard word forms. The shortened form", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "of “had” (example 6) is difficult to tag due to its collision with “HD” (high-definition), but the model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "with the TLM is able to tag it correctly. In example 7, the ambiguous token “b” is frequently used as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "a short form of “be” on Twitter, and since it comes after “to” in this context, the verb interpretation is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "encouraged. However, the broader context makes it clear that it is not a verb and the TLM-enriched", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "model tags it correctly. The words in the last two examples are nonstandard word forms that were not", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "observed in the training data, which is likely the reason for their erroneous predictions. When using", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 720, + 417, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 417, + 732 + ], + "score": 1.0, + "content": "the TLM, we can better handle these rare forms based on the broader context.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 632, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 166, + 135, + 444, + 189 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 88, + 504, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "Table 11: Named entity recognition F1 of BLSTM, CRF, and SPEN (InfNet) with slack-rescaled", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "hinge where inference networks used cross entropy stabilization term. Though slowest to train, the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 125 + ], + "score": 1.0, + "content": "SPEN matches the test-time speed of the BLSTM while improving F1 by 2 points, though it lags", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 123, + 173, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 173, + 133 + ], + "score": 1.0, + "content": "behind the CRF.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 166, + 135, + 444, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 135, + 444, + 189 + ], + "spans": [ + { + "bbox": [ + 166, + 135, + 444, + 189 + ], + "score": 0.972, + "html": "
validation F1test F1training speed (examples/sec)testing speed (examples/sec)
BLSTM88.3083.023851042
CRF91.3187.15222454
SPEN (InfNet)89.9885.061181025
", + "type": "table", + "image_path": "11716e121864e9465a0fc3b640af9517d3676ddf28ab900b7c54a9eeea7a17fe.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 166, + 135, + 444, + 153.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 153.0, + 444, + 171.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 171.0, + 444, + 189.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 106, + 213, + 316, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 316, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 316, + 226 + ], + "score": 1.0, + "content": "9.2.3 LEARNED PAIRWISE POTENTIAL MATRIX", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 129, + 262, + 498, + 481 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 129, + 262, + 498, + 481 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 262, + 498, + 481 + ], + "spans": [ + { + "bbox": [ + 129, + 262, + 498, + 481 + ], + "score": 0.97, + "type": "image", + "image_path": "28cdae28d8e710e4818ba3c338be0b1442bf330857c6db3da42ee019ad439d1e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 129, + 262, + 498, + 335.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 129, + 335.0, + 498, + 408.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 129, + 408.0, + 498, + 481.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 164, + 487, + 442, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 484, + 443, + 502 + ], + "spans": [ + { + "bbox": [ + 164, + 484, + 443, + 502 + ], + "score": 1.0, + "content": "Figure 1: Learned pairwise potential matrix for Twitter POS tagging.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 318, + 525 + ], + "score": 1.0, + "content": "Figure 1 shows the learned pairwise potential matrix", + "type": "text" + }, + { + "bbox": [ + 319, + 512, + 331, + 522 + ], + "score": 0.51, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "in Twitter POS tagging. We can see strong", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "correlations between labels in neighborhoods. For example, an adjective (A) is more likely to be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 534, + 405, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 405, + 546 + ], + "score": 1.0, + "content": "followed by a noun (N) than a verb (V) (see row labeled “A” in the figure).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 558, + 263, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 265, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 265, + 571 + ], + "score": 1.0, + "content": "9.3 NAMED ENTITY RECOGNITION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "For named entity recognition (NER), we perform experiments on the English data from the CoNLL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "score": 1.0, + "content": "2003 shared task (Tjong Kim Sang & De Meulder, 2003). This task contains sentences annotated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "with named entities and their types, containing 14987 training sentences, 3466 in the development set,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 612, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 506, + 624 + ], + "score": 1.0, + "content": "and 3684 in the test set. There are four named entity types: PERSON, LOCATION, ORGANIZA-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "score": 1.0, + "content": "TION, and MISC. We use the BIOES tagging scheme instead of the original BIO2, following prior", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 341, + 646 + ], + "score": 1.0, + "content": "work (Ratinov & Roth, 2009; Ma & Hovy, 2016). There are", + "type": "text" + }, + { + "bbox": [ + 342, + 634, + 373, + 644 + ], + "score": 0.92, + "content": "L = 1 7", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "classes. We use 100-dimensional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "pretrained GloVe (Pennington et al., 2014) embeddings trained on 6 billion words from Wikipedia", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 655, + 458, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 458, + 668 + ], + "score": 1.0, + "content": "and web text, which work better than other pretrained embeddings (Ma & Hovy, 2016).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 687 + ], + "score": 1.0, + "content": "Results are shown in Table 11. We see a large 4-point gap between the BLSTM and CRF, suggesting", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 684, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 505, + 696 + ], + "score": 1.0, + "content": "the importance of structured information for this problem. Though the SPEN still lags behind the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 693, + 466, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 466, + 708 + ], + "score": 1.0, + "content": "CRF in F1, it matches the test-time speed of the BLSTM while improving F1 by 2 points.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + } + ], + "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, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 166, + 135, + 444, + 189 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 88, + 504, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "Table 11: Named entity recognition F1 of BLSTM, CRF, and SPEN (InfNet) with slack-rescaled", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "hinge where inference networks used cross entropy stabilization term. Though slowest to train, the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 125 + ], + "score": 1.0, + "content": "SPEN matches the test-time speed of the BLSTM while improving F1 by 2 points, though it lags", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 123, + 173, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 173, + 133 + ], + "score": 1.0, + "content": "behind the CRF.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 166, + 135, + 444, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 135, + 444, + 189 + ], + "spans": [ + { + "bbox": [ + 166, + 135, + 444, + 189 + ], + "score": 0.972, + "html": "
validation F1test F1training speed (examples/sec)testing speed (examples/sec)
BLSTM88.3083.023851042
CRF91.3187.15222454
SPEN (InfNet)89.9885.061181025
", + "type": "table", + "image_path": "11716e121864e9465a0fc3b640af9517d3676ddf28ab900b7c54a9eeea7a17fe.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 166, + 135, + 444, + 153.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 153.0, + 444, + 171.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 171.0, + 444, + 189.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 106, + 213, + 316, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 316, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 316, + 226 + ], + "score": 1.0, + "content": "9.2.3 LEARNED PAIRWISE POTENTIAL MATRIX", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 129, + 262, + 498, + 481 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 129, + 262, + 498, + 481 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 262, + 498, + 481 + ], + "spans": [ + { + "bbox": [ + 129, + 262, + 498, + 481 + ], + "score": 0.97, + "type": "image", + "image_path": "28cdae28d8e710e4818ba3c338be0b1442bf330857c6db3da42ee019ad439d1e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 129, + 262, + 498, + 335.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 129, + 335.0, + 498, + 408.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 129, + 408.0, + 498, + 481.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 164, + 487, + 442, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 484, + 443, + 502 + ], + "spans": [ + { + "bbox": [ + 164, + 484, + 443, + 502 + ], + "score": 1.0, + "content": "Figure 1: Learned pairwise potential matrix for Twitter POS tagging.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 318, + 525 + ], + "score": 1.0, + "content": "Figure 1 shows the learned pairwise potential matrix", + "type": "text" + }, + { + "bbox": [ + 319, + 512, + 331, + 522 + ], + "score": 0.51, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "in Twitter POS tagging. We can see strong", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "correlations between labels in neighborhoods. For example, an adjective (A) is more likely to be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 534, + 405, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 405, + 546 + ], + "score": 1.0, + "content": "followed by a noun (N) than a verb (V) (see row labeled “A” in the figure).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 510, + 506, + 546 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 558, + 263, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 265, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 265, + 571 + ], + "score": 1.0, + "content": "9.3 NAMED ENTITY RECOGNITION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "For named entity recognition (NER), we perform experiments on the English data from the CoNLL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "score": 1.0, + "content": "2003 shared task (Tjong Kim Sang & De Meulder, 2003). This task contains sentences annotated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "with named entities and their types, containing 14987 training sentences, 3466 in the development set,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 612, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 506, + 624 + ], + "score": 1.0, + "content": "and 3684 in the test set. There are four named entity types: PERSON, LOCATION, ORGANIZA-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "score": 1.0, + "content": "TION, and MISC. We use the BIOES tagging scheme instead of the original BIO2, following prior", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 341, + 646 + ], + "score": 1.0, + "content": "work (Ratinov & Roth, 2009; Ma & Hovy, 2016). There are", + "type": "text" + }, + { + "bbox": [ + 342, + 634, + 373, + 644 + ], + "score": 0.92, + "content": "L = 1 7", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "classes. We use 100-dimensional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "pretrained GloVe (Pennington et al., 2014) embeddings trained on 6 billion words from Wikipedia", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 655, + 458, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 458, + 668 + ], + "score": 1.0, + "content": "and web text, which work better than other pretrained embeddings (Ma & Hovy, 2016).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 579, + 506, + 668 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 687 + ], + "score": 1.0, + "content": "Results are shown in Table 11. We see a large 4-point gap between the BLSTM and CRF, suggesting", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 684, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 505, + 696 + ], + "score": 1.0, + "content": "the importance of structured information for this problem. Though the SPEN still lags behind the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 693, + 466, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 466, + 708 + ], + "score": 1.0, + "content": "CRF in F1, it matches the test-time speed of the BLSTM while improving F1 by 2 points.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 671, + 506, + 708 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/H1WgVz-AZ/H1WgVz-AZ_model.json b/parse/train/H1WgVz-AZ/H1WgVz-AZ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..026e09e86aba93130bfa05c34ab82de96986d468 --- /dev/null +++ b/parse/train/H1WgVz-AZ/H1WgVz-AZ_model.json @@ -0,0 +1,21232 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 615, + 1303, + 615, + 1303, + 1162, + 397, + 1162 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1651, + 1403, + 1651, + 1403, + 1895, + 298, + 1895 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1452, + 1403, + 1452, + 1403, + 1635, + 299, + 1635 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1283, + 1402, + 1283, + 1402, + 1436, + 298, + 1436 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1404, + 1911, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 301, + 220, + 1325, + 220, + 1325, + 324, + 301, + 324 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 312, + 374, + 1079, + 374, + 1079, + 468, + 312, + 468 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 302, + 1216, + 573, + 1216, + 573, + 1250, + 302, + 1250 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 773, + 550, + 927, + 550, + 927, + 583, + 773, + 583 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.724 + }, + { + "category_id": 13, + "poly": [ + 695, + 1344, + 788, + 1344, + 788, + 1377, + 695, + 1377 + ], + "score": 0.93, + "latex": "E ( \\pmb { x } , \\hat { \\pmb { y } } )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1315, + 1286, + 1315, + 1286, + 1346, + 1264, + 1346 + ], + "score": 0.85, + "latex": "\\hat { \\textbf { \\textit { y } } }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1717, + 916, + 1717, + 916, + 1744, + 894, + 1744 + ], + "score": 0.76, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1687, + 1236, + 1687, + 1236, + 1709, + 1214, + 1709 + ], + "score": 0.76, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 991, + 1319, + 1012, + 1319, + 1012, + 1342, + 991, + 1342 + ], + "score": 0.72, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 567, + 1718, + 588, + 1718, + 588, + 1744, + 567, + 1744 + ], + "score": 0.61, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 431, + 888, + 515, + 888, + 515, + 919, + 431, + 919 + ], + "score": 0.35, + "latex": "1 0 { - } 6 0 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 217.0, + 1329.0, + 217.0, + 1329.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 273.0, + 945.0, + 273.0, + 945.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 579.0, + 1212.0, + 579.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 546.0, + 934.0, + 546.0, + 934.0, + 589.0, + 768.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 614.0, + 1304.0, + 614.0, + 1304.0, + 650.0, + 395.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 645.0, + 1304.0, + 645.0, + 1304.0, + 680.0, + 393.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 677.0, + 1306.0, + 677.0, + 1306.0, + 710.0, + 396.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 704.0, + 1305.0, + 704.0, + 1305.0, + 740.0, + 393.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 738.0, + 1307.0, + 738.0, + 1307.0, + 771.0, + 395.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 765.0, + 1308.0, + 765.0, + 1308.0, + 804.0, + 391.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 794.0, + 1309.0, + 794.0, + 1309.0, + 835.0, + 390.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 824.0, + 1306.0, + 824.0, + 1306.0, + 867.0, + 391.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 854.0, + 1305.0, + 854.0, + 1305.0, + 895.0, + 392.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 885.0, + 430.0, + 885.0, + 430.0, + 927.0, + 393.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 885.0, + 1308.0, + 885.0, + 1308.0, + 927.0, + 516.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 917.0, + 1305.0, + 917.0, + 1305.0, + 956.0, + 392.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 950.0, + 1304.0, + 950.0, + 1304.0, + 982.0, + 393.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 978.0, + 1305.0, + 978.0, + 1305.0, + 1017.0, + 392.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1009.0, + 1305.0, + 1009.0, + 1305.0, + 1047.0, + 392.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1041.0, + 1304.0, + 1041.0, + 1304.0, + 1076.0, + 394.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1070.0, + 1304.0, + 1070.0, + 1304.0, + 1106.0, + 393.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1101.0, + 1306.0, + 1101.0, + 1306.0, + 1138.0, + 393.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1131.0, + 612.0, + 1131.0, + 612.0, + 1167.0, + 393.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1213.0, + 1682.0, + 1213.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1716.0, + 1237.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 566.0, + 1713.0, + 566.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1713.0, + 893.0, + 1713.0, + 893.0, + 1746.0, + 589.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1746.0, + 917.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 1407.0, + 1771.0, + 1407.0, + 1810.0, + 292.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1800.0, + 1407.0, + 1800.0, + 1407.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1871.0, + 292.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1866.0, + 714.0, + 1866.0, + 714.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1450.0, + 1404.0, + 1450.0, + 1404.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1482.0, + 1404.0, + 1482.0, + 1404.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1513.0, + 1407.0, + 1513.0, + 1407.0, + 1549.0, + 295.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 1407.0, + 1542.0, + 1407.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1405.0, + 1574.0, + 1405.0, + 1609.0, + 294.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1603.0, + 647.0, + 1603.0, + 647.0, + 1638.0, + 296.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1282.0, + 1404.0, + 1282.0, + 1404.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1315.0, + 990.0, + 1315.0, + 990.0, + 1348.0, + 296.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1315.0, + 1263.0, + 1315.0, + 1263.0, + 1348.0, + 1013.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1315.0, + 1404.0, + 1315.0, + 1404.0, + 1348.0, + 1287.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 694.0, + 1344.0, + 694.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1381.0, + 789.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1415.0, + 292.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 663.0, + 1403.0, + 663.0, + 1444.0, + 295.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1408.0, + 2003.0, + 1408.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 372.0, + 413.0, + 372.0, + 413.0, + 409.0, + 309.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 373.0, + 644.0, + 373.0, + 644.0, + 411.0, + 469.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 406.0, + 1081.0, + 406.0, + 1081.0, + 440.0, + 311.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 439.0, + 701.0, + 439.0, + 701.0, + 472.0, + 317.0, + 472.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1327, + 1405, + 1327, + 1405, + 1634, + 297, + 1634 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 337, + 1405, + 337, + 1405, + 584, + 297, + 584 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 693, + 1404, + 693, + 1404, + 819, + 299, + 819 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 832, + 1404, + 832, + 1404, + 958, + 298, + 958 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 689, + 971, + 1010, + 971, + 1010, + 1059, + 689, + 1059 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 323, + 298, + 323 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 658, + 1956, + 1041, + 1956, + 1041, + 2028, + 658, + 2028 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 720, + 1260, + 978, + 1260, + 978, + 1319, + 720, + 1319 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1067, + 1403, + 1067, + 1403, + 1132, + 296, + 1132 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 689, + 1848, + 1012, + 1848, + 1012, + 1906, + 689, + 1906 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 293, + 1188, + 1399, + 1188, + 1399, + 1251, + 293, + 1251 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 726, + 1140, + 975, + 1140, + 975, + 1182, + 726, + 1182 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 299, + 625, + 1036, + 625, + 1036, + 662, + 299, + 662 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 1676, + 867, + 1676, + 867, + 1713, + 299, + 1713 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 307, + 1914, + 1405, + 1914, + 1405, + 1948, + 307, + 1948 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1264, + 1399, + 1264, + 1399, + 1293, + 1366, + 1293 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1851, + 1399, + 1851, + 1399, + 1880, + 1366, + 1880 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 998, + 1400, + 998, + 1400, + 1028, + 1366, + 1028 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1148, + 1399, + 1148, + 1399, + 1176, + 1366, + 1176 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1967, + 1400, + 1967, + 1400, + 1996, + 1366, + 1996 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 298, + 1744, + 1406, + 1744, + 1406, + 1838, + 298, + 1838 + ], + "score": 0.821 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.762 + }, + { + "category_id": 14, + "poly": [ + 719, + 1258, + 980, + 1258, + 980, + 1320, + 719, + 1320 + ], + "score": 0.95, + "latex": "\\pmb { \\hat { y } } = \\underset { \\pmb { y } \\in \\mathscr { y } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )" + }, + { + "category_id": 14, + "poly": [ + 687, + 965, + 1013, + 965, + 1013, + 1061, + 687, + 1061 + ], + "score": 0.95, + "latex": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) = \\sum _ { i = 1 } ^ { L } y _ { i } b _ { i } ^ { \\top } F ( { \\pmb x } )" + }, + { + "category_id": 14, + "poly": [ + 655, + 1955, + 1043, + 1955, + 1043, + 2030, + 655, + 2030 + ], + "score": 0.94, + "latex": "\\hat { \\Psi } \\underset { \\Psi } { \\mathrm { a r g m i n } } \\sum _ { \\pmb { x } \\in X } E _ { \\Theta } ( \\pmb { x } , \\mathbf { A } _ { \\Psi } ( \\pmb { x } ) )" + }, + { + "category_id": 14, + "poly": [ + 685, + 1846, + 1014, + 1846, + 1014, + 1907, + 685, + 1907 + ], + "score": 0.94, + "latex": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } ) \\approx \\underset { \\pmb { y } \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } { \\mathrm { a r g m i n } } E _ { \\Theta } ( \\pmb { x } , \\pmb { y } )" + }, + { + "category_id": 13, + "poly": [ + 1094, + 726, + 1285, + 726, + 1285, + 759, + 1094, + 759 + ], + "score": 0.93, + "latex": "\\mathcal { V } = \\cup _ { \\pmb { x } \\in \\mathcal { X } } \\mathcal { V } ( \\pmb { x } )" + }, + { + "category_id": 14, + "poly": [ + 724, + 1139, + 976, + 1139, + 976, + 1182, + 724, + 1182 + ], + "score": 0.93, + "latex": "E ^ { l a b } ( { \\pmb y } ) = c _ { 2 } ^ { \\top } g ( C _ { 1 } { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 804, + 1068, + 868, + 1068, + 868, + 1102, + 804, + 1102 + ], + "score": 0.93, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 626, + 1807, + 710, + 1807, + 710, + 1840, + 626, + 1840 + ], + "score": 0.92, + "latex": "\\mathbf { A } _ { \\Psi } ( \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 851, + 1418, + 1038, + 1418, + 1038, + 1453, + 851, + 1453 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\breve { y } _ { R } ( { \\pmb x } ) = [ 0 , 1 ] ^ { L } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 424, + 726, + 487, + 726, + 487, + 759, + 424, + 759 + ], + "score": 0.92, + "latex": "\\mathcal { V } ( \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 605, + 756, + 808, + 756, + 808, + 787, + 605, + 787 + ], + "score": 0.91, + "latex": "E _ { \\Theta } : \\mathcal { X } \\times \\mathcal { Y } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 297, + 923, + 692, + 923, + 692, + 958, + 297, + 958 + ], + "score": 0.91, + "latex": "E _ { \\Theta } ( { \\pmb x } , { \\pmb y } ) = E ^ { l o c } ( { \\pmb x } , { \\pmb y } ) + \\dot { E } ^ { l a b } ( { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 578, + 892, + 766, + 892, + 766, + 926, + 578, + 926 + ], + "score": 0.91, + "latex": "\\mathcal { V } ( \\pmb { x } ) = \\{ 0 , 1 \\} ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 889, + 697, + 967, + 697, + 967, + 725, + 889, + 725 + ], + "score": 0.9, + "latex": "\\mathbf { \\boldsymbol { x } } \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 578, + 1917, + 618, + 1917, + 618, + 1946, + 578, + 1946 + ], + "score": 0.9, + "latex": "E _ { \\Theta }" + }, + { + "category_id": 13, + "poly": [ + 639, + 1098, + 732, + 1098, + 732, + 1133, + 639, + 1133 + ], + "score": 0.9, + "latex": "E ^ { l a b } ( { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 641, + 1360, + 682, + 1360, + 682, + 1389, + 641, + 1389 + ], + "score": 0.89, + "latex": "E _ { \\Theta }" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1190, + 1233, + 1190, + 1233, + 1219, + 1199, + 1219 + ], + "score": 0.88, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1421, + 337, + 1421, + 337, + 1451, + 298, + 1451 + ], + "score": 0.88, + "latex": "\\mathcal { { V } } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1070, + 396, + 1070, + 396, + 1099, + 371, + 1099 + ], + "score": 0.87, + "latex": "b _ { i }" + }, + { + "category_id": 13, + "poly": [ + 769, + 1918, + 795, + 1918, + 795, + 1942, + 769, + 1942 + ], + "score": 0.86, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1330, + 1078, + 1330, + 1078, + 1359, + 1053, + 1359 + ], + "score": 0.85, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 914, + 1808, + 938, + 1808, + 938, + 1834, + 914, + 1834 + ], + "score": 0.85, + "latex": "\\Psi" + }, + { + "category_id": 13, + "poly": [ + 813, + 1106, + 834, + 1106, + 834, + 1132, + 813, + 1132 + ], + "score": 0.84, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1194, + 401, + 1194, + 401, + 1219, + 372, + 1219 + ], + "score": 0.83, + "latex": "c _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1395, + 1114, + 1395, + 1114, + 1421, + 1093, + 1421 + ], + "score": 0.82, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1006, + 757, + 1031, + 757, + 1031, + 783, + 1006, + 783 + ], + "score": 0.82, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 703, + 1781, + 724, + 1781, + 724, + 1808, + 703, + 1808 + ], + "score": 0.81, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 656, + 1195, + 674, + 1195, + 674, + 1220, + 656, + 1220 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 737, + 1751, + 758, + 1751, + 758, + 1777, + 737, + 1777 + ], + "score": 0.8, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 704, + 925, + 828, + 925, + 828, + 958, + 704, + 958 + ], + "score": 0.8, + "latex": "E ^ { l o c } ( { \\pmb x } , { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 1008, + 865, + 1030, + 865, + 1030, + 891, + 1008, + 891 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1105, + 1031, + 1105, + 1031, + 1127, + 1010, + 1127 + ], + "score": 0.79, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 659, + 697, + 686, + 697, + 686, + 723, + 659, + 723 + ], + "score": 0.79, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 740, + 1071, + 753, + 1071, + 753, + 1096, + 740, + 1096 + ], + "score": 0.78, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1454, + 1155, + 1454, + 1155, + 1481, + 1134, + 1481 + ], + "score": 0.77, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1362, + 1288, + 1362, + 1288, + 1390, + 1268, + 1390 + ], + "score": 0.76, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 368, + 869, + 390, + 869, + 390, + 891, + 368, + 891 + ], + "score": 0.75, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 848, + 899, + 869, + 899, + 869, + 922, + 848, + 922 + ], + "score": 0.74, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 522, + 293, + 567, + 293, + 567, + 321, + 522, + 321 + ], + "score": 0.61, + "latex": "6 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1105, + 626, + 1105, + 626, + 1127, + 605, + 1127 + ], + "score": 0.45, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1358, + 262, + 1403, + 262, + 1403, + 291, + 1358, + 291 + ], + "score": 0.3, + "latex": "1 0 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 622.0, + 1039.0, + 622.0, + 1039.0, + 668.0, + 291.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1674.0, + 869.0, + 1674.0, + 869.0, + 1718.0, + 292.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1328.0, + 1052.0, + 1328.0, + 1052.0, + 1363.0, + 295.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1328.0, + 1408.0, + 1328.0, + 1408.0, + 1363.0, + 1079.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1353.0, + 640.0, + 1353.0, + 640.0, + 1397.0, + 291.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1353.0, + 1267.0, + 1353.0, + 1267.0, + 1397.0, + 683.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1353.0, + 1407.0, + 1353.0, + 1407.0, + 1397.0, + 1289.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 1092.0, + 1386.0, + 1092.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1425.0, + 1115.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1417.0, + 297.0, + 1417.0, + 297.0, + 1455.0, + 291.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1417.0, + 850.0, + 1417.0, + 850.0, + 1455.0, + 338.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1417.0, + 1405.0, + 1417.0, + 1405.0, + 1455.0, + 1039.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 1133.0, + 1449.0, + 1133.0, + 1484.0, + 292.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1484.0, + 1156.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1480.0, + 1406.0, + 1480.0, + 1406.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1577.0, + 295.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1571.0, + 1406.0, + 1571.0, + 1406.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1603.0, + 691.0, + 1603.0, + 691.0, + 1638.0, + 294.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 336.0, + 1406.0, + 336.0, + 1406.0, + 373.0, + 294.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 1407.0, + 368.0, + 1407.0, + 401.0, + 292.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 400.0, + 1407.0, + 400.0, + 1407.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 426.0, + 1406.0, + 426.0, + 1406.0, + 468.0, + 292.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 457.0, + 1406.0, + 457.0, + 1406.0, + 499.0, + 292.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 527.0, + 291.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 521.0, + 1406.0, + 521.0, + 1406.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 551.0, + 632.0, + 551.0, + 632.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 692.0, + 658.0, + 692.0, + 658.0, + 731.0, + 293.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 692.0, + 888.0, + 692.0, + 888.0, + 731.0, + 687.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 692.0, + 1405.0, + 692.0, + 1405.0, + 731.0, + 968.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 723.0, + 423.0, + 723.0, + 423.0, + 762.0, + 293.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 723.0, + 1093.0, + 723.0, + 1093.0, + 762.0, + 488.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 723.0, + 1405.0, + 723.0, + 1405.0, + 762.0, + 1286.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 754.0, + 604.0, + 754.0, + 604.0, + 791.0, + 293.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 754.0, + 1005.0, + 754.0, + 1005.0, + 791.0, + 809.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 754.0, + 1405.0, + 754.0, + 1405.0, + 791.0, + 1032.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 785.0, + 870.0, + 785.0, + 870.0, + 823.0, + 293.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 829.0, + 1409.0, + 829.0, + 1409.0, + 868.0, + 292.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 863.0, + 367.0, + 863.0, + 367.0, + 896.0, + 294.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 863.0, + 1007.0, + 863.0, + 1007.0, + 896.0, + 391.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 863.0, + 1406.0, + 863.0, + 1406.0, + 896.0, + 1031.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 891.0, + 577.0, + 891.0, + 577.0, + 929.0, + 293.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 891.0, + 847.0, + 891.0, + 847.0, + 929.0, + 767.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 891.0, + 1410.0, + 891.0, + 1410.0, + 929.0, + 870.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 920.0, + 296.0, + 920.0, + 296.0, + 960.0, + 293.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 920.0, + 703.0, + 920.0, + 703.0, + 960.0, + 693.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 920.0, + 1150.0, + 920.0, + 1150.0, + 960.0, + 829.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1357.0, + 260.0, + 1357.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 521.0, + 288.0, + 521.0, + 329.0, + 292.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 288.0, + 1164.0, + 288.0, + 1164.0, + 329.0, + 568.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1063.0, + 370.0, + 1063.0, + 370.0, + 1107.0, + 293.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1063.0, + 739.0, + 1063.0, + 739.0, + 1107.0, + 397.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1063.0, + 803.0, + 1063.0, + 803.0, + 1107.0, + 754.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1063.0, + 1404.0, + 1063.0, + 1404.0, + 1107.0, + 869.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1093.0, + 604.0, + 1093.0, + 604.0, + 1137.0, + 291.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1093.0, + 638.0, + 1093.0, + 638.0, + 1137.0, + 627.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1093.0, + 812.0, + 1093.0, + 812.0, + 1137.0, + 733.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1093.0, + 1009.0, + 1093.0, + 1009.0, + 1137.0, + 835.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1093.0, + 1046.0, + 1093.0, + 1046.0, + 1137.0, + 1032.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 371.0, + 1186.0, + 371.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1186.0, + 655.0, + 1186.0, + 655.0, + 1222.0, + 402.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1186.0, + 1198.0, + 1186.0, + 1198.0, + 1222.0, + 675.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1186.0, + 1403.0, + 1186.0, + 1403.0, + 1222.0, + 1234.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 1106.0, + 1216.0, + 1106.0, + 1259.0, + 293.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1913.0, + 577.0, + 1913.0, + 577.0, + 1952.0, + 302.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1913.0, + 768.0, + 1913.0, + 768.0, + 1952.0, + 619.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1952.0, + 796.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1744.0, + 736.0, + 1744.0, + 736.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1744.0, + 1407.0, + 1744.0, + 1407.0, + 1781.0, + 759.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 702.0, + 1775.0, + 702.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1775.0, + 1406.0, + 1775.0, + 1406.0, + 1813.0, + 725.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 625.0, + 1803.0, + 625.0, + 1842.0, + 295.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1803.0, + 913.0, + 1803.0, + 913.0, + 1842.0, + 711.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1803.0, + 1269.0, + 1803.0, + 1269.0, + 1842.0, + 939.0, + 1842.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1460, + 1406, + 1460, + 1406, + 1615, + 297, + 1615 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 911, + 1406, + 911, + 1406, + 1070, + 298, + 1070 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 227, + 1405, + 227, + 1405, + 415, + 297, + 415 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1182, + 1405, + 1182, + 1405, + 1339, + 297, + 1339 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 428, + 1404, + 428, + 1404, + 554, + 298, + 554 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 804, + 1405, + 804, + 1405, + 900, + 297, + 900 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 296, + 1739, + 1406, + 1739, + 1406, + 1834, + 296, + 1834 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 475, + 705, + 1219, + 705, + 1219, + 793, + 475, + 793 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1405, + 1971, + 1405, + 2036, + 297, + 2036 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 440, + 1080, + 1256, + 1080, + 1256, + 1158, + 440, + 1158 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 297, + 662, + 1212, + 662, + 1212, + 696, + 297, + 696 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 470, + 1396, + 1225, + 1396, + 1225, + 1445, + 470, + 1445 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 1351, + 955, + 1351, + 955, + 1384, + 298, + 1384 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 1846, + 1091, + 1846, + 1091, + 1880, + 298, + 1880 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 300, + 1630, + 744, + 1630, + 744, + 1662, + 300, + 1662 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 1914, + 646, + 1914, + 646, + 1947, + 299, + 1947 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 8, + "poly": [ + 418, + 1673, + 1281, + 1673, + 1281, + 1724, + 418, + 1724 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1401, + 1400, + 1401, + 1400, + 1431, + 1366, + 1431 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1366, + 729, + 1400, + 729, + 1400, + 758, + 1366, + 758 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 595, + 1167, + 595, + 1167, + 633, + 300, + 633 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1679, + 1400, + 1679, + 1400, + 1709, + 1366, + 1709 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1090, + 1400, + 1090, + 1400, + 1121, + 1365, + 1121 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.653 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.457 + }, + { + "category_id": 13, + "poly": [ + 974, + 806, + 1078, + 806, + 1078, + 840, + 974, + 840 + ], + "score": 0.93, + "latex": "\\triangle ( \\pmb { y } , \\pmb { y } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 925, + 977, + 1008, + 977, + 1008, + 1010, + 925, + 1010 + ], + "score": 0.92, + "latex": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )" + }, + { + "category_id": 14, + "poly": [ + 474, + 703, + 1222, + 703, + 1222, + 796, + 474, + 796 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { \\Theta } \\sum _ { \\langle x _ { i } , y _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\operatorname* { m a x } _ { y \\in \\mathcal { V } _ { R } ( \\pmb { x } ) } \\left( \\triangle ( \\pmb { y } , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right) \\right] _ { + }" + }, + { + "category_id": 13, + "poly": [ + 707, + 806, + 915, + 806, + 915, + 840, + 707, + 840 + ], + "score": 0.92, + "latex": "[ f ] _ { + } = \\operatorname* { m a x } ( 0 , f )" + }, + { + "category_id": 13, + "poly": [ + 607, + 1462, + 651, + 1462, + 651, + 1493, + 607, + 1493 + ], + "score": 0.91, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 14, + "poly": [ + 472, + 1393, + 1225, + 1393, + 1225, + 1452, + 472, + 1452 + ], + "score": 0.91, + "latex": "\\hat { \\Phi } \\underset { \\Phi } { \\mathrm { a r g m a x } } [ \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } ) _ { i } ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + }" + }, + { + "category_id": 14, + "poly": [ + 418, + 1670, + 1280, + 1670, + 1280, + 1731, + 418, + 1731 + ], + "score": 0.91, + "latex": "\\hat { \\Theta } \\underset { \\Theta } { \\mathrm { a r g m i n } } [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) ] _ { + } + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 946, + 633, + 946, + 633, + 981, + 469, + 981 + ], + "score": 0.9, + "latex": "( \\operatorname* { m a x } _ { \\pmb { y } \\in \\mathcal { y } _ { R } ( \\pmb { x } ) } )" + }, + { + "category_id": 14, + "poly": [ + 439, + 1078, + 1257, + 1078, + 1257, + 1159, + 439, + 1159 + ], + "score": 0.9, + "latex": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\pmb { x } _ { i } , \\pmb { y } _ { i } \\rangle \\in \\mathcal { D } } \\left[ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) - E _ { \\Theta } ( \\pmb { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) ) + E _ { \\Theta } ( \\pmb { x } _ { i } , \\pmb { y } _ { i } ) \\right] _ { + }" + }, + { + "category_id": 13, + "poly": [ + 795, + 2004, + 839, + 2004, + 839, + 2034, + 795, + 2034 + ], + "score": 0.9, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 13, + "poly": [ + 525, + 1523, + 570, + 1523, + 570, + 1553, + 525, + 1553 + ], + "score": 0.89, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1009, + 1081, + 1009, + 1081, + 1039, + 1036, + 1039 + ], + "score": 0.89, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 919, + 2004, + 965, + 2004, + 965, + 2034, + 919, + 2034 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 1015, + 2004, + 1059, + 2004, + 1059, + 2034, + 1015, + 2034 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 13, + "poly": [ + 929, + 1307, + 963, + 1307, + 963, + 1336, + 929, + 1336 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 933, + 491, + 972, + 491, + 972, + 522, + 933, + 522 + ], + "score": 0.88, + "latex": "\\mathcal { V } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1009, + 734, + 1009, + 734, + 1039, + 690, + 1039 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 13, + "poly": [ + 508, + 232, + 553, + 232, + 553, + 261, + 508, + 261 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 788, + 1802, + 832, + 1802, + 832, + 1831, + 788, + 1831 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Phi }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 262, + 1343, + 262, + 1343, + 292, + 1298, + 292 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 880, + 1974, + 925, + 1974, + 925, + 2003, + 880, + 2003 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 609, + 430, + 654, + 430, + 654, + 460, + 609, + 460 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 837, + 1110, + 837, + 1110, + 868, + 1082, + 868 + ], + "score": 0.87, + "latex": "\\boldsymbol { y } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 338, + 354, + 383, + 354, + 383, + 383, + 338, + 383 + ], + "score": 0.87, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1806, + 1063, + 1806, + 1063, + 1833, + 1034, + 1833 + ], + "score": 0.86, + "latex": "\\mathbf { \\nabla } _ { \\mathbf { \\psi } _ { j } } \\mathbf { \\sigma } _ { j } \\mathbf { \\sigma } _ { j } " + }, + { + "category_id": 13, + "poly": [ + 800, + 1040, + 823, + 1040, + 823, + 1066, + 800, + 1066 + ], + "score": 0.85, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 858, + 492, + 883, + 492, + 883, + 521, + 858, + 521 + ], + "score": 0.85, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1554, + 960, + 1554, + 960, + 1580, + 938, + 1580 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 1311, + 1307, + 1332, + 1307, + 1332, + 1333, + 1311, + 1333 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 502, + 1463, + 525, + 1463, + 525, + 1489, + 502, + 1489 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 401, + 1246, + 424, + 1246, + 424, + 1272, + 401, + 1272 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 908, + 1246, + 931, + 1246, + 931, + 1272, + 908, + 1272 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 688, + 1849, + 711, + 1849, + 711, + 1875, + 688, + 1875 + ], + "score": 0.83, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 509, + 1741, + 534, + 1741, + 534, + 1768, + 509, + 1768 + ], + "score": 0.83, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 860, + 1493, + 885, + 1493, + 885, + 1519, + 860, + 1519 + ], + "score": 0.83, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 464, + 1307, + 487, + 1307, + 487, + 1333, + 464, + 1333 + ], + "score": 0.83, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 874, + 1040, + 897, + 1040, + 897, + 1066, + 874, + 1066 + ], + "score": 0.82, + "latex": "\\Psi" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1306, + 1260, + 1306, + 1260, + 1333, + 1235, + 1333 + ], + "score": 0.82, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 373, + 808, + 399, + 808, + 399, + 834, + 373, + 834 + ], + "score": 0.82, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1849, + 786, + 1849, + 786, + 1876, + 762, + 1876 + ], + "score": 0.82, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 1013, + 843, + 1034, + 843, + 1034, + 868, + 1013, + 868 + ], + "score": 0.8, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 475, + 1246, + 499, + 1246, + 499, + 1272, + 475, + 1272 + ], + "score": 0.8, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 357, + 326, + 379, + 326, + 379, + 350, + 357, + 350 + ], + "score": 0.75, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 423, + 388, + 443, + 388, + 443, + 410, + 423, + 410 + ], + "score": 0.71, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 750, + 1306, + 775, + 1306, + 775, + 1334, + 750, + 1334 + ], + "score": 0.7, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 897, + 462, + 922, + 462, + 922, + 490, + 897, + 490 + ], + "score": 0.67, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 610, + 326, + 631, + 326, + 631, + 353, + 610, + 353 + ], + "score": 0.62, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 400, + 266, + 423, + 266, + 423, + 294, + 400, + 294 + ], + "score": 0.59, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 369, + 265, + 423, + 265, + 423, + 294, + 369, + 294 + ], + "score": 0.27, + "latex": "{ \\bf { S 0 } } \\ y" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1915.0, + 645.0, + 1915.0, + 645.0, + 1948.0, + 296.0, + 1948.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": [ + 292.0, + 592.0, + 1168.0, + 592.0, + 1168.0, + 638.0, + 292.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1460.0, + 501.0, + 1460.0, + 501.0, + 1498.0, + 295.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1460.0, + 606.0, + 1460.0, + 606.0, + 1498.0, + 526.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1460.0, + 1406.0, + 1460.0, + 1406.0, + 1498.0, + 652.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1492.0, + 859.0, + 1492.0, + 859.0, + 1526.0, + 296.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1492.0, + 1404.0, + 1492.0, + 1404.0, + 1526.0, + 886.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 524.0, + 1520.0, + 524.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1520.0, + 1407.0, + 1520.0, + 1407.0, + 1561.0, + 571.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1549.0, + 937.0, + 1549.0, + 937.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1549.0, + 1409.0, + 1549.0, + 1409.0, + 1589.0, + 961.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1584.0, + 627.0, + 1584.0, + 627.0, + 1613.0, + 297.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 912.0, + 1408.0, + 912.0, + 1408.0, + 950.0, + 295.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 468.0, + 941.0, + 468.0, + 986.0, + 292.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 941.0, + 1408.0, + 941.0, + 1408.0, + 986.0, + 634.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 976.0, + 924.0, + 976.0, + 924.0, + 1015.0, + 293.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 976.0, + 1404.0, + 976.0, + 1404.0, + 1015.0, + 1009.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1005.0, + 689.0, + 1005.0, + 689.0, + 1046.0, + 293.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1005.0, + 1035.0, + 1005.0, + 1035.0, + 1046.0, + 735.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1005.0, + 1403.0, + 1005.0, + 1403.0, + 1046.0, + 1082.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1036.0, + 799.0, + 1036.0, + 799.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1036.0, + 873.0, + 1036.0, + 873.0, + 1076.0, + 824.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1036.0, + 1398.0, + 1036.0, + 1398.0, + 1076.0, + 898.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 507.0, + 226.0, + 507.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 554.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 368.0, + 261.0, + 368.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 261.0, + 1297.0, + 261.0, + 1297.0, + 297.0, + 424.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 297.0, + 1344.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 288.0, + 1408.0, + 288.0, + 1408.0, + 330.0, + 291.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 321.0, + 356.0, + 321.0, + 356.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 321.0, + 609.0, + 321.0, + 609.0, + 357.0, + 380.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 357.0, + 632.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 353.0, + 337.0, + 353.0, + 337.0, + 385.0, + 296.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 353.0, + 1403.0, + 353.0, + 1403.0, + 385.0, + 384.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 422.0, + 383.0, + 422.0, + 419.0, + 295.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 383.0, + 1408.0, + 383.0, + 1408.0, + 419.0, + 444.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1177.0, + 1407.0, + 1177.0, + 1407.0, + 1223.0, + 292.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1250.0, + 295.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1240.0, + 400.0, + 1240.0, + 400.0, + 1285.0, + 292.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1240.0, + 474.0, + 1240.0, + 474.0, + 1285.0, + 425.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1240.0, + 907.0, + 1240.0, + 907.0, + 1285.0, + 500.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1240.0, + 1406.0, + 1240.0, + 1406.0, + 1285.0, + 932.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1309.0, + 292.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1305.0, + 463.0, + 1305.0, + 463.0, + 1342.0, + 295.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1305.0, + 749.0, + 1305.0, + 749.0, + 1342.0, + 488.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1305.0, + 928.0, + 1305.0, + 928.0, + 1342.0, + 776.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1305.0, + 1234.0, + 1305.0, + 1234.0, + 1342.0, + 964.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1305.0, + 1310.0, + 1305.0, + 1310.0, + 1342.0, + 1261.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1305.0, + 1343.0, + 1305.0, + 1343.0, + 1342.0, + 1333.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 608.0, + 429.0, + 608.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 429.0, + 1404.0, + 429.0, + 1404.0, + 465.0, + 655.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 457.0, + 896.0, + 457.0, + 896.0, + 499.0, + 292.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 457.0, + 1405.0, + 457.0, + 1405.0, + 499.0, + 923.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 857.0, + 490.0, + 857.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 490.0, + 932.0, + 490.0, + 932.0, + 525.0, + 884.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 490.0, + 1406.0, + 490.0, + 1406.0, + 525.0, + 973.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 523.0, + 1286.0, + 523.0, + 1286.0, + 555.0, + 293.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 372.0, + 804.0, + 372.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 804.0, + 706.0, + 804.0, + 706.0, + 842.0, + 400.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 804.0, + 973.0, + 804.0, + 973.0, + 842.0, + 916.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 804.0, + 1405.0, + 804.0, + 1405.0, + 842.0, + 1079.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 836.0, + 1012.0, + 836.0, + 1012.0, + 869.0, + 294.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 836.0, + 1081.0, + 836.0, + 1081.0, + 869.0, + 1035.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 869.0, + 1111.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 867.0, + 1342.0, + 867.0, + 1342.0, + 901.0, + 295.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1739.0, + 508.0, + 1739.0, + 508.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1739.0, + 1407.0, + 1739.0, + 1407.0, + 1777.0, + 535.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1768.0, + 1404.0, + 1768.0, + 1404.0, + 1804.0, + 293.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1797.0, + 787.0, + 1797.0, + 787.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1797.0, + 1033.0, + 1797.0, + 1033.0, + 1840.0, + 833.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1797.0, + 1077.0, + 1797.0, + 1077.0, + 1840.0, + 1064.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 879.0, + 1971.0, + 879.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 926.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 794.0, + 2001.0, + 794.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2001.0, + 918.0, + 2001.0, + 918.0, + 2040.0, + 840.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 2001.0, + 1014.0, + 2001.0, + 1014.0, + 2040.0, + 966.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 2001.0, + 1410.0, + 2001.0, + 1410.0, + 2040.0, + 1060.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 662.0, + 1214.0, + 662.0, + 1214.0, + 702.0, + 295.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1350.0, + 957.0, + 1350.0, + 957.0, + 1388.0, + 293.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1842.0, + 687.0, + 1842.0, + 687.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1842.0, + 761.0, + 1842.0, + 761.0, + 1886.0, + 712.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1842.0, + 1095.0, + 1842.0, + 1095.0, + 1886.0, + 787.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1627.0, + 747.0, + 1627.0, + 747.0, + 1667.0, + 296.0, + 1667.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 445, + 1406, + 445, + 1406, + 600, + 295, + 600 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1558, + 1405, + 1558, + 1405, + 1774, + 297, + 1774 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1061, + 1403, + 1061, + 1403, + 1186, + 298, + 1186 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1373, + 1405, + 1373, + 1405, + 1498, + 297, + 1498 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 354, + 298, + 354 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 740, + 1404, + 740, + 1404, + 866, + 298, + 866 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 880, + 1404, + 880, + 1404, + 1004, + 296, + 1004 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1199, + 1406, + 1199, + 1406, + 1263, + 298, + 1263 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1404, + 1949, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 631, + 1012, + 1066, + 1012, + 1066, + 1051, + 631, + 1051 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1398, + 1788, + 1398, + 1852, + 298, + 1852 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 299, + 1867, + 1402, + 1867, + 1402, + 1929, + 299, + 1929 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 437, + 610, + 1263, + 610, + 1263, + 685, + 437, + 685 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 295, + 1510, + 1372, + 1510, + 1372, + 1545, + 295, + 1545 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 304, + 695, + 1403, + 695, + 1403, + 728, + 304, + 728 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 299, + 1306, + 1082, + 1306, + 1082, + 1342, + 299, + 1342 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1016, + 1399, + 1016, + 1399, + 1046, + 1352, + 1046 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 302, + 389, + 769, + 389, + 769, + 421, + 302, + 421 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 620, + 1399, + 620, + 1399, + 650, + 1352, + 650 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 14, + "poly": [ + 628, + 1012, + 1070, + 1012, + 1070, + 1053, + 628, + 1053 + ], + "score": 0.94, + "latex": "[ 1 - E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb A } _ { \\Phi } ( { \\pmb x } _ { i } ) ) + E _ { \\Theta } ( { \\pmb x } _ { i } , { \\pmb y } _ { i } ) ] _ { + }" + }, + { + "category_id": 14, + "poly": [ + 432, + 607, + 1265, + 607, + 1265, + 688, + 432, + 688 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\Theta } \\operatorname* { m a x } _ { \\Phi } \\sum _ { \\langle \\mathbf { x } _ { i } , \\mathbf { y } _ { i } \\rangle \\in \\mathcal { D } } \\bigtriangleup ( \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) , \\mathbf { y } _ { i } ) [ 1 - E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\mathbf { x } _ { i } ) ) + E _ { \\Theta } ( \\mathbf { x } _ { i } , \\mathbf { y } _ { i } ) ] _ { + }" + }, + { + "category_id": 13, + "poly": [ + 917, + 1682, + 1001, + 1682, + 1001, + 1714, + 917, + 1714 + ], + "score": 0.93, + "latex": "{ \\bf A } _ { \\Phi } ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 845, + 1591, + 928, + 1591, + 928, + 1623, + 845, + 1623 + ], + "score": 0.93, + "latex": "\\mathbf { A } _ { \\Phi } ( \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 574, + 773, + 802, + 773, + 802, + 808, + 574, + 808 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1062, + 1278, + 1062, + 1278, + 1095, + 1185, + 1095 + ], + "score": 0.92, + "latex": "{ \\bf A } _ { \\Phi } ( { \\pmb x } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1558, + 1170, + 1558, + 1170, + 1593, + 1005, + 1593 + ], + "score": 0.92, + "latex": "\\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } ) )" + }, + { + "category_id": 13, + "poly": [ + 445, + 880, + 673, + 880, + 673, + 915, + 445, + 915 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\triangle ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } ) = 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1510, + 1153, + 1510, + 1153, + 1546, + 1091, + 1546 + ], + "score": 0.92, + "latex": "\\| \\Phi \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 933, + 973, + 1011, + 973, + 1011, + 1001, + 933, + 1001 + ], + "score": 0.9, + "latex": "\\triangle = 1" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1866, + 1403, + 1866, + 1403, + 1901, + 1174, + 1901 + ], + "score": 0.9, + "latex": "\\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\pmb { x } _ { i } ) , \\pmb { y } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 444, + 914, + 531, + 914, + 531, + 940, + 444, + 940 + ], + "score": 0.89, + "latex": "\\triangle = 1" + }, + { + "category_id": 13, + "poly": [ + 960, + 1231, + 1038, + 1231, + 1038, + 1259, + 960, + 1259 + ], + "score": 0.88, + "latex": "\\triangle = 0" + }, + { + "category_id": 13, + "poly": [ + 949, + 232, + 995, + 232, + 995, + 262, + 949, + 262 + ], + "score": 0.88, + "latex": "\\mathbf { A } _ { \\Psi }" + }, + { + "category_id": 13, + "poly": [ + 616, + 1514, + 649, + 1514, + 649, + 1544, + 616, + 1544 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 617, + 1790, + 649, + 1790, + 649, + 1820, + 617, + 1820 + ], + "score": 0.87, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1513, + 1367, + 1513, + 1367, + 1544, + 1336, + 1544 + ], + "score": 0.87, + "latex": "\\lambda _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 659, + 1097, + 689, + 1097, + 689, + 1126, + 659, + 1126 + ], + "score": 0.86, + "latex": "\\mathbf { \\nabla } _ { \\mathbf { \\mathcal { Y } } _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1232, + 1321, + 1232, + 1321, + 1260, + 1240, + 1260 + ], + "score": 0.86, + "latex": "\\triangle = 1" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1714, + 1401, + 1714, + 1401, + 1744, + 1336, + 1744 + ], + "score": 0.85, + "latex": "\\mathrm { l o s s } _ { \\mathrm { H } }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 697, + 1322, + 697, + 1322, + 723, + 1299, + 723 + ], + "score": 0.84, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 298, + 1515, + 331, + 1515, + 331, + 1544, + 298, + 1544 + ], + "score": 0.83, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 512, + 323, + 539, + 323, + 539, + 349, + 512, + 349 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 424, + 232, + 448, + 232, + 448, + 258, + 424, + 258 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 1373, + 697, + 1396, + 697, + 1396, + 723, + 1373, + 723 + ], + "score": 0.82, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 323, + 1683, + 351, + 1683, + 351, + 1709, + 323, + 1709 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 582, + 232, + 607, + 232, + 607, + 258, + 582, + 258 + ], + "score": 0.8, + "latex": "\\Psi" + }, + { + "category_id": 13, + "poly": [ + 1379, + 1684, + 1401, + 1684, + 1401, + 1709, + 1379, + 1709 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1683, + 1157, + 1683, + 1157, + 1709, + 1130, + 1709 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1214, + 232, + 1242, + 232, + 1242, + 258, + 1214, + 258 + ], + "score": 0.79, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 937, + 1715, + 959, + 1715, + 959, + 1740, + 937, + 1740 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 581, + 1683, + 603, + 1683, + 603, + 1709, + 581, + 1709 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1656, + 1401, + 1656, + 1401, + 1679, + 1380, + 1679 + ], + "score": 0.76, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1128, + 318, + 1128, + 318, + 1156, + 298, + 1156 + ], + "score": 0.75, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 439, + 326, + 461, + 326, + 461, + 349, + 439, + 349 + ], + "score": 0.74, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1717, + 1254, + 1717, + 1254, + 1740, + 1233, + 1740 + ], + "score": 0.66, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1624, + 1281, + 1624, + 1281, + 1651, + 1217, + 1651 + ], + "score": 0.37, + "latex": "\\mathrm { l o s s } _ { \\mathrm { H } }" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1985.0, + 331.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 1404.0, + 1978.0, + 1404.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2005.0, + 1218.0, + 2005.0, + 1218.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1303.0, + 1085.0, + 1303.0, + 1085.0, + 1347.0, + 291.0, + 1347.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, + 386.0, + 773.0, + 386.0, + 773.0, + 426.0, + 294.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 448.0, + 1408.0, + 448.0, + 1408.0, + 481.0, + 297.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 475.0, + 1406.0, + 475.0, + 1406.0, + 515.0, + 293.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 505.0, + 1409.0, + 505.0, + 1409.0, + 544.0, + 290.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 536.0, + 1406.0, + 536.0, + 1406.0, + 574.0, + 293.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 568.0, + 1403.0, + 568.0, + 1403.0, + 605.0, + 294.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1004.0, + 1557.0, + 1004.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1557.0, + 1408.0, + 1557.0, + 1408.0, + 1596.0, + 1171.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 844.0, + 1591.0, + 844.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1625.0, + 929.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1216.0, + 1619.0, + 1216.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1656.0, + 1282.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 1379.0, + 1650.0, + 1379.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1687.0, + 1402.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1678.0, + 322.0, + 1678.0, + 322.0, + 1718.0, + 291.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1678.0, + 580.0, + 1678.0, + 580.0, + 1718.0, + 352.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1678.0, + 916.0, + 1678.0, + 916.0, + 1718.0, + 604.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1678.0, + 1129.0, + 1678.0, + 1129.0, + 1718.0, + 1002.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1678.0, + 1378.0, + 1678.0, + 1378.0, + 1718.0, + 1158.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1718.0, + 1402.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1709.0, + 936.0, + 1709.0, + 936.0, + 1751.0, + 291.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1709.0, + 1232.0, + 1709.0, + 1232.0, + 1751.0, + 960.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1709.0, + 1335.0, + 1709.0, + 1335.0, + 1751.0, + 1255.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1751.0, + 1402.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1743.0, + 1222.0, + 1743.0, + 1222.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1059.0, + 1184.0, + 1059.0, + 1184.0, + 1098.0, + 292.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1059.0, + 1407.0, + 1059.0, + 1407.0, + 1098.0, + 1279.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 658.0, + 1092.0, + 658.0, + 1128.0, + 294.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1092.0, + 1407.0, + 1092.0, + 1407.0, + 1128.0, + 690.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1124.0, + 297.0, + 1124.0, + 297.0, + 1159.0, + 292.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1159.0, + 319.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1155.0, + 1274.0, + 1155.0, + 1274.0, + 1188.0, + 296.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1406.0, + 1373.0, + 1406.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1441.0, + 292.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1299.0, + 1467.0, + 1299.0, + 1500.0, + 295.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 229.0, + 423.0, + 229.0, + 423.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 229.0, + 581.0, + 229.0, + 581.0, + 266.0, + 449.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 229.0, + 948.0, + 229.0, + 948.0, + 266.0, + 608.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 229.0, + 1213.0, + 229.0, + 1213.0, + 266.0, + 996.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 1243.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 293.0, + 296.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 438.0, + 318.0, + 438.0, + 358.0, + 292.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 318.0, + 511.0, + 318.0, + 511.0, + 358.0, + 462.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 318.0, + 1258.0, + 318.0, + 1258.0, + 358.0, + 540.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 739.0, + 1404.0, + 739.0, + 1404.0, + 779.0, + 293.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 771.0, + 573.0, + 771.0, + 573.0, + 810.0, + 292.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 771.0, + 1405.0, + 771.0, + 1405.0, + 810.0, + 803.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1404.0, + 805.0, + 1404.0, + 838.0, + 294.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1036.0, + 834.0, + 1036.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 878.0, + 444.0, + 878.0, + 444.0, + 918.0, + 291.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 878.0, + 1409.0, + 878.0, + 1409.0, + 918.0, + 674.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 908.0, + 443.0, + 908.0, + 443.0, + 947.0, + 291.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 908.0, + 1406.0, + 908.0, + 1406.0, + 947.0, + 532.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 942.0, + 1402.0, + 942.0, + 1402.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 974.0, + 932.0, + 974.0, + 932.0, + 1006.0, + 296.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 974.0, + 1024.0, + 974.0, + 1024.0, + 1006.0, + 1012.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1200.0, + 1406.0, + 1200.0, + 1406.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1230.0, + 959.0, + 1230.0, + 959.0, + 1266.0, + 295.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1230.0, + 1239.0, + 1230.0, + 1239.0, + 1266.0, + 1039.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1230.0, + 1340.0, + 1230.0, + 1340.0, + 1266.0, + 1322.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1788.0, + 616.0, + 1788.0, + 616.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1788.0, + 1401.0, + 1788.0, + 1401.0, + 1824.0, + 650.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1215.0, + 1819.0, + 1215.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 1173.0, + 1863.0, + 1173.0, + 1906.0, + 293.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1863.0, + 1407.0, + 1863.0, + 1407.0, + 1906.0, + 1404.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1890.0, + 1409.0, + 1890.0, + 1409.0, + 1939.0, + 292.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1508.0, + 615.0, + 1508.0, + 615.0, + 1551.0, + 332.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1508.0, + 1090.0, + 1508.0, + 1090.0, + 1551.0, + 650.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1508.0, + 1335.0, + 1508.0, + 1335.0, + 1551.0, + 1154.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1508.0, + 1377.0, + 1508.0, + 1377.0, + 1551.0, + 1368.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 692.0, + 1298.0, + 692.0, + 1298.0, + 731.0, + 298.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 692.0, + 1372.0, + 692.0, + 1372.0, + 731.0, + 1323.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 692.0, + 1407.0, + 692.0, + 1407.0, + 731.0, + 1397.0, + 731.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1528, + 1406, + 1528, + 1406, + 1804, + 297, + 1804 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1098, + 1405, + 1098, + 1405, + 1316, + 297, + 1316 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1819, + 1405, + 1819, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 870, + 1405, + 870, + 1405, + 1084, + 297, + 1084 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1329, + 1404, + 1329, + 1404, + 1514, + 297, + 1514 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1402, + 228, + 1402, + 353, + 298, + 353 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 405, + 552, + 1294, + 552, + 1294, + 657, + 405, + 657 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 293, + 367, + 1400, + 367, + 1400, + 432, + 293, + 432 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 299, + 761, + 588, + 761, + 588, + 797, + 299, + 797 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 445, + 1149, + 445, + 1149, + 479, + 298, + 479 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.733 + }, + { + "category_id": 13, + "poly": [ + 1164, + 367, + 1290, + 367, + 1290, + 402, + 1164, + 402 + ], + "score": 0.94, + "latex": "\\lVert \\Phi - \\Phi _ { 0 } \\rVert _ { 2 } ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 404, + 549, + 1296, + 549, + 1296, + 660, + 404, + 660 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\hat { \\Phi } \\underset { \\Phi } { \\operatorname { a r g m a x } } \\ [ \\triangle ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) + E _ { \\Theta } ( \\boldsymbol { x } _ { i } , \\boldsymbol { y } _ { i } ) ] _ { + } - \\lambda _ { 1 } \\| \\Phi \\| _ { 2 } ^ { 2 } } \\\\ { + \\lambda _ { 2 } \\mathrm { l o s s } _ { \\mathrm { H } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) ) - \\lambda _ { 3 } \\mathrm { l o s s } _ { \\mathrm { C E } } ( \\mathbf { A } _ { \\Phi } ( \\boldsymbol { x } _ { i } ) , \\boldsymbol { y } _ { i } ) - \\lambda _ { 4 } \\| \\Phi - \\Phi _ { 0 } \\| _ { 2 } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1366, + 369, + 1401, + 369, + 1401, + 401, + 1366, + 401 + ], + "score": 0.88, + "latex": "\\Phi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1302, + 406, + 1322, + 406, + 1322, + 431, + 1302, + 431 + ], + "score": 0.81, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 881, + 933, + 908, + 933, + 908, + 960, + 881, + 960 + ], + "score": 0.75, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 297, + 964, + 323, + 964, + 323, + 991, + 297, + 991 + ], + "score": 0.56, + "latex": "G" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 758.0, + 592.0, + 758.0, + 592.0, + 801.0, + 294.0, + 801.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, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1560.0, + 1408.0, + 1560.0, + 1408.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1619.0, + 1409.0, + 1619.0, + 1409.0, + 1656.0, + 295.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1648.0, + 1409.0, + 1648.0, + 1409.0, + 1688.0, + 294.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1680.0, + 1407.0, + 1680.0, + 1407.0, + 1717.0, + 295.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1709.0, + 1408.0, + 1709.0, + 1408.0, + 1748.0, + 292.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1407.0, + 1740.0, + 1407.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 511.0, + 1776.0, + 511.0, + 1804.0, + 293.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1100.0, + 1406.0, + 1100.0, + 1406.0, + 1135.0, + 296.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1408.0, + 1131.0, + 1408.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1407.0, + 1162.0, + 1407.0, + 1197.0, + 295.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1403.0, + 1221.0, + 1403.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1289.0, + 292.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1284.0, + 1023.0, + 1284.0, + 1023.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1407.0, + 1849.0, + 1407.0, + 1886.0, + 292.0, + 1886.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": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1403.0, + 1941.0, + 1403.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1008.0, + 2003.0, + 1008.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 908.0, + 294.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 901.0, + 1403.0, + 901.0, + 1403.0, + 935.0, + 295.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 928.0, + 880.0, + 928.0, + 880.0, + 968.0, + 292.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 928.0, + 1406.0, + 928.0, + 1406.0, + 968.0, + 909.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 961.0, + 1405.0, + 961.0, + 1405.0, + 998.0, + 324.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1405.0, + 1021.0, + 1405.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1056.0, + 441.0, + 1056.0, + 441.0, + 1084.0, + 296.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1330.0, + 1406.0, + 1330.0, + 1406.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1406.0, + 1391.0, + 1406.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 1406.0, + 1421.0, + 1406.0, + 1457.0, + 295.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 1407.0, + 1452.0, + 1407.0, + 1488.0, + 295.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1099.0, + 1479.0, + 1099.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 323.0, + 893.0, + 323.0, + 893.0, + 353.0, + 297.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1163.0, + 366.0, + 1163.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 366.0, + 1365.0, + 366.0, + 1365.0, + 406.0, + 1291.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 406.0, + 1402.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 396.0, + 1301.0, + 396.0, + 1301.0, + 438.0, + 292.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 396.0, + 1333.0, + 396.0, + 1333.0, + 438.0, + 1323.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1149.0, + 441.0, + 1149.0, + 484.0, + 294.0, + 484.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1198, + 1405, + 1198, + 1405, + 1472, + 297, + 1472 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 967, + 1403, + 967, + 1403, + 1182, + 298, + 1182 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1487, + 1405, + 1487, + 1405, + 1703, + 297, + 1703 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1718, + 1405, + 1718, + 1405, + 1871, + 298, + 1871 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 578, + 1403, + 578, + 1403, + 669, + 298, + 669 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 296, + 1978, + 1402, + 1978, + 1402, + 2034, + 296, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 300, + 1887, + 1400, + 1887, + 1400, + 1948, + 300, + 1948 + ], + "score": 0.935 + }, + { + "category_id": 5, + "poly": [ + 529, + 290, + 1170, + 290, + 1170, + 441, + 529, + 441 + ], + "score": 0.927, + "html": "
BibtexBookmarksDeliciousavg.
MLP38.933.837.836.8
SPEN (BM16)42.234.437.538.0
SPEN (E2E)38.133.934.435.5
SPEN (InfNet)42.237.637.539.1
" + }, + { + "category_id": 0, + "poly": [ + 300, + 506, + 558, + 506, + 558, + 541, + 300, + 541 + ], + "score": 0.913 + }, + { + "category_id": 6, + "poly": [ + 396, + 249, + 1299, + 249, + 1299, + 282, + 396, + 282 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 301, + 711, + 744, + 711, + 744, + 742, + 301, + 742 + ], + "score": 0.876 + }, + { + "category_id": 1, + "poly": [ + 297, + 768, + 1406, + 768, + 1406, + 953, + 297, + 953 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.796 + }, + { + "category_id": 13, + "poly": [ + 406, + 1059, + 469, + 1059, + 469, + 1092, + 406, + 1092 + ], + "score": 0.92, + "latex": "F ( { \\dot { \\mathbf { x } } } )" + }, + { + "category_id": 13, + "poly": [ + 663, + 1229, + 727, + 1229, + 727, + 1261, + 663, + 1261 + ], + "score": 0.92, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1121, + 1403, + 1121, + 1403, + 1154, + 1340, + 1154 + ], + "score": 0.92, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 673, + 999, + 736, + 999, + 736, + 1031, + 673, + 1031 + ], + "score": 0.91, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1290, + 1247, + 1290, + 1247, + 1322, + 1185, + 1322 + ], + "score": 0.89, + "latex": "( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 390, + 1443, + 424, + 1443, + 424, + 1472, + 390, + 1472 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1381, + 973, + 1381, + 973, + 1411, + 938, + 1411 + ], + "score": 0.85, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 962, + 1153, + 985, + 1153, + 985, + 1179, + 962, + 1179 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 887, + 1153, + 912, + 1153, + 912, + 1179, + 887, + 1179 + ], + "score": 0.81, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 565, + 1443, + 592, + 1443, + 592, + 1469, + 565, + 1469 + ], + "score": 0.8, + "latex": "\\triangle" + }, + { + "category_id": 13, + "poly": [ + 297, + 1260, + 320, + 1260, + 320, + 1288, + 297, + 1288 + ], + "score": 0.79, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 547, + 1615, + 568, + 1615, + 568, + 1643, + 547, + 1643 + ], + "score": 0.75, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 651, + 1355, + 671, + 1355, + 671, + 1378, + 651, + 1378 + ], + "score": 0.73, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 832, + 1122, + 873, + 1122, + 873, + 1151, + 832, + 1151 + ], + "score": 0.73, + "latex": "( \\Phi )" + }, + { + "category_id": 13, + "poly": [ + 484, + 1122, + 525, + 1122, + 525, + 1151, + 484, + 1151 + ], + "score": 0.69, + "latex": "( \\Theta )" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2004.0, + 1078.0, + 2004.0, + 1078.0, + 2036.0, + 292.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 502.0, + 561.0, + 502.0, + 561.0, + 547.0, + 293.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 247.0, + 1304.0, + 247.0, + 1304.0, + 285.0, + 395.0, + 285.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, + 706.0, + 749.0, + 706.0, + 749.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1197.0, + 1406.0, + 1197.0, + 1406.0, + 1232.0, + 295.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1227.0, + 662.0, + 1227.0, + 662.0, + 1264.0, + 294.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1227.0, + 1405.0, + 1227.0, + 1405.0, + 1264.0, + 728.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1257.0, + 296.0, + 1257.0, + 296.0, + 1295.0, + 292.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1295.0, + 321.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1184.0, + 1290.0, + 1184.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1290.0, + 1405.0, + 1290.0, + 1405.0, + 1326.0, + 1248.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1319.0, + 1405.0, + 1319.0, + 1405.0, + 1356.0, + 294.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1348.0, + 650.0, + 1348.0, + 650.0, + 1384.0, + 295.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1348.0, + 1403.0, + 1348.0, + 1403.0, + 1384.0, + 672.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 937.0, + 1380.0, + 937.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1380.0, + 1408.0, + 1380.0, + 1408.0, + 1417.0, + 974.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1406.0, + 1412.0, + 1406.0, + 1448.0, + 295.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1440.0, + 389.0, + 1440.0, + 389.0, + 1479.0, + 292.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1440.0, + 564.0, + 1440.0, + 564.0, + 1479.0, + 425.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1440.0, + 1264.0, + 1440.0, + 1264.0, + 1479.0, + 593.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 966.0, + 1407.0, + 966.0, + 1407.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 996.0, + 672.0, + 996.0, + 672.0, + 1036.0, + 293.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 996.0, + 1407.0, + 996.0, + 1407.0, + 1036.0, + 737.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1026.0, + 1407.0, + 1026.0, + 1407.0, + 1066.0, + 292.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1057.0, + 405.0, + 1057.0, + 405.0, + 1097.0, + 291.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1057.0, + 1407.0, + 1057.0, + 1407.0, + 1097.0, + 470.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1405.0, + 1090.0, + 1405.0, + 1125.0, + 293.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 483.0, + 1121.0, + 483.0, + 1156.0, + 294.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1121.0, + 831.0, + 1121.0, + 831.0, + 1156.0, + 526.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1121.0, + 1339.0, + 1121.0, + 1339.0, + 1156.0, + 874.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1151.0, + 886.0, + 1151.0, + 886.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1151.0, + 961.0, + 1151.0, + 961.0, + 1185.0, + 913.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1151.0, + 996.0, + 1151.0, + 996.0, + 1185.0, + 986.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1486.0, + 1406.0, + 1486.0, + 1406.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1518.0, + 1405.0, + 1518.0, + 1405.0, + 1553.0, + 294.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 1408.0, + 1549.0, + 1408.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1615.0, + 294.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 546.0, + 1611.0, + 546.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1611.0, + 1408.0, + 1611.0, + 1408.0, + 1646.0, + 569.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1641.0, + 1406.0, + 1641.0, + 1406.0, + 1674.0, + 291.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1670.0, + 1186.0, + 1670.0, + 1186.0, + 1706.0, + 292.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1410.0, + 1715.0, + 1410.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 1403.0, + 1748.0, + 1403.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1777.0, + 1405.0, + 1777.0, + 1405.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1810.0, + 1403.0, + 1810.0, + 1403.0, + 1843.0, + 296.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1842.0, + 633.0, + 1842.0, + 633.0, + 1875.0, + 295.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 577.0, + 1404.0, + 577.0, + 1404.0, + 614.0, + 293.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 609.0, + 1403.0, + 609.0, + 1403.0, + 643.0, + 296.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 639.0, + 749.0, + 639.0, + 749.0, + 672.0, + 296.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1406.0, + 1885.0, + 1406.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1916.0, + 1404.0, + 1916.0, + 1404.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 802.0, + 296.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 797.0, + 1406.0, + 797.0, + 1406.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 831.0, + 1403.0, + 831.0, + 1403.0, + 863.0, + 296.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 862.0, + 1407.0, + 862.0, + 1407.0, + 894.0, + 296.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 922.0, + 846.0, + 922.0, + 846.0, + 956.0, + 294.0, + 956.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 504, + 1405, + 504, + 1405, + 721, + 297, + 721 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1101, + 1406, + 1101, + 1406, + 1288, + 296, + 1288 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1450, + 1404, + 1450, + 1404, + 1607, + 298, + 1607 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 962, + 1407, + 962, + 1407, + 1089, + 298, + 1089 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1723, + 1404, + 1723, + 1404, + 1879, + 297, + 1879 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 382, + 290, + 1320, + 290, + 1320, + 441, + 382, + 441 + ], + "score": 0.976, + "html": "
Training Speed (examples/sec)Testing Speed (examples/sec)
BibtexBookmarksDeliciousBibtexBookmarksDelicious
MLP2167019591261589070692307113750
SPEN (E2E)55155938314201401832
SPEN (InfNet)5533546746679419488888112148
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1403, + 1910, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 568, + 1347, + 1128, + 1347, + 1128, + 1438, + 568, + 1438 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 508, + 1621, + 1188, + 1621, + 1188, + 1713, + 508, + 1713 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 813, + 1403, + 813, + 1403, + 877, + 300, + 877 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 1301, + 809, + 1301, + 809, + 1333, + 299, + 1333 + ], + "score": 0.926 + }, + { + "category_id": 6, + "poly": [ + 422, + 249, + 1266, + 249, + 1266, + 282, + 422, + 282 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 300, + 756, + 629, + 756, + 629, + 788, + 300, + 788 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1375, + 1400, + 1375, + 1400, + 1406, + 1352, + 1406 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1650, + 1399, + 1650, + 1399, + 1681, + 1352, + 1681 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 297, + 908, + 963, + 908, + 963, + 941, + 297, + 941 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 14, + "poly": [ + 509, + 1619, + 1190, + 1619, + 1190, + 1714, + 509, + 1714 + ], + "score": 0.95, + "latex": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } \\sum _ { i = 1 } ^ { L } y _ { t , i } \\left( U _ { i } ^ { \\top } f ( \\pmb { x } , t ) \\right) + \\sum _ { t } y _ { t - 1 } ^ { \\top } W y _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 371, + 1450, + 468, + 1450, + 468, + 1484, + 371, + 1484 + ], + "score": 0.94, + "latex": "U _ { i } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 567, + 1344, + 1131, + 1344, + 1131, + 1439, + 567, + 1439 + ], + "score": 0.94, + "latex": "E _ { \\Theta } ( \\pmb { x } , \\pmb { y } ) = - \\left( \\sum _ { t } U _ { y _ { t } } ^ { \\top } f ( \\pmb { x } , t ) + \\sum _ { t } W _ { y _ { t - 1 } , y _ { t } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1055, + 1326, + 1055, + 1326, + 1089, + 1233, + 1089 + ], + "score": 0.92, + "latex": "y _ { i } \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1222, + 1170, + 1222, + 1170, + 1256, + 1023, + 1256 + ], + "score": 0.92, + "latex": "f ( \\pmb { x } , t ) \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 415, + 1057, + 631, + 1057, + 631, + 1089, + 415, + 1089 + ], + "score": 0.92, + "latex": "\\pmb { y } = \\langle y _ { 1 } , y _ { 2 } , . . , y _ { N } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1450, + 1241, + 1450, + 1241, + 1481, + 1107, + 1481 + ], + "score": 0.91, + "latex": "W \\in \\mathbb { R } ^ { L \\times L }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1025, + 429, + 1025, + 429, + 1057, + 366, + 1057 + ], + "score": 0.91, + "latex": "\\mathcal { V } ( \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 460, + 1022, + 516, + 1022, + 516, + 1057, + 460, + 1057 + ], + "score": 0.91, + "latex": "[ L ] ^ { \\widetilde { N } }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1484, + 976, + 1484, + 976, + 1514, + 945, + 1514 + ], + "score": 0.88, + "latex": "U _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1820, + 1058, + 1820, + 1058, + 1849, + 1003, + 1849 + ], + "score": 0.88, + "latex": "y _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1730, + 412, + 1730, + 412, + 1758, + 371, + 1758 + ], + "score": 0.87, + "latex": "y _ { t , i }" + }, + { + "category_id": 13, + "poly": [ + 730, + 1730, + 755, + 1730, + 755, + 1756, + 730, + 1756 + ], + "score": 0.85, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1820, + 1135, + 1820, + 1135, + 1848, + 1109, + 1848 + ], + "score": 0.84, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 767, + 1061, + 793, + 1061, + 793, + 1088, + 767, + 1088 + ], + "score": 0.83, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 777, + 1485, + 801, + 1485, + 801, + 1512, + 777, + 1512 + ], + "score": 0.83, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 626, + 1550, + 652, + 1550, + 652, + 1576, + 626, + 1576 + ], + "score": 0.83, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1025, + 774, + 1025, + 774, + 1058, + 744, + 1058 + ], + "score": 0.82, + "latex": "[ q ]" + }, + { + "category_id": 13, + "poly": [ + 851, + 1256, + 868, + 1256, + 868, + 1282, + 851, + 1282 + ], + "score": 0.82, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 756, + 996, + 779, + 996, + 779, + 1022, + 756, + 1022 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 477, + 965, + 504, + 965, + 504, + 991, + 477, + 991 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 538, + 996, + 566, + 996, + 566, + 1022, + 538, + 1022 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1550, + 1248, + 1550, + 1248, + 1577, + 1227, + 1577 + ], + "score": 0.79, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1029, + 1211, + 1029, + 1211, + 1057, + 1193, + 1057 + ], + "score": 0.78, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 850, + 1518, + 871, + 1518, + 871, + 1545, + 850, + 1545 + ], + "score": 0.77, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1484, + 1106, + 1484, + 1106, + 1512, + 1073, + 1512 + ], + "score": 0.77, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 808, + 1455, + 820, + 1455, + 820, + 1480, + 808, + 1480 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1519, + 1372, + 1519, + 1372, + 1545, + 1352, + 1545 + ], + "score": 0.76, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1199, + 507, + 1199, + 507, + 1221, + 485, + 1221 + ], + "score": 0.75, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1301, + 1259, + 1313, + 1259, + 1313, + 1281, + 1301, + 1281 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 899, + 1228, + 920, + 1228, + 920, + 1251, + 899, + 1251 + ], + "score": 0.74, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1727, + 1294, + 1727, + 1294, + 1752, + 1282, + 1752 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 604, + 1258, + 617, + 1258, + 617, + 1282, + 604, + 1282 + ], + "score": 0.74, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 407, + 1000, + 428, + 1000, + 428, + 1022, + 407, + 1022 + ], + "score": 0.74, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1000, + 1274, + 1000, + 1274, + 1022, + 1253, + 1022 + ], + "score": 0.73, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1849, + 329, + 1849, + 329, + 1874, + 298, + 1874 + ], + "score": 0.65, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 948, + 1788, + 961, + 1788, + 961, + 1813, + 948, + 1813 + ], + "score": 0.64, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 736, + 1580, + 757, + 1580, + 757, + 1607, + 736, + 1607 + ], + "score": 0.59, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 482, + 1728, + 494, + 1728, + 494, + 1752, + 482, + 1752 + ], + "score": 0.35, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 555, + 1134, + 580, + 1134, + 580, + 1160, + 555, + 1160 + ], + "score": 0.31, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 243.0, + 1268.0, + 243.0, + 1268.0, + 289.0, + 420.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 755.0, + 632.0, + 755.0, + 632.0, + 792.0, + 295.0, + 792.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, + 906.0, + 965.0, + 906.0, + 965.0, + 946.0, + 294.0, + 946.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, + 506.0, + 1405.0, + 506.0, + 1405.0, + 541.0, + 295.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 565.0, + 1407.0, + 565.0, + 1407.0, + 601.0, + 292.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 599.0, + 1403.0, + 599.0, + 1403.0, + 630.0, + 295.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 626.0, + 1405.0, + 626.0, + 1405.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 693.0, + 295.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 1332.0, + 688.0, + 1332.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 1406.0, + 1100.0, + 1406.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1130.0, + 554.0, + 1130.0, + 554.0, + 1168.0, + 293.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1130.0, + 1408.0, + 1130.0, + 1408.0, + 1168.0, + 581.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 1407.0, + 1161.0, + 1407.0, + 1200.0, + 293.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 484.0, + 1193.0, + 484.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1193.0, + 1406.0, + 1193.0, + 1406.0, + 1229.0, + 508.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1221.0, + 898.0, + 1221.0, + 898.0, + 1260.0, + 291.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1221.0, + 1022.0, + 1221.0, + 1022.0, + 1260.0, + 921.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1260.0, + 1171.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1255.0, + 603.0, + 1255.0, + 603.0, + 1287.0, + 296.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1255.0, + 850.0, + 1255.0, + 850.0, + 1287.0, + 618.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1255.0, + 1300.0, + 1255.0, + 1300.0, + 1287.0, + 869.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1255.0, + 1324.0, + 1255.0, + 1324.0, + 1287.0, + 1314.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1447.0, + 370.0, + 1447.0, + 370.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1447.0, + 807.0, + 1447.0, + 807.0, + 1487.0, + 469.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1447.0, + 1106.0, + 1447.0, + 1106.0, + 1487.0, + 821.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1447.0, + 1406.0, + 1447.0, + 1406.0, + 1487.0, + 1242.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1482.0, + 776.0, + 1482.0, + 776.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1482.0, + 944.0, + 1482.0, + 944.0, + 1518.0, + 802.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1482.0, + 1072.0, + 1482.0, + 1072.0, + 1518.0, + 977.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1518.0, + 1107.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1511.0, + 849.0, + 1511.0, + 849.0, + 1551.0, + 293.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1511.0, + 1351.0, + 1511.0, + 1351.0, + 1551.0, + 872.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1511.0, + 1406.0, + 1511.0, + 1406.0, + 1551.0, + 1373.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 625.0, + 1543.0, + 625.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1543.0, + 1226.0, + 1543.0, + 1226.0, + 1581.0, + 653.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1543.0, + 1408.0, + 1543.0, + 1408.0, + 1581.0, + 1249.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1575.0, + 735.0, + 1575.0, + 735.0, + 1609.0, + 296.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1575.0, + 1193.0, + 1575.0, + 1193.0, + 1609.0, + 758.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 476.0, + 960.0, + 476.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 960.0, + 1405.0, + 960.0, + 1405.0, + 998.0, + 505.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 992.0, + 406.0, + 992.0, + 406.0, + 1029.0, + 293.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 992.0, + 537.0, + 992.0, + 537.0, + 1029.0, + 429.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 992.0, + 755.0, + 992.0, + 755.0, + 1029.0, + 567.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 992.0, + 1252.0, + 992.0, + 1252.0, + 1029.0, + 780.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1029.0, + 1275.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1022.0, + 365.0, + 1022.0, + 365.0, + 1062.0, + 292.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1022.0, + 459.0, + 1022.0, + 459.0, + 1062.0, + 430.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1022.0, + 743.0, + 1022.0, + 743.0, + 1062.0, + 517.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1022.0, + 1192.0, + 1022.0, + 1192.0, + 1062.0, + 775.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1022.0, + 1412.0, + 1022.0, + 1412.0, + 1062.0, + 1212.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1051.0, + 414.0, + 1051.0, + 414.0, + 1093.0, + 293.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1051.0, + 766.0, + 1051.0, + 766.0, + 1093.0, + 632.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1051.0, + 1232.0, + 1051.0, + 1232.0, + 1093.0, + 794.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1051.0, + 1337.0, + 1051.0, + 1337.0, + 1093.0, + 1327.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1724.0, + 370.0, + 1724.0, + 370.0, + 1761.0, + 295.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1724.0, + 481.0, + 1724.0, + 481.0, + 1761.0, + 413.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1724.0, + 729.0, + 1724.0, + 729.0, + 1761.0, + 495.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1724.0, + 1281.0, + 1724.0, + 1281.0, + 1761.0, + 756.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1724.0, + 1406.0, + 1724.0, + 1406.0, + 1761.0, + 1295.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1790.0, + 295.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1782.0, + 947.0, + 1782.0, + 947.0, + 1820.0, + 295.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1782.0, + 1404.0, + 1782.0, + 1404.0, + 1820.0, + 962.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1813.0, + 1002.0, + 1813.0, + 1002.0, + 1854.0, + 294.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1813.0, + 1108.0, + 1813.0, + 1108.0, + 1854.0, + 1059.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1813.0, + 1407.0, + 1813.0, + 1407.0, + 1854.0, + 1136.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1845.0, + 1030.0, + 1845.0, + 1030.0, + 1882.0, + 330.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 981.0, + 2004.0, + 981.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 813.0, + 1407.0, + 813.0, + 1407.0, + 849.0, + 296.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 845.0, + 1371.0, + 845.0, + 1371.0, + 880.0, + 295.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 811.0, + 1296.0, + 811.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1630, + 1405, + 1630, + 1405, + 1846, + 298, + 1846 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1129, + 1404, + 1129, + 1404, + 1375, + 298, + 1375 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 960, + 1405, + 960, + 1405, + 1115, + 298, + 1115 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1389, + 1403, + 1389, + 1403, + 1545, + 298, + 1545 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 408, + 692, + 1289, + 692, + 1289, + 840, + 408, + 840 + ], + "score": 0.973, + "html": "
validation accuracy (%)test accuracy (%)training speed (examples/sec)testing speed (examples/sec)
BLSTM88.688.83851250
CRF89.189.2250500
SPEN (InfNet)89.689.81251250
" + }, + { + "category_id": 5, + "poly": [ + 569, + 323, + 1128, + 323, + 1128, + 498, + 569, + 498 + ], + "score": 0.968, + "html": "
SPEN hinge lossvalidation accuracy (%)
-retuning 89.1+retuning
margin rescaling slack rescaling89.489.3
perceptron (MR,△= 0)89.289.6
88.889.4
contrastive (△= 1)89.0
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1861, + 1404, + 1861, + 1404, + 1954, + 299, + 1954 + ], + "score": 0.967 + }, + { + "category_id": 6, + "poly": [ + 298, + 561, + 1402, + 561, + 1402, + 685, + 298, + 685 + ], + "score": 0.958 + }, + { + "category_id": 2, + "poly": [ + 300, + 1978, + 1402, + 1978, + 1402, + 2033, + 300, + 2033 + ], + "score": 0.934 + }, + { + "category_id": 6, + "poly": [ + 298, + 248, + 1398, + 248, + 1398, + 312, + 298, + 312 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 907, + 664, + 907, + 664, + 940, + 299, + 940 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1577, + 499, + 1577, + 499, + 1609, + 299, + 1609 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.802 + }, + { + "category_id": 13, + "poly": [ + 941, + 1130, + 1022, + 1130, + 1022, + 1163, + 941, + 1163 + ], + "score": 0.93, + "latex": "f ( { \\pmb x } , t )" + }, + { + "category_id": 13, + "poly": [ + 591, + 1161, + 689, + 1161, + 689, + 1189, + 591, + 1189 + ], + "score": 0.89, + "latex": "d = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 778, + 992, + 869, + 992, + 869, + 1020, + 778, + 1020 + ], + "score": 0.89, + "latex": "L = 2 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 1283, + 331, + 1283, + 331, + 1313, + 297, + 1313 + ], + "score": 0.87, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1253, + 1312, + 1253, + 1312, + 1280, + 1285, + 1280 + ], + "score": 0.8, + "latex": "\\triangle" + }, + { + "category_id": 13, + "poly": [ + 759, + 436, + 833, + 436, + 833, + 462, + 759, + 462 + ], + "score": 0.79, + "latex": "\\triangle = 0" + }, + { + "category_id": 13, + "poly": [ + 709, + 464, + 784, + 464, + 784, + 491, + 709, + 491 + ], + "score": 0.78, + "latex": "\\triangle = 1" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1134, + 1240, + 1134, + 1240, + 1159, + 1226, + 1159 + ], + "score": 0.58, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1072, + 325, + 1108, + 325, + 1108, + 351, + 1072, + 351 + ], + "score": 0.27, + "latex": "( \\% )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 599.0, + 293.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 595.0, + 1404.0, + 595.0, + 1404.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 622.0, + 1407.0, + 622.0, + 1407.0, + 662.0, + 292.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 426.0, + 657.0, + 426.0, + 687.0, + 294.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1970.0, + 1411.0, + 1970.0, + 1411.0, + 2013.0, + 329.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 687.0, + 2003.0, + 687.0, + 2033.0, + 296.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 248.0, + 1402.0, + 248.0, + 1402.0, + 284.0, + 294.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1213.0, + 277.0, + 1213.0, + 315.0, + 294.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 906.0, + 666.0, + 906.0, + 666.0, + 942.0, + 296.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 501.0, + 1573.0, + 501.0, + 1614.0, + 294.0, + 1614.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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1632.0, + 1405.0, + 1632.0, + 1405.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1664.0, + 1403.0, + 1664.0, + 1403.0, + 1695.0, + 296.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 1408.0, + 1692.0, + 1408.0, + 1727.0, + 293.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1406.0, + 1721.0, + 1406.0, + 1758.0, + 293.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1755.0, + 1403.0, + 1755.0, + 1403.0, + 1786.0, + 296.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1818.0, + 295.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1816.0, + 684.0, + 1816.0, + 684.0, + 1850.0, + 293.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1131.0, + 940.0, + 1131.0, + 940.0, + 1164.0, + 296.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1131.0, + 1225.0, + 1131.0, + 1225.0, + 1164.0, + 1023.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1131.0, + 1404.0, + 1131.0, + 1404.0, + 1164.0, + 1241.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 590.0, + 1161.0, + 590.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1194.0, + 690.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1226.0, + 296.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1250.0, + 1284.0, + 1250.0, + 1284.0, + 1287.0, + 293.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1287.0, + 1313.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1283.0, + 1404.0, + 1283.0, + 1404.0, + 1317.0, + 332.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1312.0, + 1407.0, + 1312.0, + 1407.0, + 1347.0, + 292.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 911.0, + 1345.0, + 911.0, + 1376.0, + 293.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 962.0, + 1407.0, + 962.0, + 1407.0, + 995.0, + 296.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 988.0, + 777.0, + 988.0, + 777.0, + 1026.0, + 296.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 988.0, + 1407.0, + 988.0, + 1407.0, + 1026.0, + 870.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1055.0, + 296.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1085.0, + 297.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1081.0, + 1403.0, + 1081.0, + 1403.0, + 1117.0, + 293.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1391.0, + 1404.0, + 1391.0, + 1404.0, + 1424.0, + 297.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1419.0, + 1405.0, + 1419.0, + 1405.0, + 1456.0, + 293.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1488.0, + 293.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1516.0, + 293.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 624.0, + 1514.0, + 624.0, + 1547.0, + 294.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1406.0, + 1892.0, + 1406.0, + 1926.0, + 295.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 559, + 1405, + 559, + 1405, + 805, + 297, + 805 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 890, + 1405, + 890, + 1405, + 1198, + 297, + 1198 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1739, + 1405, + 1739, + 1405, + 1955, + 297, + 1955 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1570, + 1404, + 1570, + 1404, + 1725, + 297, + 1725 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1429, + 1404, + 1429, + 1404, + 1557, + 297, + 1557 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1209, + 1405, + 1209, + 1405, + 1305, + 298, + 1305 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 590, + 322, + 1107, + 322, + 1107, + 413, + 590, + 413 + ], + "score": 0.959, + "html": "
val. accuracy (%)test accuracy (%)
-TLM89.889.6
+TLM89.990.2
" + }, + { + "category_id": 8, + "poly": [ + 565, + 1323, + 1135, + 1323, + 1135, + 1416, + 565, + 1416 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 481, + 1401, + 481, + 1401, + 543, + 298, + 543 + ], + "score": 0.952 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1406, + 1977, + 1406, + 2035, + 296, + 2035 + ], + "score": 0.939 + }, + { + "category_id": 6, + "poly": [ + 298, + 248, + 1398, + 248, + 1398, + 312, + 298, + 312 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1356, + 1400, + 1356, + 1400, + 1386, + 1352, + 1386 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 303, + 837, + 1400, + 837, + 1400, + 870, + 303, + 870 + ], + "score": 0.497 + }, + { + "category_id": 0, + "poly": [ + 303, + 837, + 1400, + 837, + 1400, + 870, + 303, + 870 + ], + "score": 0.473 + }, + { + "category_id": 14, + "poly": [ + 565, + 1319, + 1134, + 1319, + 1134, + 1418, + 565, + 1418 + ], + "score": 0.94, + "latex": "E ^ { \\mathrm { T L M } } ( \\pmb { y } ) = - \\sum _ { t = 1 } ^ { | \\pmb { y } | + 1 } \\log ( \\pmb { y } _ { t } ^ { \\top } \\mathrm { T L M } ( \\langle \\pmb { y } _ { 0 } , . . . , \\pmb { y } _ { t - 1 } \\rangle ) )" + }, + { + "category_id": 13, + "poly": [ + 723, + 1210, + 836, + 1210, + 836, + 1246, + 723, + 1246 + ], + "score": 0.92, + "latex": "E ^ { \\mathrm { T L M } } ( y )" + }, + { + "category_id": 13, + "poly": [ + 852, + 1435, + 927, + 1435, + 927, + 1467, + 852, + 1467 + ], + "score": 0.89, + "latex": "y _ { \\vert \\pmb { y } \\vert + 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1463, + 528, + 1463, + 528, + 1497, + 297, + 1497 + ], + "score": 0.88, + "latex": "\\mathrm { T L M } \\big ( \\langle y _ { 0 } , . . . , y _ { t - 1 } \\rangle \\big )" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1498, + 1053, + 1498, + 1053, + 1525, + 1025, + 1525 + ], + "score": 0.85, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 916, + 1633, + 1082, + 1633, + 1082, + 1665, + 916, + 1665 + ], + "score": 0.8, + "latex": "\\{ 0 . 1 , 0 . 2 , 0 . 5 \\} )" + }, + { + "category_id": 13, + "poly": [ + 385, + 1437, + 415, + 1437, + 415, + 1462, + 385, + 1462 + ], + "score": 0.79, + "latex": "y _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1530, + 1101, + 1530, + 1101, + 1557, + 1080, + 1557 + ], + "score": 0.77, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 356, + 985, + 378, + 985, + 378, + 1011, + 356, + 1011 + ], + "score": 0.77, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1218, + 1401, + 1218, + 1401, + 1245, + 1380, + 1245 + ], + "score": 0.69, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1140, + 1466, + 1154, + 1466, + 1154, + 1491, + 1140, + 1491 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1278, + 319, + 1278, + 319, + 1306, + 297, + 1306 + ], + "score": 0.67, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2011.0, + 331.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2005.0, + 1403.0, + 2005.0, + 1403.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 245.0, + 1402.0, + 245.0, + 1402.0, + 285.0, + 293.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 277.0, + 818.0, + 277.0, + 818.0, + 316.0, + 293.0, + 316.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": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 837.0, + 1404.0, + 837.0, + 1404.0, + 872.0, + 297.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 597.0, + 292.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 591.0, + 1405.0, + 591.0, + 1405.0, + 624.0, + 294.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 654.0, + 295.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 653.0, + 1402.0, + 653.0, + 1402.0, + 683.0, + 297.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 718.0, + 294.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 710.0, + 1407.0, + 710.0, + 1407.0, + 749.0, + 292.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 740.0, + 1405.0, + 740.0, + 1405.0, + 781.0, + 292.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 820.0, + 772.0, + 820.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 922.0, + 1405.0, + 922.0, + 1405.0, + 956.0, + 294.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 988.0, + 295.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 355.0, + 982.0, + 355.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 982.0, + 1406.0, + 982.0, + 1406.0, + 1019.0, + 379.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1013.0, + 1407.0, + 1013.0, + 1407.0, + 1049.0, + 295.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1045.0, + 1406.0, + 1045.0, + 1406.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1110.0, + 294.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1136.0, + 1403.0, + 1136.0, + 1403.0, + 1172.0, + 295.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1165.0, + 635.0, + 1165.0, + 635.0, + 1201.0, + 295.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1778.0, + 291.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1768.0, + 1405.0, + 1768.0, + 1405.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1407.0, + 1803.0, + 1407.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1831.0, + 1406.0, + 1831.0, + 1406.0, + 1867.0, + 292.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1861.0, + 1408.0, + 1861.0, + 1408.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1889.0, + 1408.0, + 1889.0, + 1408.0, + 1930.0, + 291.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 1406.0, + 1922.0, + 1406.0, + 1957.0, + 295.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1404.0, + 1568.0, + 1404.0, + 1609.0, + 294.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1598.0, + 1408.0, + 1598.0, + 1408.0, + 1638.0, + 294.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1630.0, + 915.0, + 1630.0, + 915.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1630.0, + 1406.0, + 1630.0, + 1406.0, + 1669.0, + 1083.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1662.0, + 1406.0, + 1662.0, + 1406.0, + 1699.0, + 295.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1695.0, + 612.0, + 1695.0, + 612.0, + 1729.0, + 295.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1425.0, + 384.0, + 1425.0, + 384.0, + 1472.0, + 290.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1425.0, + 851.0, + 1425.0, + 851.0, + 1472.0, + 416.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1425.0, + 1408.0, + 1425.0, + 1408.0, + 1472.0, + 928.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1459.0, + 296.0, + 1459.0, + 296.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1459.0, + 1139.0, + 1459.0, + 1139.0, + 1501.0, + 529.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1459.0, + 1408.0, + 1459.0, + 1408.0, + 1501.0, + 1155.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1024.0, + 1492.0, + 1024.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1492.0, + 1404.0, + 1492.0, + 1404.0, + 1531.0, + 1054.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1521.0, + 1079.0, + 1521.0, + 1079.0, + 1563.0, + 292.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1521.0, + 1112.0, + 1521.0, + 1112.0, + 1563.0, + 1102.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1203.0, + 722.0, + 1203.0, + 722.0, + 1253.0, + 290.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1203.0, + 1379.0, + 1203.0, + 1379.0, + 1253.0, + 837.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1203.0, + 1407.0, + 1203.0, + 1407.0, + 1253.0, + 1402.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1278.0, + 295.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1274.0, + 826.0, + 1274.0, + 826.0, + 1308.0, + 320.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 482.0, + 1405.0, + 482.0, + 1405.0, + 517.0, + 296.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 512.0, + 700.0, + 512.0, + 700.0, + 546.0, + 296.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 837.0, + 1404.0, + 837.0, + 1404.0, + 872.0, + 297.0, + 872.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1021, + 1404, + 1021, + 1404, + 1204, + 298, + 1204 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 729, + 1404, + 729, + 1404, + 1005, + 298, + 1005 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1403, + 1405, + 1403, + 1405, + 1588, + 298, + 1588 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 298, + 352, + 1402, + 352, + 1402, + 502, + 298, + 502 + ], + "score": 0.972, + "html": "
test-time inference algorithmval. accuracy (%)test accuracy (%)speed (examples/sec)
Viterbialgorithm89.189.2500
Inference network + cross entropy89.789.51250
Inference network+ entropy89.6
Inference network + squared L2 distance88.9
" + }, + { + "category_id": 1, + "poly": [ + 297, + 574, + 1402, + 574, + 1402, + 635, + 297, + 635 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1220, + 1400, + 1220, + 1400, + 1281, + 298, + 1281 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1682, + 1400, + 1682, + 1400, + 1745, + 297, + 1745 + ], + "score": 0.944 + }, + { + "category_id": 6, + "poly": [ + 296, + 249, + 1404, + 249, + 1404, + 342, + 296, + 342 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1401, + 1971, + 1401, + 2033, + 298, + 2033 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1332, + 859, + 1332, + 859, + 1367, + 299, + 1367 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 299, + 1849, + 1401, + 1849, + 1401, + 1882, + 299, + 1882 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1363, + 1910, + 1363, + 1944, + 299, + 1944 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 1796, + 489, + 1796, + 489, + 1830, + 300, + 1830 + ], + "score": 0.842 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.828 + }, + { + "category_id": 0, + "poly": [ + 301, + 1629, + 557, + 1629, + 557, + 1657, + 301, + 1657 + ], + "score": 0.814 + }, + { + "category_id": 0, + "poly": [ + 303, + 674, + 1262, + 674, + 1262, + 706, + 303, + 706 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 303, + 674, + 1262, + 674, + 1262, + 706, + 303, + 706 + ], + "score": 0.124 + }, + { + "category_id": 13, + "poly": [ + 677, + 1053, + 712, + 1053, + 712, + 1082, + 677, + 1082 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 465, + 1144, + 540, + 1144, + 540, + 1173, + 465, + 1173 + ], + "score": 0.85, + "latex": "1 3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1330, + 1082, + 1404, + 1082, + 1404, + 1112, + 1330, + 1112 + ], + "score": 0.84, + "latex": "8 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 501, + 444, + 522, + 444, + 522, + 465, + 501, + 465 + ], + "score": 0.78, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 502, + 417, + 522, + 417, + 522, + 437, + 502, + 437 + ], + "score": 0.75, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 501, + 472, + 522, + 472, + 522, + 493, + 501, + 493 + ], + "score": 0.73, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 247.0, + 1405.0, + 247.0, + 1405.0, + 285.0, + 293.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 280.0, + 1405.0, + 280.0, + 1405.0, + 314.0, + 295.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 311.0, + 1206.0, + 311.0, + 1206.0, + 345.0, + 295.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1328.0, + 863.0, + 1328.0, + 863.0, + 1374.0, + 292.0, + 1374.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, + 1793.0, + 492.0, + 1793.0, + 492.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1631.0, + 558.0, + 1631.0, + 558.0, + 1660.0, + 299.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 1268.0, + 674.0, + 1268.0, + 709.0, + 296.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1019.0, + 1406.0, + 1019.0, + 1406.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 676.0, + 1051.0, + 676.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1051.0, + 1406.0, + 1051.0, + 1406.0, + 1086.0, + 713.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1083.0, + 1329.0, + 1083.0, + 1329.0, + 1115.0, + 296.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 1405.0, + 1109.0, + 1405.0, + 1150.0, + 292.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 464.0, + 1142.0, + 464.0, + 1178.0, + 295.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1142.0, + 1404.0, + 1142.0, + 1404.0, + 1178.0, + 541.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1173.0, + 771.0, + 1173.0, + 771.0, + 1207.0, + 293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 731.0, + 1405.0, + 731.0, + 1405.0, + 764.0, + 297.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1406.0, + 760.0, + 1406.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1406.0, + 821.0, + 1406.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 854.0, + 1405.0, + 854.0, + 1405.0, + 887.0, + 294.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 911.0, + 1405.0, + 911.0, + 1405.0, + 948.0, + 295.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 1406.0, + 941.0, + 1406.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 977.0, + 644.0, + 977.0, + 644.0, + 1005.0, + 297.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 1407.0, + 1403.0, + 1407.0, + 1441.0, + 295.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1470.0, + 295.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1406.0, + 1464.0, + 1406.0, + 1501.0, + 293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1531.0, + 295.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1557.0, + 1315.0, + 1557.0, + 1315.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 572.0, + 1404.0, + 572.0, + 1404.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 605.0, + 932.0, + 605.0, + 932.0, + 638.0, + 293.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1406.0, + 1218.0, + 1406.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1252.0, + 751.0, + 1252.0, + 751.0, + 1283.0, + 297.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1717.0, + 296.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 996.0, + 1712.0, + 996.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1998.0, + 398.0, + 1998.0, + 398.0, + 2037.0, + 319.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1846.0, + 1402.0, + 1846.0, + 1402.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1909.0, + 1363.0, + 1909.0, + 1363.0, + 1948.0, + 296.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 1268.0, + 674.0, + 1268.0, + 709.0, + 296.0, + 709.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.889 + }, + { + "category_id": 1, + "poly": [ + 291, + 996, + 1405, + 996, + 1405, + 1062, + 291, + 1062 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 298, + 884, + 1404, + 884, + 1404, + 981, + 298, + 981 + ], + "score": 0.677 + }, + { + "category_id": 1, + "poly": [ + 294, + 1622, + 1404, + 1622, + 1404, + 1657, + 294, + 1657 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 292, + 1078, + 1403, + 1078, + 1403, + 1144, + 292, + 1144 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 296, + 1673, + 1405, + 1673, + 1405, + 1709, + 296, + 1709 + ], + "score": 0.658 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.656 + }, + { + "category_id": 1, + "poly": [ + 297, + 1375, + 1401, + 1375, + 1401, + 1441, + 297, + 1441 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 295, + 1160, + 1402, + 1160, + 1402, + 1226, + 295, + 1226 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 298, + 1540, + 1406, + 1540, + 1406, + 1603, + 298, + 1603 + ], + "score": 0.614 + }, + { + "category_id": 1, + "poly": [ + 299, + 1457, + 1405, + 1457, + 1405, + 1522, + 299, + 1522 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 289, + 802, + 1407, + 802, + 1407, + 868, + 289, + 868 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 300, + 1971, + 1400, + 1971, + 1400, + 2035, + 300, + 2035 + ], + "score": 0.606 + }, + { + "category_id": 1, + "poly": [ + 294, + 1242, + 1400, + 1242, + 1400, + 1308, + 294, + 1308 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 298, + 1724, + 1404, + 1724, + 1404, + 1791, + 298, + 1791 + ], + "score": 0.601 + }, + { + "category_id": 1, + "poly": [ + 298, + 1324, + 1379, + 1324, + 1379, + 1360, + 298, + 1360 + ], + "score": 0.599 + }, + { + "category_id": 1, + "poly": [ + 298, + 689, + 1403, + 689, + 1403, + 785, + 298, + 785 + ], + "score": 0.556 + }, + { + "category_id": 1, + "poly": [ + 297, + 1806, + 1402, + 1806, + 1402, + 1873, + 297, + 1873 + ], + "score": 0.552 + }, + { + "category_id": 1, + "poly": [ + 295, + 556, + 1350, + 556, + 1350, + 592, + 295, + 592 + ], + "score": 0.55 + }, + { + "category_id": 1, + "poly": [ + 292, + 474, + 1402, + 474, + 1402, + 540, + 292, + 540 + ], + "score": 0.55 + }, + { + "category_id": 1, + "poly": [ + 292, + 608, + 1407, + 608, + 1407, + 673, + 292, + 673 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 294, + 392, + 1402, + 392, + 1402, + 457, + 294, + 457 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 300, + 1889, + 1398, + 1889, + 1398, + 1954, + 300, + 1954 + ], + "score": 0.54 + }, + { + "category_id": 1, + "poly": [ + 294, + 310, + 1401, + 310, + 1401, + 375, + 294, + 375 + ], + "score": 0.528 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1403, + 228, + 1403, + 294, + 293, + 294 + ], + "score": 0.509 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2114, + 835, + 2114 + ], + "score": 0.41 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 997.0, + 1408.0, + 997.0, + 1408.0, + 1034.0, + 294.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1029.0, + 1379.0, + 1029.0, + 1379.0, + 1061.0, + 324.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 882.0, + 1408.0, + 882.0, + 1408.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 909.0, + 1406.0, + 909.0, + 1406.0, + 957.0, + 320.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 945.0, + 1149.0, + 945.0, + 1149.0, + 982.0, + 322.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1620.0, + 1409.0, + 1620.0, + 1409.0, + 1659.0, + 296.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1081.0, + 1405.0, + 1081.0, + 1405.0, + 1114.0, + 298.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1110.0, + 1307.0, + 1110.0, + 1307.0, + 1146.0, + 323.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1673.0, + 1407.0, + 1673.0, + 1407.0, + 1712.0, + 295.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1376.0, + 1403.0, + 1376.0, + 1403.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1408.0, + 800.0, + 1408.0, + 800.0, + 1443.0, + 323.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1159.0, + 1405.0, + 1159.0, + 1405.0, + 1199.0, + 295.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1192.0, + 757.0, + 1192.0, + 757.0, + 1228.0, + 323.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1540.0, + 1408.0, + 1540.0, + 1408.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1570.0, + 396.0, + 1570.0, + 396.0, + 1606.0, + 321.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1455.0, + 1409.0, + 1455.0, + 1409.0, + 1495.0, + 296.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1483.0, + 398.0, + 1483.0, + 398.0, + 1526.0, + 319.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 799.0, + 1406.0, + 799.0, + 1406.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 832.0, + 736.0, + 832.0, + 736.0, + 867.0, + 321.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1967.0, + 1405.0, + 1967.0, + 1405.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1130.0, + 2003.0, + 1130.0, + 2035.0, + 324.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1274.0, + 1111.0, + 1274.0, + 1111.0, + 1309.0, + 322.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1725.0, + 1404.0, + 1725.0, + 1404.0, + 1761.0, + 294.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1756.0, + 823.0, + 1756.0, + 823.0, + 1791.0, + 323.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1322.0, + 1381.0, + 1322.0, + 1381.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 721.0, + 1408.0, + 721.0, + 1408.0, + 757.0, + 321.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 752.0, + 788.0, + 752.0, + 788.0, + 786.0, + 322.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1407.0, + 1804.0, + 1407.0, + 1847.0, + 294.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1840.0, + 1347.0, + 1840.0, + 1347.0, + 1876.0, + 324.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 555.0, + 1348.0, + 555.0, + 1348.0, + 593.0, + 293.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 471.0, + 1407.0, + 471.0, + 1407.0, + 515.0, + 292.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 507.0, + 1115.0, + 507.0, + 1115.0, + 539.0, + 323.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 606.0, + 1408.0, + 606.0, + 1408.0, + 644.0, + 293.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 639.0, + 583.0, + 639.0, + 583.0, + 670.0, + 323.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 390.0, + 1404.0, + 390.0, + 1404.0, + 432.0, + 293.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 423.0, + 939.0, + 423.0, + 939.0, + 458.0, + 323.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1889.0, + 1402.0, + 1889.0, + 1402.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1920.0, + 1321.0, + 1920.0, + 1321.0, + 1956.0, + 322.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 309.0, + 1406.0, + 309.0, + 1406.0, + 348.0, + 293.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 340.0, + 714.0, + 340.0, + 714.0, + 376.0, + 323.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 800.0, + 261.0, + 800.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 106, + 299, + 106 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 297, + 872, + 1400, + 872, + 1400, + 939, + 297, + 939 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 293, + 1223, + 1404, + 1223, + 1404, + 1288, + 293, + 1288 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 296, + 1310, + 1401, + 1310, + 1401, + 1376, + 296, + 1376 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 296, + 960, + 1401, + 960, + 1401, + 1026, + 296, + 1026 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 295, + 1047, + 1403, + 1047, + 1403, + 1113, + 295, + 1113 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 292, + 1135, + 1402, + 1135, + 1402, + 1202, + 292, + 1202 + ], + "score": 0.64 + }, + { + "category_id": 1, + "poly": [ + 294, + 784, + 1401, + 784, + 1401, + 851, + 294, + 851 + ], + "score": 0.617 + }, + { + "category_id": 1, + "poly": [ + 297, + 1398, + 1400, + 1398, + 1400, + 1464, + 297, + 1464 + ], + "score": 0.614 + }, + { + "category_id": 1, + "poly": [ + 291, + 1573, + 1404, + 1573, + 1404, + 1639, + 291, + 1639 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 299, + 665, + 1403, + 665, + 1403, + 762, + 299, + 762 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 294, + 1486, + 1402, + 1486, + 1402, + 1552, + 294, + 1552 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 296, + 579, + 1404, + 579, + 1404, + 645, + 296, + 645 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 297, + 491, + 1401, + 491, + 1401, + 557, + 297, + 557 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 294, + 1867, + 1403, + 1867, + 1403, + 1933, + 294, + 1933 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 294, + 1955, + 1404, + 1955, + 1404, + 2020, + 294, + 2020 + ], + "score": 0.564 + }, + { + "category_id": 1, + "poly": [ + 299, + 1661, + 1404, + 1661, + 1404, + 1758, + 299, + 1758 + ], + "score": 0.558 + }, + { + "category_id": 1, + "poly": [ + 296, + 1779, + 1401, + 1779, + 1401, + 1846, + 296, + 1846 + ], + "score": 0.554 + }, + { + "category_id": 1, + "poly": [ + 294, + 315, + 1403, + 315, + 1403, + 382, + 294, + 382 + ], + "score": 0.553 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1403, + 228, + 1403, + 295, + 294, + 295 + ], + "score": 0.549 + }, + { + "category_id": 1, + "poly": [ + 296, + 403, + 1400, + 403, + 1400, + 469, + 296, + 469 + ], + "score": 0.536 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 1405.0, + 873.0, + 1405.0, + 909.0, + 295.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 906.0, + 796.0, + 906.0, + 796.0, + 939.0, + 322.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1219.0, + 1409.0, + 1219.0, + 1409.0, + 1262.0, + 296.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1254.0, + 624.0, + 1254.0, + 624.0, + 1290.0, + 321.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1342.0, + 467.0, + 1342.0, + 467.0, + 1375.0, + 320.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 1406.0, + 958.0, + 1406.0, + 1001.0, + 294.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 993.0, + 1158.0, + 993.0, + 1158.0, + 1025.0, + 321.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1044.0, + 1404.0, + 1044.0, + 1404.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1079.0, + 585.0, + 1079.0, + 585.0, + 1115.0, + 322.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1136.0, + 1404.0, + 1136.0, + 1404.0, + 1172.0, + 296.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1166.0, + 1205.0, + 1166.0, + 1205.0, + 1201.0, + 321.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 785.0, + 1406.0, + 785.0, + 1406.0, + 821.0, + 296.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 815.0, + 599.0, + 815.0, + 599.0, + 851.0, + 321.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1399.0, + 1406.0, + 1399.0, + 1406.0, + 1435.0, + 295.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1430.0, + 1173.0, + 1430.0, + 1173.0, + 1465.0, + 323.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1407.0, + 1574.0, + 1407.0, + 1610.0, + 294.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1603.0, + 657.0, + 1603.0, + 657.0, + 1640.0, + 322.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 668.0, + 1408.0, + 668.0, + 1408.0, + 702.0, + 297.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 696.0, + 1409.0, + 696.0, + 1409.0, + 736.0, + 321.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 730.0, + 523.0, + 730.0, + 523.0, + 763.0, + 322.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1485.0, + 1404.0, + 1485.0, + 1404.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1519.0, + 1142.0, + 1519.0, + 1142.0, + 1551.0, + 323.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 578.0, + 1407.0, + 578.0, + 1407.0, + 616.0, + 295.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 612.0, + 834.0, + 612.0, + 834.0, + 644.0, + 323.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 1405.0, + 490.0, + 1405.0, + 529.0, + 295.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 524.0, + 1184.0, + 524.0, + 1184.0, + 556.0, + 325.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1866.0, + 1406.0, + 1866.0, + 1406.0, + 1905.0, + 294.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1899.0, + 622.0, + 1899.0, + 622.0, + 1931.0, + 322.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1953.0, + 1407.0, + 1953.0, + 1407.0, + 1993.0, + 293.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1986.0, + 473.0, + 1986.0, + 473.0, + 2020.0, + 323.0, + 2020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1660.0, + 1406.0, + 1660.0, + 1406.0, + 1700.0, + 293.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1693.0, + 1405.0, + 1693.0, + 1405.0, + 1728.0, + 322.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1724.0, + 1092.0, + 1724.0, + 1092.0, + 1758.0, + 322.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 1407.0, + 1777.0, + 1407.0, + 1818.0, + 295.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1810.0, + 464.0, + 1810.0, + 464.0, + 1844.0, + 319.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 318.0, + 1406.0, + 318.0, + 1406.0, + 351.0, + 297.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 347.0, + 583.0, + 347.0, + 583.0, + 384.0, + 322.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 910.0, + 262.0, + 910.0, + 293.0, + 322.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 402.0, + 1406.0, + 402.0, + 1406.0, + 442.0, + 295.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 437.0, + 720.0, + 437.0, + 720.0, + 470.0, + 322.0, + 470.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1741, + 1406, + 1741, + 1406, + 1928, + 297, + 1928 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 948, + 1405, + 948, + 1405, + 1166, + 297, + 1166 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1486, + 1405, + 1486, + 1405, + 1579, + 298, + 1579 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1404, + 1316, + 1404, + 1472, + 298, + 1472 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 510, + 286, + 1190, + 286, + 1190, + 407, + 510, + 407 + ], + "score": 0.973, + "html": "
#labels# features#train#dev#test
Bibtex15918364836-2515
Bookmarks2082151480001200027856
Delicious98250112896-3185
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1179, + 1404, + 1179, + 1404, + 1302, + 298, + 1302 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2035, + 300, + 2035 + ], + "score": 0.97 + }, + { + "category_id": 5, + "poly": [ + 577, + 546, + 1122, + 546, + 1122, + 694, + 577, + 694 + ], + "score": 0.97, + "html": "
hinge loss-retuning+retuning
margin rescaling38.5138.68
slack rescaling38.5738.62
perceptron (MR,△= 0)38.5538.70
contrastive (△= 1)38.8038.88
" + }, + { + "category_id": 6, + "poly": [ + 519, + 249, + 1177, + 249, + 1177, + 281, + 519, + 281 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 297, + 766, + 501, + 766, + 501, + 801, + 297, + 801 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 298, + 901, + 1103, + 901, + 1103, + 933, + 298, + 933 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 301, + 1685, + 722, + 1685, + 722, + 1717, + 301, + 1717 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 300, + 840, + 743, + 840, + 743, + 873, + 300, + 873 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 1623, + 658, + 1623, + 658, + 1656, + 299, + 1656 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.898 + }, + { + "category_id": 6, + "poly": [ + 299, + 478, + 1401, + 478, + 1401, + 540, + 299, + 540 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 602, + 1132, + 782, + 1132, + 782, + 1166, + 602, + 1166 + ], + "score": 0.91, + "latex": "( \\dot { \\lambda } _ { 4 } \\in \\{ 0 , 1 , 1 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 435, + 1487, + 514, + 1487, + 514, + 1515, + 435, + 1515 + ], + "score": 0.9, + "latex": "\\triangle = 0" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1834, + 1343, + 1834, + 1343, + 1868, + 1040, + 1868 + ], + "score": 0.89, + "latex": "( \\lambda _ { 3 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 301, + 1834, + 607, + 1834, + 607, + 1868, + 301, + 1868 + ], + "score": 0.89, + "latex": "( \\lambda _ { 2 } \\in \\{ 0 . 1 , 0 . 5 , 1 , 2 , 5 , 1 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 573, + 1864, + 921, + 1864, + 921, + 1897, + 573, + 1897 + ], + "score": 0.88, + "latex": "( \\bar { \\lambda } _ { 4 } \\in \\{ 0 , 0 . 1 , 0 . 2 , \\bar { 0 . 5 } , 1 , 2 , 1 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1101, + 634, + 1101, + 634, + 1135, + 297, + 1135 + ], + "score": 0.88, + "latex": "( \\lambda _ { 1 } ~ \\in ~ \\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\} )" + }, + { + "category_id": 13, + "poly": [ + 664, + 1897, + 698, + 1897, + 698, + 1926, + 664, + 1926 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1072, + 1239, + 1072, + 1239, + 1102, + 1204, + 1102 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1895, + 1370, + 1895, + 1370, + 1928, + 866, + 1928 + ], + "score": 0.88, + "latex": "( \\lambda _ { 1 } \\in \\{ 0 , 1 \\mathrm { { e } - 3 , 1 \\mathrm { { e } - 4 , 1 \\mathrm { { e } - 5 } , 1 \\mathrm { { e } - 6 } , 1 \\mathrm { { e } - 7 } \\} ) } }" + }, + { + "category_id": 13, + "poly": [ + 928, + 1102, + 1034, + 1102, + 1034, + 1133, + 928, + 1133 + ], + "score": 0.87, + "latex": "\\mathbf { \\lambda } ) _ { 2 } ~ = ~ 1 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1805, + 331, + 1805, + 331, + 1834, + 298, + 1834 + ], + "score": 0.86, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 944, + 950, + 979, + 950, + 979, + 980, + 944, + 980 + ], + "score": 0.86, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 505, + 1803, + 1026, + 1803, + 1026, + 1836, + 505, + 1836 + ], + "score": 0.79, + "latex": "( \\lambda _ { 1 } \\in \\{ 0 , 1 { \\mathrm { e } } - 3 , 1 { \\mathrm { e } } - 4 , 1 { \\mathrm { e } } - 5 , 1 { \\mathrm { e } } - { \\bar { 6 } } , 1 { \\mathrm { e } } - { \\bar { 7 } } \\} )" + }, + { + "category_id": 13, + "poly": [ + 718, + 661, + 792, + 661, + 792, + 687, + 718, + 687 + ], + "score": 0.79, + "latex": "\\triangle = 1" + }, + { + "category_id": 13, + "poly": [ + 485, + 980, + 727, + 980, + 727, + 1011, + 485, + 1011 + ], + "score": 0.77, + "latex": "\\{ 0 . 0 1 , 0 . 0 0 1 , 0 . 0 0 0 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 984, + 1774, + 1393, + 1774, + 1393, + 1806, + 984, + 1806 + ], + "score": 0.76, + "latex": "( \\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\} )" + }, + { + "category_id": 13, + "poly": [ + 767, + 633, + 841, + 633, + 841, + 659, + 767, + 659 + ], + "score": 0.74, + "latex": "\\triangle = 0" + }, + { + "category_id": 13, + "poly": [ + 1157, + 985, + 1179, + 985, + 1179, + 1008, + 1157, + 1008 + ], + "score": 0.66, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 828, + 950, + 849, + 950, + 849, + 978, + 828, + 978 + ], + "score": 0.65, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1367, + 950, + 1394, + 950, + 1394, + 978, + 1367, + 978 + ], + "score": 0.61, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 300, + 1012, + 858, + 1012, + 858, + 1042, + 300, + 1042 + ], + "score": 0.27, + "latex": "[ 0 , 0 . 0 1 , 0 . 0 2 , 0 . 0 3 , 0 . 0 4 , 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 ," + }, + { + "category_id": 15, + "poly": [ + 520.0, + 245.0, + 1178.0, + 245.0, + 1178.0, + 284.0, + 520.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 759.0, + 507.0, + 759.0, + 507.0, + 811.0, + 291.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1681.0, + 725.0, + 1681.0, + 725.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 747.0, + 840.0, + 747.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1623.0, + 659.0, + 1623.0, + 659.0, + 1659.0, + 294.0, + 1659.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, + 479.0, + 1405.0, + 479.0, + 1405.0, + 514.0, + 295.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 510.0, + 750.0, + 510.0, + 750.0, + 542.0, + 297.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 1409.0, + 1740.0, + 1409.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1772.0, + 983.0, + 1772.0, + 983.0, + 1809.0, + 291.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1772.0, + 1409.0, + 1772.0, + 1409.0, + 1809.0, + 1394.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1801.0, + 504.0, + 1801.0, + 504.0, + 1837.0, + 332.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1801.0, + 1406.0, + 1801.0, + 1406.0, + 1837.0, + 1027.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 300.0, + 1835.0, + 300.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1835.0, + 1039.0, + 1835.0, + 1039.0, + 1870.0, + 608.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1835.0, + 1406.0, + 1835.0, + 1406.0, + 1870.0, + 1344.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 572.0, + 1864.0, + 572.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1864.0, + 1406.0, + 1864.0, + 1406.0, + 1900.0, + 922.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1893.0, + 663.0, + 1893.0, + 663.0, + 1929.0, + 294.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1893.0, + 865.0, + 1893.0, + 865.0, + 1929.0, + 699.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1893.0, + 1383.0, + 1893.0, + 1383.0, + 1929.0, + 1371.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 944.0, + 623.0, + 944.0, + 623.0, + 988.0, + 293.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 946.0, + 827.0, + 946.0, + 827.0, + 984.0, + 682.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 946.0, + 943.0, + 946.0, + 943.0, + 984.0, + 850.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 946.0, + 1366.0, + 946.0, + 1366.0, + 984.0, + 980.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 946.0, + 1407.0, + 946.0, + 1407.0, + 984.0, + 1395.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 979.0, + 484.0, + 979.0, + 484.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 979.0, + 740.0, + 979.0, + 740.0, + 1014.0, + 728.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 977.0, + 1156.0, + 977.0, + 1156.0, + 1014.0, + 787.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1014.0, + 1180.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1009.0, + 299.0, + 1009.0, + 299.0, + 1047.0, + 295.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1009.0, + 1405.0, + 1009.0, + 1405.0, + 1047.0, + 859.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1040.0, + 1405.0, + 1040.0, + 1405.0, + 1074.0, + 294.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1069.0, + 1203.0, + 1069.0, + 1203.0, + 1107.0, + 294.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1069.0, + 1403.0, + 1069.0, + 1403.0, + 1107.0, + 1240.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1100.0, + 296.0, + 1100.0, + 296.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1100.0, + 927.0, + 1100.0, + 927.0, + 1139.0, + 635.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1100.0, + 1406.0, + 1100.0, + 1406.0, + 1139.0, + 1035.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1133.0, + 601.0, + 1133.0, + 601.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1133.0, + 798.0, + 1133.0, + 798.0, + 1168.0, + 783.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1484.0, + 434.0, + 1484.0, + 434.0, + 1522.0, + 295.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1484.0, + 1407.0, + 1484.0, + 1407.0, + 1522.0, + 515.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1513.0, + 1407.0, + 1513.0, + 1407.0, + 1552.0, + 292.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1546.0, + 1333.0, + 1546.0, + 1333.0, + 1583.0, + 293.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1379.0, + 1402.0, + 1379.0, + 1402.0, + 1413.0, + 296.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1438.0, + 1317.0, + 1438.0, + 1317.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1177.0, + 1405.0, + 1177.0, + 1405.0, + 1215.0, + 295.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1209.0, + 1409.0, + 1209.0, + 1409.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 928.0, + 1272.0, + 928.0, + 1304.0, + 293.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1177.0, + 2003.0, + 1177.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 899.0, + 1108.0, + 899.0, + 1108.0, + 937.0, + 293.0, + 937.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 298, + 584, + 1405, + 584, + 1405, + 990, + 298, + 990 + ], + "score": 0.983, + "html": "
predicted tags
#tweet (target word in bold)-TLM+TLM
1... that's a t-17, technically . does that count as top-25 ?determinerpronoun
2... lol you know im down like 4 flats on a cadillac ... lol...adjectivepreposition
3... them who he is : he wants her to like him for his pers..prepositionverb
4I wonder when Nic Cage is going to film " Another Somethingnounverb
5Something Las Vegas " . Cut my hair, gag and bore menounverb
6 7... they had their fun,we hd ours !;) lmaooo " Logic will get you from A to B . Imagination will take youproper noun verbverb
everywhere ." - Albert Einstein .noun
8lmao I'm not a sheep who listens to it cos everyone else does ..verbpreposition
9Noo its not cuss you have swag andd you wont look dumb !..nouncoord. conj.
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1467, + 1404, + 1467, + 1404, + 1743, + 297, + 1743 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1239, + 1404, + 1239, + 1404, + 1454, + 298, + 1454 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1058, + 1404, + 1058, + 1404, + 1152, + 298, + 1152 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 509, + 323, + 1188, + 323, + 1188, + 441, + 509, + 441 + ], + "score": 0.966, + "html": "
validation accuracy (%)
inference network stabilization terms-retuning+retuning
cross entropy89.189.3
entropy84.286.8
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 297, + 1184, + 979, + 1184, + 979, + 1216, + 297, + 1216 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.856 + }, + { + "category_id": 6, + "poly": [ + 298, + 248, + 1396, + 248, + 1396, + 312, + 298, + 312 + ], + "score": 0.844 + }, + { + "category_id": 6, + "poly": [ + 288, + 507, + 1406, + 507, + 1406, + 572, + 288, + 572 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 288, + 507, + 1406, + 507, + 1406, + 572, + 288, + 572 + ], + "score": 0.132 + }, + { + "category_id": 13, + "poly": [ + 1308, + 1391, + 1396, + 1391, + 1396, + 1425, + 1308, + 1425 + ], + "score": 0.91, + "latex": "( \\{ 1 , 2 \\} )" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1089, + 1403, + 1089, + 1403, + 1121, + 1155, + 1121 + ], + "score": 0.9, + "latex": "\\{ 0 , 1 \\mathrm { e } - 3 , 1 \\mathrm { e } - 4 , 1 \\mathrm { e } -" + }, + { + "category_id": 13, + "poly": [ + 806, + 1530, + 883, + 1530, + 883, + 1559, + 806, + 1559 + ], + "score": 0.89, + "latex": "8 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 760, + 1090, + 794, + 1090, + 794, + 1120, + 760, + 1120 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1561, + 719, + 1561, + 719, + 1590, + 642, + 1590 + ], + "score": 0.86, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 1089, + 703, + 1089, + 703, + 1121, + 298, + 1121 + ], + "score": 0.81, + "latex": "\\{ 0 . 1 , 0 . 0 5 , 0 . 0 2 , 0 . 0 1 , 0 . 0 0 5 , 0 . 0 0 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 748, + 1391, + 969, + 1391, + 969, + 1424, + 748, + 1424 + ], + "score": 0.8, + "latex": "( \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 . 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1121, + 482, + 1121, + 482, + 1153, + 298, + 1153 + ], + "score": 0.78, + "latex": "5 , 1 \\mathrm { e } - 6 , 1 \\mathrm { e } - 7 \\}" + }, + { + "category_id": 13, + "poly": [ + 584, + 1422, + 757, + 1422, + 757, + 1455, + 584, + 1455 + ], + "score": 0.66, + "latex": "( \\{ 5 0 , 1 0 0 , 2 0 0 \\} )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1180.0, + 982.0, + 1180.0, + 982.0, + 1221.0, + 293.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 248.0, + 1401.0, + 248.0, + 1401.0, + 284.0, + 295.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 279.0, + 1193.0, + 279.0, + 1193.0, + 315.0, + 295.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1408.0, + 507.0, + 1408.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 537.0, + 1308.0, + 537.0, + 1308.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 1406.0, + 1756.0, + 1406.0, + 1796.0, + 294.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1944.0, + 293.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1966.0, + 1406.0, + 1966.0, + 1406.0, + 2012.0, + 292.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1160.0, + 2002.0, + 1160.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1407.0, + 1501.0, + 1407.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1528.0, + 805.0, + 1528.0, + 805.0, + 1565.0, + 295.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1565.0, + 884.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 641.0, + 1561.0, + 641.0, + 1593.0, + 295.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1561.0, + 1404.0, + 1561.0, + 1404.0, + 1593.0, + 720.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1589.0, + 1406.0, + 1589.0, + 1406.0, + 1626.0, + 292.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1656.0, + 295.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1711.0, + 407.0, + 1711.0, + 407.0, + 1745.0, + 295.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 1405.0, + 1236.0, + 1405.0, + 1275.0, + 292.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 1406.0, + 1332.0, + 1406.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1394.0, + 293.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1391.0, + 747.0, + 1391.0, + 747.0, + 1429.0, + 293.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1391.0, + 1307.0, + 1391.0, + 1307.0, + 1429.0, + 970.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1391.0, + 1408.0, + 1391.0, + 1408.0, + 1429.0, + 1397.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 583.0, + 1420.0, + 583.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1420.0, + 774.0, + 1420.0, + 774.0, + 1457.0, + 758.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1093.0, + 293.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1087.0, + 759.0, + 1087.0, + 759.0, + 1124.0, + 704.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1087.0, + 1154.0, + 1087.0, + 1154.0, + 1124.0, + 795.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1117.0, + 297.0, + 1117.0, + 297.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1117.0, + 1271.0, + 1117.0, + 1271.0, + 1157.0, + 483.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1408.0, + 507.0, + 1408.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 537.0, + 1308.0, + 537.0, + 1308.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1608, + 1405, + 1608, + 1405, + 1854, + 297, + 1854 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 462, + 377, + 1236, + 377, + 1236, + 525, + 462, + 525 + ], + "score": 0.972, + "html": "
validation F1test F1training speed (examples/sec)testing speed (examples/sec)
BLSTM88.3083.023851042
CRF91.3187.15222454
SPEN (InfNet)89.9885.061181025
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1869, + 1404, + 1869, + 1404, + 1963, + 299, + 1963 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 359, + 729, + 1384, + 729, + 1384, + 1337, + 359, + 1337 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1421, + 1406, + 1421, + 1406, + 1515, + 297, + 1515 + ], + "score": 0.964 + }, + { + "category_id": 6, + "poly": [ + 301, + 247, + 1402, + 247, + 1402, + 371, + 301, + 371 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 458, + 1353, + 1228, + 1353, + 1228, + 1387, + 458, + 1387 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 1551, + 733, + 1551, + 733, + 1583, + 300, + 1583 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 296, + 593, + 878, + 593, + 878, + 625, + 296, + 625 + ], + "score": 0.735 + }, + { + "category_id": 6, + "poly": [ + 296, + 593, + 878, + 593, + 878, + 625, + 296, + 625 + ], + "score": 0.097 + }, + { + "category_id": 13, + "poly": [ + 950, + 1762, + 1038, + 1762, + 1038, + 1790, + 950, + 1790 + ], + "score": 0.92, + "latex": "L = 1 7" + }, + { + "category_id": 13, + "poly": [ + 887, + 1423, + 921, + 1423, + 921, + 1451, + 887, + 1451 + ], + "score": 0.51, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 743.0, + 391.0, + 743.0, + 391.0, + 759.0, + 361.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 743.0, + 1371.0, + 743.0, + 1371.0, + 761.0, + 1348.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 763.0, + 391.0, + 763.0, + 391.0, + 776.0, + 376.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 784.0, + 393.0, + 784.0, + 393.0, + 804.0, + 373.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 808.0, + 391.0, + 808.0, + 391.0, + 823.0, + 377.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 814.0, + 1373.0, + 814.0, + 1373.0, + 837.0, + 1344.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 828.0, + 393.0, + 828.0, + 393.0, + 847.0, + 373.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 872.0, + 392.0, + 872.0, + 392.0, + 889.0, + 377.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 896.0, + 392.0, + 896.0, + 392.0, + 911.0, + 376.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 891.0, + 1371.0, + 891.0, + 1371.0, + 908.0, + 1345.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 919.0, + 391.0, + 919.0, + 391.0, + 934.0, + 376.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 958.0, + 393.0, + 958.0, + 393.0, + 983.0, + 370.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 968.0, + 1357.0, + 968.0, + 1357.0, + 982.0, + 1347.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1003.0, + 395.0, + 1003.0, + 395.0, + 1024.0, + 375.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1048.0, + 395.0, + 1048.0, + 395.0, + 1067.0, + 375.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1036.0, + 1381.0, + 1036.0, + 1381.0, + 1062.0, + 1346.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1068.0, + 393.0, + 1068.0, + 393.0, + 1088.0, + 375.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1091.0, + 393.0, + 1091.0, + 393.0, + 1111.0, + 375.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1117.0, + 392.0, + 1117.0, + 392.0, + 1127.0, + 382.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1112.0, + 1382.0, + 1112.0, + 1382.0, + 1138.0, + 1346.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1134.0, + 395.0, + 1134.0, + 395.0, + 1154.0, + 373.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1156.0, + 395.0, + 1156.0, + 395.0, + 1177.0, + 375.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1179.0, + 395.0, + 1179.0, + 395.0, + 1200.0, + 375.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1186.0, + 1382.0, + 1186.0, + 1382.0, + 1211.0, + 1346.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1198.0, + 396.0, + 1198.0, + 396.0, + 1224.0, + 373.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1222.0, + 393.0, + 1222.0, + 393.0, + 1244.0, + 375.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1245.0, + 393.0, + 1245.0, + 393.0, + 1260.0, + 377.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1265.0, + 396.0, + 1265.0, + 396.0, + 1289.0, + 372.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1266.0, + 1380.0, + 1266.0, + 1380.0, + 1282.0, + 1351.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1288.0, + 395.0, + 1288.0, + 395.0, + 1307.0, + 373.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1315.0, + 419.0, + 1315.0, + 419.0, + 1330.0, + 404.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1315.0, + 453.0, + 1315.0, + 453.0, + 1330.0, + 438.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1315.0, + 485.0, + 1315.0, + 485.0, + 1325.0, + 474.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1314.0, + 521.0, + 1314.0, + 521.0, + 1331.0, + 507.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1314.0, + 554.0, + 1314.0, + 554.0, + 1331.0, + 541.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1315.0, + 589.0, + 1315.0, + 589.0, + 1329.0, + 575.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1315.0, + 623.0, + 1315.0, + 623.0, + 1330.0, + 609.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1314.0, + 658.0, + 1314.0, + 658.0, + 1330.0, + 643.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1315.0, + 725.0, + 1315.0, + 725.0, + 1331.0, + 711.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1314.0, + 760.0, + 1314.0, + 760.0, + 1330.0, + 745.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1312.0, + 795.0, + 1312.0, + 795.0, + 1332.0, + 778.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1315.0, + 862.0, + 1315.0, + 862.0, + 1331.0, + 847.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1314.0, + 898.0, + 1314.0, + 898.0, + 1332.0, + 880.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1314.0, + 932.0, + 1314.0, + 932.0, + 1335.0, + 914.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1318.0, + 963.0, + 1318.0, + 963.0, + 1328.0, + 951.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1315.0, + 999.0, + 1315.0, + 999.0, + 1331.0, + 984.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1311.0, + 1034.0, + 1311.0, + 1034.0, + 1333.0, + 1017.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1312.0, + 1068.0, + 1312.0, + 1068.0, + 1333.0, + 1051.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1315.0, + 1136.0, + 1315.0, + 1136.0, + 1330.0, + 1120.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1314.0, + 1205.0, + 1314.0, + 1205.0, + 1331.0, + 1186.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1317.0, + 1235.0, + 1317.0, + 1235.0, + 1325.0, + 1225.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1315.0, + 1278.0, + 1315.0, + 1278.0, + 1331.0, + 1249.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1324.0, + 1099.0, + 1324.0, + 1099.0, + 1332.0, + 1089.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.75, + 981.5, + 388.75, + 981.5, + 388.75, + 1000.5, + 377.75, + 1000.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.75, + 1029.0, + 394.75, + 1029.0, + 394.75, + 1037.0, + 375.75, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 248.0, + 1406.0, + 248.0, + 1406.0, + 285.0, + 295.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 279.0, + 1404.0, + 279.0, + 1404.0, + 314.0, + 294.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 348.0, + 292.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 342.0, + 482.0, + 342.0, + 482.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1347.0, + 1233.0, + 1347.0, + 1233.0, + 1395.0, + 456.0, + 1395.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, + 1551.0, + 737.0, + 1551.0, + 737.0, + 1587.0, + 295.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 880.0, + 590.0, + 880.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 880.0, + 590.0, + 880.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1610.0, + 1406.0, + 1610.0, + 1406.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 1406.0, + 1638.0, + 1406.0, + 1675.0, + 294.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 1408.0, + 1671.0, + 1408.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1701.0, + 1407.0, + 1701.0, + 1407.0, + 1735.0, + 295.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1732.0, + 1405.0, + 1732.0, + 1405.0, + 1766.0, + 294.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 949.0, + 1762.0, + 949.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1762.0, + 1405.0, + 1762.0, + 1405.0, + 1796.0, + 1039.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1792.0, + 1406.0, + 1792.0, + 1406.0, + 1827.0, + 292.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1273.0, + 1821.0, + 1273.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1864.0, + 1406.0, + 1864.0, + 1406.0, + 1909.0, + 292.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1900.0, + 1404.0, + 1900.0, + 1404.0, + 1934.0, + 295.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1927.0, + 1297.0, + 1927.0, + 1297.0, + 1967.0, + 293.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1418.0, + 886.0, + 1418.0, + 886.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1460.0, + 922.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 1404.0, + 1452.0, + 1404.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1484.0, + 1127.0, + 1484.0, + 1127.0, + 1518.0, + 296.0, + 1518.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/HkxJpnVtPr/HkxJpnVtPr.md b/parse/train/HkxJpnVtPr/HkxJpnVtPr.md new file mode 100644 index 0000000000000000000000000000000000000000..7432e45290bd821ed9086699fa259aaf539cffa6 --- /dev/null +++ b/parse/train/HkxJpnVtPr/HkxJpnVtPr.md @@ -0,0 +1,853 @@ +# A STOCHASTIC TRUST REGION METHOD FOR NONCONVEX MINIMIZATION + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +We target the problem of finding a local minimum in non-convex finite-sum minimization. Towards this goal, we first prove that the trust region method with inexact gradient and Hessian estimation can achieve a convergence rate of order $\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ as long as those differential estimations are sufficiently accurate. Combining such result with a novel Hessian estimator, we propose a sample-efficient√ stochastic trust region (STR) algorithm which finds an $( \epsilon , \sqrt { \epsilon } )$ -approximate local minimum within $\tilde { \mathcal { O } } ( \sqrt { n } / \epsilon ^ { 1 . 5 } )$ stochastic Hessian oracle queries. This improves the state-of-the-art result by a factor of $\mathcal { O } ( n ^ { 1 / 6 } )$ . Finally, we also develop Hessian-free STR algorithms which achieve the lowest runtime complexity. Experiments verify theoretical conclusions and the efficiency of the proposed algorithms. + +# 1 INTRODUCTION + +We consider the following finite-sum non-convex minimization problem + +$$ +\operatorname* { m i n } _ { \mathbf { x } \in \mathbb { R } ^ { d } } F ( \mathbf { x } ) = { \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } f _ { i } ( \mathbf { x } ) , +$$ + +where each (non-convex) component function $f _ { i } : \mathbb { R } ^ { d } \mathbb { R }$ is assumed to have $L _ { 1 }$ -Lipschitz continuous gradient and $L _ { 2 }$ -Lipschitz continuous Hessian. Since first-order stationary points could be saddle points with inferior generalization performance (Dauphin et al., 2014), in this work we are√ particularly interested in computing $( \epsilon , \sqrt { \epsilon } )$ -approximate second-order stationary points, $\epsilon$ -SOSP: + +$$ +\begin{array} { r } { \| \nabla F ( { \bf x } _ { \epsilon } ) \| \le \epsilon \quad \mathrm { a n d } \quad \nabla ^ { 2 } F ( { \bf x } _ { \epsilon } ) \succcurlyeq - \sqrt { L _ { 2 } \epsilon } { \bf I } . } \end{array} +$$ + +To find a local minimum of problem (1), the cubic regularization approach (Nesterov & Polyak, 2006) and the trust region algorithm (Conn et al., 2000; Curtis et al., 2017) are two classical methods. Specifically, cubic regularization forms a cubic surrogate function for the objective $F ( \mathbf { x } )$ by adding a third-order regularization term to the second-order Taylor expansion, and minimizes it iteratively. Such a method is proved to achieve an $\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ global convergence rate and thus needs $\mathcal { O } ( n / \epsilon ^ { 1 . 5 } )$ stochastic first- and second-order oracle queries, namely the evaluation number of stochastic gradient and Hessian, to achieve a point that satisfies (2). On the other hand, trust region algorithms estimate the objective with its second-order Taylor expansion but minimize it only within a local region. Recently, Curtis et al. (2017) proposes a trust region variant to achieve the same convergence rate as the cubic regularization approach. But both methods require computing full gradients and Hessians of $F ( \mathbf { x } )$ and thus suffer from high computational cost in large-scale problems. + +To avoid costly exact differential evaluations, many works explore the finite-sum structure of problem (1) and develop stochastic cubic regularization approaches. Both Kohler & Lucchi (2017b) and Xu et al. (2017) propose to directly subsample the gradient and Hessian in the cubic surrogate function, and achieve $\tilde { \mathcal { O } } ( 1 / \epsilon ^ { 3 . 5 } )$ and $\tilde { \mathcal { O } } ( 1 / \epsilon ^ { 2 . 5 } )$ stochastic first- and second-order oracle complexities respectively. By plugging a stochastic variance reduced estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018) into the gradient and Hessian estimation, the approach in (Zhou et al., 2018a) improves both the stochastic first- and second-order oracle complexities to $\tilde { \mathcal { O } } ( n ^ { 0 . 8 } / \epsilon ^ { 1 . 5 } )$ . Recently, Zhang et al. (2018) and Zhou et al. (2018b) develop more efficient stochastic cubic regularization variants, which further reduce the stochastic second-order oracle complexity to $\tilde { \mathcal { O } } ( n ^ { 2 / 3 } \bar { / } \epsilon ^ { 1 . 5 } )$ at the cost of increasing the stochastic first-order oracle complexity to ${ \tilde { \mathcal { O } } } ( n ^ { 2 \bar { / } 3 } / \epsilon ^ { 2 . \bar { 5 } } )$ . + +Table 1: Stochastic first- and second-order oracle complexities, SFO and SSO for short respectively, of the proposed STR approaches and other state-of-the-art methods. When SSO is prioritized, our $\mathrm { { S T R } _ { 1 } }$ has strictly better complexity than both SCR and Lite-SVRC. When SFO and SSO are treated equally, $\mathrm { { S T R _ { 2 } } }$ improves the existing result in SVRC. + +
AlgorithmSFOSSO
TR (Conn et al., 2000; Curtis et al., 2017)CR (Nesterov & Polyak, 2006)SCR (Kohler & Lucchi, 2017a)SVRC (Zhou et al., 2018c)Lite-SVRC (Zhou et al., 2018b)0(共n01.5013.52.5O n共0(1.50(1(.5)6国1.5
STRi (this paper)STR2 (this paper)O(min{n1.5,1.5O(min{1,1.5
+ +Contributions: In this paper we propose and exploit a formulation in which we make explicit control of the step size in the trust region method. This idea is leveraged to develop two efficient stochastic trust region (STR) approaches. We tailor our methods to achieve state-of-the-art oracle complexities under the following two measurements: (i) the stochastic second-order oracle complexity is prioritized; (ii) the stochastic first- and second-order oracle complexities are treated equally. Specifically, in Setting (i), our method $\mathrm { { S T R } _ { 1 } }$ employs a newly proposed estimator to approximate the Hessian and adopts the estimator in (Fang et al., 2018) for gradient approximation. Our novel Hessian estimator maintains an accurate second-order differential approximation with lower amortized oracle complexity. In this way, $\operatorname { S T R } _ { 1 }$ achieves $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ 1 / \epsilon ^ { 2 } , \sqrt { n } / \epsilon ^ { 1 . 5 } \} )$ stochastic second-order oracle complexity. This is lower than existing results for solving problem (1). In Setting (ii), our method $\mathrm { { S T R } _ { 2 } }$ substitutes the gradient estimator in $\mathrm { { S T R } _ { 1 } }$ with one that integrates stochastic gradient and Hessian together to maintain an accurate gradient approximation. As a result, $\mathrm { { S T R _ { 2 } } }$ achieves convergence in ${ \tilde { \mathcal { O } } } ( n ^ { 3 / 4 } / \epsilon ^ { 1 . 5 } )$ overall stochastic first- and second-order oracle queries. Finally, based on STR, we further develop Hessian-free STR algorithms, namely $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ and ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ , which outperform existing Hessian-free algorithms theoretically. + +# 1.1 RELATED WORK + +Computing local minimum to a non-convex optimization problem is gaining considerable amount of attentions in recent years. Both cubic regularization (CR) approaches (Nesterov & Polyak, 2006) and trust region (TR) algorithms (Conn et al., 2000; Curtis et al., 2017) can escape saddle points and find a local minimum by iterating the variable along the direction related to the eigenvector of the Hessian with the most negative eigenvalue. As the CR heavily depends on the regularization parameter for the cubic term, Cartis et al. (2011) propose an adaptive cubic regularization (ARC) approach to boost the efficiency by adaptively tuning the regularization parameter according to the current objective decrease. Noting the high cost of full gradient and Hessian computation in ARC, sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a) is developed for sampling partial data points to estimate the full gradient and Hessian. Recently, by exploring the finite-sum structure of the target problem, many works incorporate variance reduction technique (Johnson & Zhang, 2013) into CR and propose stochastic variance-reduced methods. For example, Zhou et al. (2018c) propose stochastic variance-reduced cubic (SVRC) in which they integrate the stochastic variance-reduced gradient estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018) with CR. Such a method is proved to be at least $\mathcal { O } ( n ^ { 1 / 5 } )$ faster than CR and TR. Then Zhou et al. (2018b) use adaptive gradient batch size and constant Hessian batch size, and develop Lite-SVRC to further reduce the stochastic second-order oracle ${ \tilde { \mathcal { O } } } ( n ^ { 4 / 5 } / \epsilon ^ { 1 . 5 } )$ of SVRC to $\tilde { \mathcal { O } } ( n ^ { 2 / 3 } / \epsilon ^ { 1 . 5 } )$ at the cost of higher gradient computation cost. Similarly, except turning the gradient batch size, Zhang et al. (2018) further adaptively sample a certain number of data points to estimate the Hessian and prove the proposed method to have the same stochastic second-order oracle complexity as Lite-SVRC. + +# 2 PRELIMINARY + +Notation. We use $\| \mathbf { v } \|$ to denote the Euclidean norm of vector $\mathbf { v }$ and use $\| \mathbf { A } \|$ to denote the spectral norm of matrix A. Let $s$ be the set of component indices. We define the minibatch average of component functions by $\begin{array} { r } { f ( \mathbf { x } ; \mathcal { S } ) \ \stackrel { \mathrm { d e f } } { = } \ \frac { 1 } { | \mathcal { S } | } \sum _ { i \in \mathcal { S } } f _ { i } ( \mathbf { x } ) } \end{array}$ . Then we specify the assumptions that are necessary to the analysis of our methods. + +# MetaAlgorithm 1 Inexact Trust Region Method + +Input: initial point $\mathbf { x } ^ { 0 }$ , step size $r$ , number of iterations $K$ , construction of differential estimators $\mathbf { g } ^ { k }$ and $\mathbf { H } ^ { k }$ +1: for $k = 0$ to $K - 1$ do +2: Compute $\mathbf { h } ^ { k }$ and $\lambda ^ { k }$ by solving (8); +3: $\mathbf { x } ^ { k + 1 } : = \mathbf { x } ^ { k } + \mathbf { h } ^ { k }$ ; +4: if $\lambda ^ { k } \le 3 \sqrt { \epsilon / L _ { 2 } }$ then +5: Output ${ \bf x } _ { \epsilon } = { \bf x } ^ { k + 1 }$ ; +6: end if +7: end for + +Assumption 2.1. $F$ is bounded from below and its global optimal is achieved at $\mathbf { x } ^ { * }$ . We denote $\Delta = \bar { F ( \mathbf { x } ^ { 0 } ) } - F ( \mathbf { x } ^ { * } )$ . + +Assumption 2.2. Each $f _ { i } : \mathbb { R } ^ { d } \mathbb { R }$ has $L _ { 1 }$ -Lipschitz continuous gradient: for any $\mathbf { x } , \mathbf { y } \in \mathbb { R } ^ { d }$ + +$$ +\| \nabla f _ { i } ( \mathbf { x } ) - \nabla f _ { i } ( \mathbf { y } ) \| \leq L _ { 1 } \| \mathbf { x } - \mathbf { y } \| . +$$ + +Assumption 2.3. Each $f _ { i } : \mathbb { R } ^ { d } \mathbb { R }$ has $L _ { 2 }$ -Lipschitz continuous Hessian: for any $\mathbf { x } , \mathbf { y } \in \mathbb { R } ^ { d }$ + +$$ +\| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ) - \nabla ^ { 2 } f _ { i } ( \mathbf { y } ) \| \leq L _ { 2 } \| \mathbf { x } - \mathbf { y } \| . +$$ + +# 2.1 TRUST REGION METHOD + +Here we briefly introduce the trust region method (Conn et al., 2000). In each step, it first solves the Quadratic Constraint Quadratic Program (QCQP) defined as + +$$ +\mathbf { h } ^ { k } : = \operatorname * { a r g m i n } _ { \mathbf { h } \in \mathbb { R } ^ { d } , \| \mathbf { h } \| \leq r } \langle \nabla F ( \mathbf { x } ^ { k } ) , \mathbf { h } \rangle + \frac { 1 } { 2 } \langle \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) \mathbf { h } , \mathbf { h } \rangle , +$$ + +where $r$ is the trust-region radius. Then it updates the new variable as + +$$ +\mathbf { x } ^ { k + 1 } : = \mathbf { x } ^ { k } + \mathbf { h } ^ { k } . +$$ + +Since $\nabla ^ { 2 } F ( \mathbf { x } ^ { k } )$ is indefinite, the trust-region subproblem (5) is non-convex. But its global optimizer can be characterized by the following lemma (Corollary 7.2.2 in (Conn et al., 2000)). + +Lemma 2.1. Any global minimizer of problem (5) satisfies the equation + +$$ +\left( \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) + \lambda \mathbf { I } \right) \mathbf { h } ^ { k } = - \nabla F ( \mathbf { x } ^ { k } ) , +$$ + +where the dual variable $\lambda \geq 0$ should satisfy $\nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) + \lambda \mathbf { I } \succcurlyeq 0$ and $\lambda ( \| \mathbf { h } ^ { k } \| - r ) = 0 .$ . + +In particular, the standard QCQP solver returns both the minimizer $\mathbf { h } ^ { k }$ as well as the corresponding dual variable $\lambda$ of subproblem (5). In the following section, we first prove that the deterministic trust-region update (5) and (6) converges at the rate of √ $\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ , much sharper than existing provable convergence rate $\mathcal { O } ( 1 / \sqrt { k } )$ (Conn et al., 2000), and then develop a more efficient stochastic trust-region approach. + +# 3 METHODOLOGY + +Here we first introduce a general inexact trust region method which is summarized in MetaAlgorithm 1. It accepts inexact gradient estimation $\mathbf { g } ^ { k }$ and Hessian estimation $\mathbf { H } ^ { k }$ as input to the QCQP subproblem + +$$ +\mathbf { h } ^ { k } : = \operatorname * { a r g m i n } _ { \mathbf { h } \in \mathbb { R } ^ { d } , \| \mathbf { h } \| \leq r } \langle \mathbf { g } ^ { k } , \mathbf { h } \rangle + \frac { 1 } { 2 } \langle \mathbf { H } ^ { k } \mathbf { h } , \mathbf { h } \rangle . +$$ + +Similar to (5), Lemma 2.1 characterizes the global optimum to problem (8) which can be efficiently solved by Lanczos method (Gould et al., 1999). Assume the dual variable of the minimizer $\mathbf { h } ^ { k }$ is $\lambda ^ { \dot { k } }$ + +We prove that such inexact trust region method achieves the optimal $\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ convergence rate when the estimation $\mathbf { g } ^ { k }$ and $\mathbf { H } ^ { k }$ at each iteration are sufficiently close to their full (exact) counterparts $\nabla F ( \mathbf { x } ^ { k } )$ and $\nabla ^ { 2 } F ( \bar { \mathbf { x } } ^ { k } )$ respectively: + +$$ +\| \mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) \| \leq \frac { \epsilon } { 6 } , \| \mathbf { H } ^ { k } - \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) \| \leq \frac { \sqrt { \epsilon L _ { 2 } } } { 3 } . +$$ + +# Algorithm 2 STR1 + +
1:for k= 1 to K do 2: 3: Compute hk and Xk by solving (8);Input:initial point x°,step size r,number of iterations K Construct gradient estimator gk by Estimator 4; Construct Hessian estimator Hk by Estimator 3;
+ +Such result allows us to derive stochastic trust-region variants with novel differential estimators that are tailored to ensure the optimal convergence rate. We state our formal results in Theorem 3.1, whose proof is deferred to Appendix B.1 due to the space limit. + +Theorem 3.1 (Main Result). Consider problem (1) under Assumption 2.1-2.3. If the differential estimators $\mathbf { g } ^ { k }$ and $\mathbf { H } ^ { k }$ satisfy Eqn. (9) for all $k$ , MetaAlgorithm 1 finds an $\mathcal { O } ( \epsilon )$ -SOSP in less than $K = \mathcal { O } ( \sqrt { L _ { 2 } } \Delta / \epsilon ^ { 1 . 5 } )$ iterations by setting the trust-region radius as $r = \sqrt { \epsilon / L _ { 2 } }$ . + +Remark 3.1. We emphasize that MetaAlgorithm 1 degenerates to the exact trust region method by taking $\mathbf { g } ^ { k } = \nabla F ( \mathbf { x } ^ { k } )$ and $\mathbf { H } ^ { k } = \nabla ^ { 2 } F ( \mathbf { \bar { x } } ^ { k } )$ . Such result is of its own interest because this is the first proof to show that the vanilla trust region method has the optimal $\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ convergence rate. Similar rate is achieved by Curtis et al. (2017) but with a much more complicated trust region variant. + +Theorem 3.1 shows the explicit step size control of the trust region method: Since the dual variable√ satisfies $\lambda ^ { k } > 3 \epsilon ^ { 0 . 5 } / \sqrt { L _ { 2 } } ^ { \bullet } > 0$ for all but the last iteration, we always find the solution to the trustregion subproblem (8) in the boundary, i.e. $\| \mathbf { h } ^ { k } \| = r$ , according to the complementary condition (15) in Appendix B.1. Such exact step size control property is missing in the cubic-regularization method where the step size is implicitly decided by the cubic regularization parameter. + +More importantly, we emphasize that such explicit step size control is crucial to the sample efficiency of our variance reduced differential estimators. The essence of variance reduction is to exploit the correlations between the differentials in consecutive iterations. Intuitively, when two neighboring iterates are close, so are their differentials due to the Lipschitz continuity, and hence a smaller number of samples suffice to maintain the accuracy of the estimators. On the other hand, smaller step size reduces the per-iteration objective decrease which harms the convergence rate of the algorithm (see proof of Theorem 3.1). Therefore, the explicit step size control in trust region method allows us to well trade-off the per-iteration sample complexity and convergence rate, from which we can derive stochastic trust region approaches with the state-of-the-art sample efficiency. In contrast, existing trust region methods change the step size at every iteration according to progress made, which requires loss evaluations that can be as expensive as gradient computations (e.g. the non-convex linear model in Section 7) and is thus prohibitive for large-scale problems. + +# 4 STOCHASTIC TRUST REGION METHOD: TYPE I + +Having the inexact trust region method as prototype, we now present our first sample-efficient stochastic trust region method, namely $\mathrm { { S T R } _ { 1 } }$ , in Algorithm 2 which emphasizes cheaper stochastic second-order oracle complexity. As Theorem 3.1 already guarantees the optimal convergence rate of MetaAlgorithm 1 when the gradient estimator $\mathbf { g } ^ { k }$ and the Hessian estimator $\mathbf { H } ^ { k }$ meet the requirement (9), here we focus on constructing such novel differential estimators. Specifically, we first present our Hessian estimator in Estimator 3 and our first gradient estimator in Estimator 4, both of which exploit the trust region radius $r = \sqrt { \epsilon / L _ { 2 } }$ to reduce their variances. + +# 4.1 HESSIAN ESTIMATOR + +Our epoch-wise Hessian estimator $\mathbf { H } ^ { k }$ is given in Estimator 3, where $p _ { 2 }$ controls the epoch length and $s _ { 2 }$ (and optionally $s _ { 2 } ^ { \prime }$ ) controls the minibatch size. At the beginning of each epoch, Estimator 3 has two options, designed for different target accuracy: Option I is preferable for the high accuracy + +# Estimator 3 Hessian Estimator + +Input: Epoch length $p _ { 2 }$ , sample size $s _ { 2 }$ , $s _ { 2 } ^ { \prime }$ (optional) +1: if $\mod ( k , p _ { 2 } ) = 0$ then +2: Option I: $\diamond$ high accuracy case (small $\epsilon$ ) +3: $\mathbf { H } ^ { k } : = \nabla ^ { 2 } F ( \mathbf { x } ^ { k } )$ ; +4: Option II: $\diamond$ low accuracy case (moderate $\epsilon$ ) +5: Draw $s _ { 2 } ^ { \prime }$ samples indexed by $\mathcal { H } ^ { \prime }$ and let $\mathbf { H } ^ { k } : = \nabla ^ { 2 } f ( \mathbf { x } ^ { k } ; \mathcal { H } ^ { \prime } )$ ; +6: else +7: Draw $s _ { 2 }$ samples indexed by $\mathcal { H }$ and let $\mathbf { H } ^ { k } : = \nabla ^ { 2 } f ( \mathbf { x } ^ { k } ; \mathcal { H } ) - \nabla ^ { 2 } f ( \mathbf { x } ^ { k - 1 } ; \mathcal { H } ) + \mathbf { H } ^ { k - 1 }$ ; +8: end if + +# Estimator 4 Gradient Estimator: Case (1) + +1: if $\mod ( k , p _ { 1 } ) = 0$ then +2: $\mathbf { g } ^ { k } : = \nabla F ( \mathbf { x } ^ { k } )$ ; +3: else +4: Draw $s _ { 1 }$ samples indexed by $\mathcal { G }$ and $\mathbf { g } ^ { k } = \nabla f ( \mathbf { x } ^ { k } ; \mathcal { G } ) - \nabla f ( \mathbf { x } ^ { k - 1 } ; \mathcal { G } ) + \mathbf { g } ^ { k - 1 } ;$ ; +5: end if + +case $( \epsilon < \mathcal { O } ( 1 / n ) )$ where we compute the full Hessian to avoid approximation error, and Option II is designed for the moderate accuracy case $( \epsilon > \mathcal { O } ( 1 / n ) )$ where we only need an approximate Hessian estimator. Then, $p _ { 2 }$ iterations follow with $\mathbf { H } ^ { k }$ defined in a recurrent manner. These recurrent estimators exist for the first-order case (Nguyen et al., 2017; Fang et al., 2018), but their bound only holds under the vector $\ell _ { 2 }$ norm. Here we generalize them into Hessian estimation with matrix spectral norm bound. + +The following lemma analyzes the amortized stochastic second-order oracle (Hessian) complexity for Algorithm 3 to meet the requirement in Theorem 3.1. As we need an error bound under the spectral norm, we will appeal to the matrix Azuma’s inequality (Tropp, 2012). The proof is deferred to Appendix B.2. + +Lemma 4.1. Assume Algorithm 2 takes the trust region radius $r = \sqrt { \epsilon / L _ { 2 } }$ as in Theorem 3.1. For any $k \geq 0$ , Estimator 3 produces estimator $\mathbf { H } ^ { k }$ for the second order differential $\nabla ^ { 2 } F ( \mathbf { x } ^ { k } )$ such that $\| \mathbf { H } ^ { k } - \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) \| \leq \sqrt { \epsilon L _ { 2 } } / 3$ with probability at least $1 - \delta / K _ { 0 }$ if we set (1) $\boldsymbol { p } _ { 2 } = \sqrt { n }$ and $s _ { 2 } = 3 2 \sqrt { n } \log ( d K _ { 0 } / \delta )$ in option $I ,$ or (2) $p _ { 2 } = L _ { 1 } / ( 2 \sqrt { \epsilon L _ { 2 } } )$ , $s _ { 2 } ^ { \prime } = 1 6 L _ { 1 } ^ { 2 } / ( \epsilon L _ { 2 } ) \log ( d K _ { 0 } / \delta )$ , and $s _ { 2 } = 3 2 L _ { 1 } / ( \sqrt { \epsilon L _ { 2 } } ) \log ( d K _ { 0 } / \delta )$ in option $\boldsymbol { { I I } }$ . Here $K _ { 0 }$ is a constant to be determined later. Consequently the amortized per-iteration stochastic second-order oracle complexity to construct is no more than $\begin{array} { r } { 2 s _ { 2 } = \operatorname* { m i n } \{ 6 4 \sqrt { n } \log \frac { d K _ { 0 } } { \delta } } \end{array}$ , $\begin{array} { r } { \frac { 6 4 L _ { 1 } } { \sqrt { \epsilon L _ { 2 } } } \log \frac { d K _ { 0 } } { \delta } \biggr \} } \end{array}$ $\mathbf { H } ^ { k }$ + +# 4.2 GRADIENT ESTIMATOR: CASE (1) + +When the stochastic second-order oracle complexity is prioritized, we directly employ the SPIDER gradient estimator to construct $\mathbf { g } ^ { k }$ (Fang et al., 2018). Similar to the construction for $\bar { \mathbf { H } } ^ { k }$ , the estimator $\bar { \mathbf { g } } ^ { k }$ is also constructed in an epoch-wise manner as presented in Estimator 4, where $p _ { 1 }$ controls the epoch length and $s _ { 1 }$ controls the minibatch size. + +We now analyze the stochastic first-order oracle complexity to meet the requirement in Theorem 3.1. Lemma 4.2. Assume Algorithm 2 takes the trust region radius $r = \sqrt { \epsilon / L _ { 2 } }$ . Estimator $\cdot$ produces estimator $\mathbf { g } ^ { k }$ of the first order differential $\nabla F ( \mathbf { x } ^ { k } )$ such that $\| \mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) \| \leq \epsilon / 6$ with probability at least $1 - \delta / K _ { 0 }$ for any $k \geq 0 ,$ , if we set $\begin{array} { r } { p _ { 1 } = \operatorname* { m a x } \lbrace 1 , \sqrt { n \epsilon L _ { 2 } / ( c L _ { 1 } ^ { 2 } \log \frac { K _ { 0 } } { \delta } ) } \rbrace } \end{array}$ and $s _ { 1 } = \operatorname* { m i n } \{ n , \sqrt { c n L _ { 1 } ^ { 2 } \log ( K _ { 0 } / \delta ) / ( \epsilon L _ { 2 } ) } \}$ , where the constant $c = 1 1 5 2$ and $K _ { 0 }$ is a constant to be determined later. Consequently, the amortized per-iteration stochastic first-order oracle complexity to construct $\mathbf { g } ^ { k } i s \operatorname* { m i n } \{ n , \sqrt { 4 c n L _ { 1 } ^ { 2 } \log { ( K _ { 0 } / \delta ) } / ( \epsilon L _ { 2 } ) } \}$ . + +The proof of Lemma 4.2 is similar to the one of Lemma 4.1 and is deferred to Appendix B.3. These two lemmas only guarantee that the differential estimators satisfy the requirement (9) in a single iteration and can be extended to hold for all $k$ by using the union bound with $K _ { 0 } = 2 K$ , where $K$ denotes the number of iterations. Combining such lifted result with Theorem 3.1, we can establish the computational complexity bound as follows. + +# Algorithm 5 STR2 + +Input: initial point $\mathbf { x } ^ { 0 }$ , step size $r$ , number of iterations $K$ + +1: for $k = 1$ to $K$ do +2: Construct gradient estimator $\mathbf { g } ^ { k }$ by Estimator 6; +3: Construct Hessian estimator $\bar { \mathbf { H } } ^ { k }$ by Estimator 3; +4: Compute $\mathbf { h } ^ { k }$ and $\lambda ^ { k }$ by solving (8); +5: $\mathbf { x } ^ { k + 1 } : = \mathbf { x } ^ { k } + \mathbf { h } ^ { k }$ ; +6: if $\lambda ^ { k } \le 3 \sqrt { \epsilon / L _ { 2 } }$ then +7: Output ${ \bf x } _ { \epsilon } = { \bf x } ^ { k + 1 }$ ; +8: end if +9: end for + +# Estimator 6 Gradient Estimator: Case (2) + +1: if $\mod ( k , p _ { 1 } ) = 0$ then +2: Let $\widetilde \mathbf { x } : = \mathbf { x } ^ { k }$ , $\mathbf { g } ^ { k } : = \nabla F ( \tilde { \mathbf { x } } )$ +3: else +4: Draw $s _ { 1 }$ samples indexed by $\mathcal { G }$ ; +5: $\mathbf { g } ^ { k } = \bar { \nabla } f ( \mathbf { x } ^ { k ^ { \prime } } ; \mathcal { G } ) - \nabla f ( \mathbf { x } ^ { k ^ { \prime } - 1 } ; \mathcal { G } ) + \mathbf { g } ^ { k - 1 } + [ \nabla ^ { 2 } F ( \tilde { \mathbf { x } } ) - \nabla ^ { 2 } f ( \tilde { \mathbf { x } } ; \mathcal { G } ) ] ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) ;$ +6: end if + +Corollary 4.1 (Computational Complexity of $\mathrm { S T R _ { 1 } }$ ). Assume Algorithm 2 will use Estimator 4 to construct the first-order differential estimator $\mathbf { g } ^ { k }$ and use Estimator $^ 3$ to construct the second-order differential estimator $\mathbf { H } ^ { k }$ . To find a $1 2 \epsilon$ -SOSP with probability at least $1 - \delta$ , the overall stochastic first-order oracle complexity is O(min{ n L2∆1.5 , $\begin{array} { r l } { \mathcal { O } ( \operatorname* { m i n } \{ \frac { n \sqrt { L _ { 2 } } \Delta } { \epsilon ^ { 1 . 5 } } , \frac { \sqrt { n } L _ { 1 } } { \epsilon ^ { 2 } } \log ( \frac { L _ { 2 } \Delta } { \delta \epsilon ^ { 1 . 5 } } ) \} ) } \end{array}$ and the overall stochastic secondorder oracle complexity is $\begin{array} { r l } { \mathcal { O } ( \operatorname* { m i n } \{ \frac { \sqrt { n L _ { 2 } } \Delta } { \epsilon ^ { 1 . 5 } } , \frac { L _ { 1 } \Delta } { \epsilon ^ { 2 } } \} \log ( \frac { d \sqrt { L _ { 2 } } \Delta } { \delta \epsilon ^ { 1 . 5 } } ) ) } \end{array}$ + +From Corollary 4.1 we see that $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ \sqrt { n } / \epsilon ^ { 1 . 5 } , 1 / \epsilon ^ { 2 } \} )$ stochastic second-order oracle queries are sufficient for $\operatorname { S T R } _ { 1 }$ to find an $\epsilon$ -SOSP which is significantly better than both the subsampled cubic regularization method $\tilde { \mathcal { O } } ( 1 / \epsilon ^ { 2 . 5 } )$ (Kohler & Lucchi, 2017a) and the variance reduction based ones $\tilde { \mathcal { O } } \bar { ( } n ^ { 2 / 3 } / \epsilon ^ { 1 . 5 } )$ (Zhou et al., 2018b; Zhang et al., 2018). Recently, Zhou & Gu (2019) developed a√ stochastic recursive variance-reduced cubic regularization (SRVRC) method which finds an $( \epsilon , \sqrt { \epsilon } )$ - approximate local minimum with $\tilde { \mathcal { O } } ( n / \epsilon ^ { 1 . 5 } , 1 / \epsilon ^ { 3 } )$ SFO and $\tilde { \mathcal { O } } ( \sqrt { n } / \epsilon ^ { 1 . 5 } , 1 / \epsilon ^ { 2 } )$ SSO. But the result of SRVRC needs to assume stochastic gradient to be bounded, i.e., $\| \nabla f _ { i } ( { \mathbf { x } } ) - \nabla F ( { \mathbf { x } } ) \| \leq \sigma$ . With this extra assumption, STR1 enjoys $\tilde { \mathcal { O } } ( n / \epsilon ^ { 1 . 5 } , n / \epsilon ^ { 2 } , 1 / \epsilon ^ { 3 } )$ SFO and $\tilde { \mathcal { O } } ( \sqrt { n } / \epsilon ^ { 1 . 5 } , 1 / \epsilon ^ { 2 } )$ SSO. Thus, if $1 / { \epsilon } \le n \le 1 / \bar { \epsilon } ^ { 2 }$ , STR1 outperforms SRVRC; otherwise they have the same complexities. + +# 5 STOCHASTIC TRUST REGION METHOD: TYPE II + +In the above section, we focus on the setting where the stochastic second-order oracle complexity is prioritized over the stochastic first-order oracle complexity. In this setting, $\mathrm { { S T R } _ { 1 } }$ achieves the stateof-the-art efficiency. In this section, we consider a different complexity measure where first-order and second-order oracle complexities are treated equally and our goal is to minimize the maximum of them. We note that, currently the best result is $\tilde { \mathcal { O } } ( n ^ { 4 / 5 } / \epsilon ^ { 1 . 5 } )$ of the SVRC method (Zhou et al., 2018c). + +Since the Hessian estimator $\mathbf { H } ^ { k }$ of $\operatorname { S T R } _ { 1 }$ already delivers the superior $\tilde { \mathcal { O } } ( \sqrt { n } / \epsilon ^ { 1 . 5 } )$ stochastic Hessian complexity, in $\mathrm { { S T R _ { 2 } } }$ (see Algorithm 5), we retain Estimator 3 for second-order differential estimation and use Estimator 6 to further reduce the stochastic gradient complexity. + +# 5.1 GRADIENT ESTIMATOR: CASE (2) + +When stochastic gradient and Hessian complexities are equally important, we use Hessian to improve the gradient estimation. Denote $\mathbf { x } ( a ) = a \bar { \mathbf { x } } ^ { t } + ( 1 - a ) \tilde { \mathbf { x } }$ . From Assumption 2.3, we have + +$$ +\nabla f _ { i } ( \mathbf { x } ^ { t } ) - \nabla f _ { i } ( \widetilde { \mathbf { x } } ) - \nabla ^ { 2 } f _ { i } ( \widetilde { \mathbf { x } } ) ( \mathbf { x } ^ { t } - \widetilde { \mathbf { x } } ) \| = \| \int _ { 0 } ^ { 1 } [ \nabla ^ { 2 } f _ { i } ( \mathbf { x } ( a ) ) - \nabla ^ { 2 } f _ { i } ( \widetilde { \mathbf { x } } ) ] ( \mathbf { x } ^ { t } - \widetilde { \mathbf { x } } ) \mathbf { d } a \| \leq \frac { L _ { 2 } } { 2 } \| \mathbf { x } ^ { t } - \widetilde { \mathbf { x } } \| ^ { 2 } +$$ + +Such property can be used to improve Lemma 4.2 of Estimator 4. Specifically, define the correction + +$$ +\mathbf { c } ^ { k } = [ \nabla ^ { 2 } F ( \tilde { \mathbf { x } } ) - \nabla ^ { 2 } f ( \tilde { \mathbf { x } } ; \mathcal { G } ) ] ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) , +$$ + +where $\tilde { \bf x }$ is some reference point updated in an epoch-wise manner. Estimator 6 adds $\mathbf { c } ^ { k }$ to the estimator in Estimator 4. Note that in Estimator 6, the first- and second-order oracle complexities are the same. We now analyze the first-order (and second-order) oracle complexity to meet requirement (9). + +Lemma 5.1. Assume Algorithm $\cdot$ takes the trust region radius $r = \sqrt { \epsilon / L _ { 2 } }$ as in Theorem 3.1. For any $k \geq 0$ , Estimator 6 produces estimator $\mathbf { g } ^ { k }$ for the first order differential $\nabla F ( \mathbf { x } ^ { k } )$ such that $\| \mathbf { g } ^ { k } - \mathbf { \mu }$ $\nabla F ( \mathbf { x } ^ { k } ) \| \leq \epsilon / 6$ with probability at least $1 - \delta / K _ { 0 }$ , if we set $p _ { 1 } = n ^ { 0 . 2 5 }$ and $s _ { 1 } \doteq \dot { n } ^ { 0 . 7 5 } c \log ( \ddot { K _ { 0 } } / \delta )$ where $c = 1 1 5 2$ and $K _ { 0 }$ is a constant to be determined. Consequently, the amortized per-iteration stochastic first-order oracle complexity to construct $\mathbf { g } ^ { k }$ is $2 s _ { 1 } = 2 n ^ { 0 . \dot { 7 } 5 } c \log ( K _ { 0 } / \delta )$ . + +The proof of Lemma 5.1 is similar to the one of Lemma 4.1 and is deferred to Appendix B.4. Similar to the previous section, Lemma 5.1 only guarantees that the gradient estimator satisfies the requirement (9) in a single iteration. Such result can be extended to hold for all $k$ by using the union bound with $K _ { 0 } = 2 K$ , which together with Theorem 3.1 gives the following corollary. + +Corollary 5.1 (Computational Complexity of $\mathrm { { S T R } _ { 2 } }$ ). Algorithm 5 finds a $1 2 \epsilon$ -SOSP with probability at least $1 - \delta$ , within $\begin{array} { r } { \mathcal { O } ( \frac { n ^ { 0 . 7 5 } \sqrt { L _ { 2 } } \Delta } { \epsilon ^ { 1 . 5 } } \log ( \frac { \sqrt { L _ { 2 } } \Delta } { \delta \epsilon ^ { 1 . 5 } } ) ) } \end{array}$ ) overall stochastic first-order oracle queries and $\begin{array} { r } { \mathcal { O } ( \frac { n ^ { 0 . 7 5 } \sqrt { L _ { 2 } } \Delta } { \epsilon ^ { 1 . 5 } } \log ( \frac { d \sqrt { L _ { 2 } } \Delta } { \delta \epsilon ^ { 1 . 5 } } ) ) } \end{array}$ 1.5 δ1.5 overall stochastic second-order oracle queries. + +Corollary 5.1 shows that to find an $\epsilon$ -SOSP, both SFO and SSO of $\mathrm { { S T R _ { 2 } } }$ are $\tilde { \mathcal { O } } ( n ^ { 3 / 4 } / \epsilon ^ { 1 . 5 } )$ which surpasses the best existing one ${ \tilde { \mathcal { O } } } ( n ^ { 4 / 5 } / \epsilon ^ { 1 . 5 } )$ in (Zhou et al., 2018c). + +# 6 PRACTICAL STOCHASTIC TRUST REGION VARIANTS + +# 6.1 HANDLING INEXACT QCQP SOLUTIONS + +One drawback of MetaAlgorithm 1 is that it requires the exact solution to the QCQP subproblem (8) and uses the dual variable as stopping criterion. We address this problem by developing a practical variant, MetaAlgorithm 7, which admits inexact QCQP solutions without access to the dual variable. This algorithm repeatedly invokes a procedure called INEXACTTR $\mathbf { W E A K }$ , which, as we shall see, outputs an $\mathcal { O } ( \epsilon )$ -SOSP with a constant probability of $2 / 3$ in $\mathcal { O } ( 1 / \epsilon ^ { 1 . 5 } )$ iterations. By repeatedly invoking INEXACTTR $\mathbf { \partial } \cdot \mathbf { W E A K }$ for $\Theta ( \log ( 1 / \bar { \delta } ) )$ times, MetaAlgorithm 7 boosts the probability to $( 1 - \delta )$ for any desired $\delta$ . This repeating technique has been studied by, e.g., (Allen-Zhu & Li, 2018; AllenZhu, 2018b). To test whether the $t$ -th run outputs an $\mathcal { O } ( \epsilon )$ -SOSP, we need to compute $\| \nabla F ( \mathbf { x } ^ { t } ) \|$ and the smallest eigenvalue of $\nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ . The latter one can be approximated by solving the QCQP + +$$ +\mathbf { v } ^ { t } : = \operatorname * { a r g m i n } _ { \| \mathbf { v } \| \leq 1 } \psi _ { t } ( \mathbf { v } ) = \langle \mathbf { H } ^ { t } \mathbf { v } , \mathbf { v } \rangle , +$$ + +where $\mathbf { H } ^ { t }$ is the full Hessian $\nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ or its estimation. One can show that MetaAlgorithm 7 finds an $\mathcal { O } ( \epsilon )$ -SOSP w.p. at least $( 1 - \delta )$ in $\tilde { \mathcal { O } } ( 1 / \epsilon ^ { 1 . 5 } )$ iterations. We defer the detailed analysis to Appendix C. + +# 6.2 HESSIAN-FREE IMPLEMENTATION + +Based on MetaAlgorithm 7, we propose a Hessian-free method named ${ \mathrm { { S T R } } } _ { \mathrm { { f r e e } } }$ , which is summarized in Algorithm 8. $\mathrm { S T R } _ { \mathrm { f r e e } }$ leverages the full/stochastic Hessian and Estimator 4 to construct $\mathbf { H } ^ { k }$ and $\mathbf { g } ^ { k }$ , respectively. Besides, it uses Lanczos method (Gould et al., 1999; Carmon & Duchi, 2018) as the QCQP solver, which can be implemented in a Hessian-free manner (i.e., using only Hessian-vector products without explicit Hessian matrix evaluations). Thus, $\mathbf { H } ^ { k }$ is only accessed through Hessianvector products and is never explicitly constructed. Since Hessian-vector products can be computed in linear time (in terms of the dimension $d$ ) for many machine learning problems (Allen-Zhu, 2018b; Agarwal et al., 2017), Hessian-free methods are usually more practical than Hessian based ones for high dimensional problems. The following theorem, whose proof can be found in Appendix D, establishes the runtime complexity (i.e., the total complexity of stochastic gradient and Hessian-vector product evaluations (Zhou & Gu, 2019)) of ${ \bf S T R } _ { \mathrm { f r e e } }$ . + +# MetaAlgorithm 7 Inexact Trust Region Method II + +Input: initial point $\mathbf { x } ^ { 0 }$ , step size $r$ , number of inner iterations $K$ , constants $\delta , \zeta \in ( 0 , 1 )$ , c1, c2, +number of outer iterations $T = \Theta ( \log ( 1 / \delta ) )$ , sample size $s$ (optional) +1: for $t = 1$ to $T$ do +2: $\mathbf { x } ^ { t } \gets \mathrm { I N E X A C T T R } _ { \mathrm { W E A K } } ( \mathbf { x } ^ { 0 } , r , K , \zeta )$ ; +3: Option I: $\diamond$ high accuracy case (small $\epsilon$ ) +4: $\mathbf { H } ^ { t } : = \nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ ; +5: Option II: $\diamond$ low accuracy case (moderate $\epsilon$ ) +6: Draw $s$ samples indexed by $\mathcal { H }$ and let $\mathbf { H } ^ { t } : = \nabla ^ { 2 } f ( \mathbf { x } ^ { t } ; \mathcal { H } )$ ; +7: Compute $\tilde { \mathbf { v } } ^ { t }$ by solving (10) up to accuracy $\sqrt { \epsilon L _ { 2 } }$ with probability $1 - \delta / 4$ ; +8: if $\| \nabla F ( \mathbf { x } ^ { t } ) \| \leq c _ { 1 } \epsilon _ { . }$ and $\psi _ { t } ( \tilde { \mathbf { v } } ^ { t } ) \geq - \sqrt { c _ { 2 } \epsilon L _ { 2 } }$ then +9: return $\mathbf { x } _ { \epsilon } : = \mathbf { x } ^ { t }$ ; +10: end if +11: end for +12: procedure INEXACTTR $\mathbf { w } _ { \mathrm { E A K } } ( \mathbf { x } ^ { 0 } , r , K , \zeta )$ +13: for $k = 0$ to $K - 1$ do +14: Compute $\mathbf { g } ^ { k }$ and $\mathbf { H } ^ { k }$ such that (9) holds with probability $\textstyle { 1 - \frac { \zeta } { 4 K } }$ +15: Compute $\tilde { \mathbf { h } } ^ { k }$ by solving (8) up to accuracy $\epsilon ^ { 1 . 5 } / \sqrt { L _ { 2 } }$ 4Kwith probability $\textstyle 1 - { \frac { \zeta } { 4 K } }$ ; +16: $\mathbf { x } ^ { k + 1 } : = \mathbf { x } ^ { k } + \tilde { \mathbf { h } } ^ { k }$ ; +17: end for +18: Randomly select $\bar { k }$ from $\{ 0 , \ldots , K - 1 \}$ ; +19: return xk¯+1; +20: end procedure + +# Algorithm 8 STRfree + +1: In the same setting as MetaAlgorithm 7, +2: construct gradient estimator $\mathbf { g } ^ { k }$ by Estimator 4; +3: construct Hessian estimator $\bar { \mathbf { H } } ^ { k }$ by +4: Option I: $\mathbf { H } ^ { k } : = \nabla ^ { 2 } F ( \mathbf { x } ^ { k } )$ ; +5: Option II: Draw $s$ samples indexed by $\mathcal { H }$ and let $\mathbf { H } ^ { k } : = \nabla ^ { 2 } f ( \mathbf { x } ^ { k } ; \mathcal { H } )$ ; +6: use Lanczos method to solve QCQP subproblems. + +Theorem 6.1. Consider Algorithm 8 for solving problem (1). Let $\zeta = 1 / 3$ , $r = \sqrt { \epsilon / L _ { 2 } }$ , $K =$ $4 \sqrt { L _ { 2 } } \Delta / \epsilon ^ { 1 . 5 }$ , $\begin{array} { r } { T = \frac { 3 } { 2 } \mathrm { { l o g } ( 2 / \delta ) } } \end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0 \mathrm { \Omega }$ , and 32L21L2 log(4d/δ). The hyper-parameters in Estimator $^ { 4 }$ are set to the same values as those in Lemma 4.2. The number of iterations of Lanczos method is set to $\tilde { \mathcal { O } } ( 1 / ( L _ { 2 } \epsilon ) ^ { 0 . 2 5 } )$ . To find an $\mathcal { O } ( \epsilon )$ -SOSP w.p. at least $1 - \delta$ , the runtime complexity is $\tilde { \mathcal { O } } ( d \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 7 5 } + \sqrt { n } / \epsilon ^ { 2 } \} \log ( 1 / \delta ) )$ . + +To solve the QCQP more efficiently, here we develop a faster solver which is based on the AppxPCA method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a). See details in Appendix E. By replacing Lanczos method with this solver in ${ \bf S T R } _ { \mathrm { f r e e } }$ , we further improve the runtime complexity to $\tilde { \mathcal { O } } ( d \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 5 } + \sqrt { n } / \epsilon ^ { 2 } \}$ ). We call this new algorithm ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ whose details can be found in Appendix E. Table 2 shows that for the runtime complexities, both $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ and ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ outperform existing methods. See more comparison and discussion in Appendix E.4. + +# 7 EXPERIMENTS + +Here we compare the proposed STR with several state-of-the-art (stochastic) cubic regularized algorithms and trust region approaches, including trust region (TR) algorithm (Conn et al., 2000), adaptive cubic regularization (ARC) (Cartis et al., 2011), sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a), stochastic variance-reduced cubic (SVRC) (Zhou et al., 2018c), Lite-SVRC (Zhou et al., 2018b), and SRVRC (Zhou & Gu, 2019). For STR, we estimate the gradient as the way in case (1). This is because such a method enjoys lower Hessian computational complexity over the way in case (2) and for most problems, computing their Hessian matrices is much more time-consuming than computing their gradients. For the subproblems in these compared methods, we use Lanczos method (Gould et al., 1999; Kohler & Lucchi, 2017a) to solve the subproblem approximately in a Hessian-related Krylov subspace. We run simulations on seven datasets from LibSVM (a9a, ijcnn, codrna, phishing, w8a, epsilon and mnist). We run our algorithm for 40 epochs and use the output as the optimal value $f ^ { * }$ for sub-optimality estimation. Note the output has very small gradient already verified by Figure 2 and 4 in appendix. For all the considered algorithms, we set their initializations as zeros and tune their hyper-parameters optimally. For more experimental settings, e.g. details of testing datasets and algorithm parameter settings, please refer to Appendix F. + +Table 2: Runtime complexities of $\operatorname { S T R } _ { \mathrm { f r e e } }$ , ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ , and other state-of-the-art methods. + +
AlgorithmRuntime
Hessian-free Cubic (Carmon & Duchi, 2016)Fast-Cubic (Agarwal et al., 2017)Stochastic Cubic (Tripuraneni et al., 2018)SRVRCfree (Zhou & Gu, 2019)()0dn dn0.75+151.756d *35O(min{ d})*
STRfree (this paper)STRfree+ (this paper)O(min{dn d dn0.5e1.75,2.752O(min{ dn0.75dn d dn0.51.5+e1.75,2.5+20)
+ +These entries rely on an additional assumption: $\| \nabla f _ { i } ( { \mathbf { x } } ) - \nabla F ( { \mathbf { x } } ) \| \leq \sigma$ a.s. + +![](images/8013d004ab6213afb97a494ee9b3163ce86d5b5c7e6f77d3cb61238a0eee4a13.jpg) +Figure 1: Comparison on the logistic regression with non-convex regularizer. + +Two evaluation non-convex problems. Following (Kohler & Lucchi, 2017a; Zhou et al., 2018c), we evaluate all considered algorithms on two learning tasks: the logistic regression with nonconvex regularizer and the nonlinear least square. Given $n$ data points $( { \pmb x } _ { i } , y _ { i } )$ where $\pmb { x } _ { i } \in \mathbb { R } ^ { d }$ is the sample vector and $y _ { i } ~ \in ~ \{ - 1 , 1 \}$ is the label, logistic regression with non-convex regularizer aims at distinguishing these two kinds of samples by solving the following problem $\begin{array} { r } { \operatorname* { m i n } _ { \pmb { w } } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \log ( 1 + \mathrm { { e x p } } ( - y _ { i } \pmb { w } ^ { T } \pmb { x } _ { i } ) ) + \lambda R ( \pmb { w } ; \alpha ) } \end{array}$ , where the non-convex regularizer $R ( { \boldsymbol { w } } ; \alpha )$ is defined as $\begin{array} { r } { R ( \pmb { w } ; \alpha ) = \sum _ { i = 1 } ^ { d } \alpha \pmb { w } _ { i } ^ { 2 } / ( 1 + \alpha \pmb { w } _ { i } ^ { 2 } ) } \end{array}$ . The nonlinear least square problem fits the nonlinear data by minimizing $\begin{array} { r } { \operatorname* { m i n } _ { \pmb { w } } \frac { 1 } { 2 n } \sum _ { i = 1 } ^ { n } \left[ y _ { i } - \phi ( \pmb { w } ^ { T } \pmb { x } _ { i } ) \right] ^ { 2 } + \lambda R ( \pmb { w } , \alpha ) } \end{array}$ . For these two kinds of problems, we set the parameters $\lambda = 1 0 ^ { - 3 }$ and $\alpha = 1 0$ for all testing datasets. + +Comparison of Hessian based algorithms. Figure 1 summarizes testing results on the non-convex logistic regression problem. For each dataset, we report the function value gap v.s. the overall algorithm running time which can reflect the overall computational complexity of an algorithm, and also show the function value gap v.s. Hessian sample complexity which reveals the complexity of Hessian computation. From Figure 1, one can observe that our proposed STR algorithm runs faster than the compared algorithms in terms of the algorithm running time, showing the overall superiority of STR. Furthermore, STR also reveals much sharper convergence curves in terms of the Hessian sample complexity which is consistent with our theory. This is because to achieve an $\epsilon$ -accuracy local minimum, the Hessian sample complexity of the proposed STR is $\tilde { \mathcal { O } } ( n ^ { 0 . 5 } / \epsilon ^ { 1 . 5 } )$ and is superior over the complexity of the compared methods (see the comparison in Sec. 4.2). Indeed, this also explains why our algorithm is also faster in terms of algorithm running time, since for most optimization problems, Hessian matrix is much more computationally expensive than the gradient and thus more efficient Hessian sample complexity means faster overall convergence speed. Note, as all compared methods need to compute the Hessian and gradient, their memory complexity are all $\mathcal { O } ( d ^ { 2 } + \dot { d } )$ . + +![](images/1f795eb6ac39b80b39a1210d8ceb789239034df7ee57a3eb2a229984d19c4413.jpg) +Figure 2: Comparison on the nonlinear least square problem. + +Figure 2 displays results of the compared algorithms on the nonlinear least square problem. STR shows very similar behaviors as those in Figure 1. Specifically, STR achieves fastest convergence rate in terms of both algorithm running time and Hessian sample complexity. On the codrna dataset we further plot the gradient norm versus running time and Hessian sample complexity. One can obverse that the gradient in STR vanishes significantly faster than other algorithms which means that STR can find the stationary point with high efficiency. See Figure 4 in Appendix F.2 for more experimental results on gradient norm comparison. All these results confirm the superiority of the proposed STR. + +Comparison of Hessian-free algorithms. Here we compare our proposed Hessian-free STR, namely $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ , with other state-ofthe-art Hessian-free algorithms on the two high-dimensional datasets, including epsilon and mnist (see details in Appendix F). Here we do not compare ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ , as it is based on AppxPCA method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a) which require tuning a lot of hyper-parameters. From the results in Figure 3, one can observe that compared with other algorithms, our ${ \mathrm { { S T R } } } _ { \mathrm { { f r e e } } }$ + +![](images/6ae2d6fe5712438b857d2a33bd755443d66d2c7c1e1911c6e91971831b384a67.jpg) +Figure 3: Comparison of Hessian-free algorithms on non-convex logistic and soft-max regressions. + +achieves the best convergence speed which demonstrates its high efficiency in realistic applications. Besides, one also can find that $\operatorname { S T R } _ { \mathrm { f r e e } }$ is much faster than Hessian based STR since computing full Hessian is actually much computationally expensive than the computation of the Hessian vector. + +# 8 CONCLUSION + +We proposed two stochastic trust region variants. Under two settings (whether stochastic first- and second-order oracle complexities are treated equally), the proposed methods achieve state-of-theart oracle complexities. We also propose Hessian-free variants with lowest runtime complexity. Experimental results testify our theoretical implications and the efficiency of the proposed algorithms. + +# REFERENCES + +Naman Agarwal, Zeyuan Allen-Zhu, Brian Bullins, Elad Hazan, and Tengyu Ma. Finding approximate local minima faster than gradient descent. In Proceedings of the 49th Annual ACM SIGACT Symposium on Theory of Computing, pp. 1195–1199. ACM, 2017. 7, 9, 19 + +Zeyuan Allen-Zhu. Katyusha x: Practical momentum method for stochastic sum-of-nonconvex optimization. arXiv preprint arXiv:1802.03866, 2018a. 8, 10, 19, 20 + +Zeyuan Allen-Zhu. Natasha 2: Faster non-convex optimization than sgd. In Advances in Neural Information Processing Systems, pp. 2675–2686, 2018b. 7 + +Zeyuan Allen-Zhu and Yuanzhi Li. Lazysvd: even faster svd decomposition yet without agonizing pain. In Advances in Neural Information Processing Systems, pp. 974–982, 2016. 8, 10, 19 + +Zeyuan Allen-Zhu and Yuanzhi Li. Neon2: Finding local minima via first-order oracles. In Advances in Neural Information Processing Systems, pp. 3716–3726, 2018. 7, 19 + +Yair Carmon and John C Duchi. Gradient descent efficiently finds the cubic-regularized non-convex newton step. arXiv preprint arXiv:1612.00547, 2016. 9 + +Yair Carmon and John C Duchi. Analysis of krylov subspace solutions of regularized non-convex quadratic problems. In Advances in Neural Information Processing Systems, pp. 10705–10715, 2018. 7, 18 + +Coralia Cartis, Nicholas IM Gould, and Philippe L Toint. Adaptive cubic regularisation methods for unconstrained optimization. part i: motivation, convergence and numerical results. Mathematical Programming, 127(2):245–295, 2011. 2, 8 + +Andrew R Conn, Nicholas IM Gould, and Ph L Toint. Trust region methods, volume 1. Siam, 2000. 1, 2, 3, 8, 13 + +Frank E Curtis, Daniel P Robinson, and Mohammadreza Samadi. A trust region algorithm with a worst-case iteration complexity of (epsilon 3/2) for nonconvex optimization. Mathematical Programming: Series A and B, 162(1-2):1–32, 2017. 1, 2, 4 + +Yann N Dauphin, Razvan Pascanu, Caglar Gulcehre, Kyunghyun Cho, Surya Ganguli, and Yoshua Bengio. Identifying and attacking the saddle point problem in high-dimensional non-convex optimization. In Advances in neural information processing systems, pp. 2933–2941, 2014. 1 + +Cong Fang, Chris Junchi Li, Zhouchen Lin, and Tong Zhang. Spider: Near-optimal non-convex optimization via stochastic path-integrated differential estimator. In Advances in Neural Information Processing Systems, pp. 686–696, 2018. 2, 5 + +Olaf E Flippo and Benjamin Jansen. Duality and sensitivity in nonconvex quadratic optimization over an ellipsoid. European journal of operational research, 94(1):167–178, 1996. 19 + +Nicholas IM Gould, Stefano Lucidi, Massimo Roma, and Philippe L Toint. Solving the trust-region subproblem using the lanczos method. SIAM Journal on Optimization, 9(2):504–525, 1999. 3, 7, 9 + +Robert Gower, Nicolas Le Roux, and Francis Bach. Tracking the gradients using the hessian: A new look at variance reducing stochastic methods. In Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics, 2018. 1, 2 + +Rie Johnson and Tong Zhang. Accelerating stochastic gradient descent using predictive variance reduction. In Advances in neural information processing systems, pp. 315–323, 2013. 1, 2 + +Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex optimization. arXiv preprint arXiv:1705.05933, 2017a. 2, 6, 8, 9 + +Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex optimization. In Proceedings of the 34th International Conference on Machine Learning, 2017b. 1 + +Yurii Nesterov and Boris T Polyak. Cubic regularization of newton method and its global performance. Mathematical Programming, 108(1):177–205, 2006. 1, 2 + +Lam M Nguyen, Jie Liu, Katya Scheinberg, and Martin Taka´c. Sarah: A novel method for machine ˇ learning problems using stochastic recursive gradient. In International Conference on Machine Learning, pp. 2613–2621, 2017. 5 + +Nilesh Tripuraneni, Mitchell Stern, Chi Jin, Jeffrey Regier, and Michael I Jordan. Stochastic cubic regularization for fast nonconvex optimization. In Advances in Neural Information Processing Systems, pp. 2899–2908, 2018. 9, 21 + +Joel A Tropp. User-friendly tail bounds for sums of random matrices. Foundations of computational mathematics, 12(4):389–434, 2012. 5, 14, 18 + +Jiulin Wang and Yong Xia. A linear-time algorithm for the trust region subproblem based on hidden convexity. Optimization Letters, 11(8):1639–1646, 2017. 19 + +Peng Xu, Farbod Roosta-Khorasani, and Michael W Mahoney. Newton-type methods for non-convex optimization under inexact hessian information. arXiv preprint arXiv:1708.07164, 2017. 1 + +Junyu Zhang, Lin Xiao, and Shuzhong Zhang. Adaptive stochastic variance reduction for subsampled newton method with cubic regularization. arXiv preprint arXiv:1811.11637, 2018. 1, 2, 6 + +Dongruo Zhou and Quanquan Gu. Stochastic recursive variance-reduced cubic regularization methods. arXiv preprint arXiv:1901.11518, 2019. 6, 7, 8, 9, 21 + +Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized Newton methods. In Proceedings of the 35th International Conference on Machine Learning, 2018a. 1 + +Dongruo Zhou, Pan Xu, and Quanquan Gu. Sample efficient stochastic variance-reduced cubic regularization method. arXiv preprint arXiv:1811.11989, 2018b. 1, 2, 6, 8, 22 + +Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized newton method. In ICML, 2018c. 2, 6, 7, 8, 9, 22 + +# A APPENDIX + +In this appendix, Sec. B first provides the proofs for the results in the manuscript. Then, we analyze MetaAlgorithm 7 and $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ in Sec. C and Sec. D, respectively. Next, in Sec. E, we develop a fast QCQP solver to further improve the computational complexity of $\operatorname { S T R } _ { \mathrm { f r e e } }$ . Finally, more experimental details and results are presented in Sec. F. + +# B DEFERRED PROOFS + +# B.1 PROOF OF THEOREM 3.1 + +Proof. For simplicity of notation, we denote + +$$ +\nabla _ { k } \overset { \mathrm { d e f } } { = } \nabla F ( { \mathbf x } ^ { k } ) - { \mathbf g } ^ { k } \mathrm { a n d } \nabla _ { k } ^ { 2 } \overset { \mathrm { d e f } } { = } \nabla ^ { 2 } F ( { \mathbf x } ^ { k } ) - { \mathbf H } ^ { k } . +$$ + +From Assumption 2.3 we have + +$$ +\begin{array} { r } { F ( { \mathbf x } ^ { k + 1 } ) \leq F ( { \mathbf x } ^ { k } ) + \langle \nabla F ( { \mathbf x } ^ { k } ) , \mathbf { h } ^ { k } \rangle + \displaystyle \frac { 1 } { 2 } \langle \nabla ^ { 2 } F ( { \mathbf x } ^ { k } ) { \mathbf h } ^ { k } , \mathbf { h } ^ { k } \rangle + \displaystyle \frac { L _ { 2 } } { 6 } \| { \mathbf h } ^ { k } \| ^ { 3 } } \\ { = F ( { \mathbf x } ^ { k } ) + \langle \nabla _ { k } + \mathbf { g } ^ { k } , \mathbf { h } ^ { k } \rangle + \displaystyle \frac { 1 } { 2 } \langle [ \nabla _ { k } ^ { 2 } + \mathbf { H } ^ { k } ] { \mathbf h } ^ { k } , \mathbf { h } ^ { k } \rangle + \displaystyle \frac { L _ { 2 } } { 6 } \| { \mathbf h } ^ { k } \| ^ { 3 } . } \end{array} +$$ + +Use the CauchySchwarz inequality to obtain + +$$ +F ( { \mathbf x } ^ { k + 1 } ) \leq F ( { \mathbf x } ^ { k } ) + \langle { \mathbf g } ^ { k } , { \mathbf h } ^ { k } \rangle + \frac { 1 } { 2 } \langle \mathbf H ^ { k } { \mathbf h } ^ { k } , { \mathbf h } ^ { k } \rangle + \frac { L _ { 2 } } { 6 } \| { \mathbf h } ^ { k } \| ^ { 3 } + \| \nabla _ { k } \| \| { \mathbf h } ^ { k } \| + \frac { 1 } { 2 } \| \nabla _ { k } ^ { 2 } \| \| { \mathbf h } ^ { k } \| ^ { 2 } . +$$ + +The requirement (9) together with the trust region radius $\| \mathbf { h } \| \le r = \sqrt { \epsilon / L _ { 2 } }$ allows us to bound + +$$ +\| \nabla _ { k } \| \| \mathbf h ^ { k } \| + \frac { 1 } { 2 } \| \nabla _ { k } ^ { 2 } \| \| \mathbf h ^ { k } \| ^ { 2 } \leq \frac { 1 } { 3 } \cdot \frac { \epsilon ^ { 1 . 5 } } { \sqrt { L _ { 2 } } } . +$$ + +The optimality of (5) indicates that there exists a dual variable $\lambda ^ { k } \geq 0$ so that (Corollary 7.2.2 in (Conn et al., 2000)) + +$$ +\begin{array} { c } { { \displaystyle { \mathrm { F i r s t ~ O r d e r : ~ } } { \bf { g } } ^ { k } + { \bf H } ^ { k } { \bf h } ^ { k } + \frac { \lambda ^ { k } L _ { 2 } } { 2 } { \bf h } ^ { k } = 0 , } } \\ { { \displaystyle \mathrm { S e c o n d ~ O r d e r : ~ } { \bf H } ^ { k } + \frac { \lambda ^ { k } L _ { 2 } } { 2 } \cdot { \bf I } \approx 0 , } } \\ { { \displaystyle \mathrm { C o m p l e m e n t a r y : ~ } \lambda ^ { k } \cdot ( \| { \bf h } ^ { k } \| - r ) = 0 . } } \end{array} +$$ + +Multiplying (13) by $\mathbf { h } ^ { k }$ , we have + +$$ +\langle \mathbf { g } ^ { k } + \mathbf { H } ^ { k } \mathbf { h } ^ { k } + \frac { \lambda ^ { k } L _ { 2 } } { 2 } \mathbf { h } ^ { k } , \mathbf { h } ^ { k } \rangle = 0 . +$$ + +Additionally, using (14) we have + +$$ +\langle ( \mathbf { H } ^ { k } + \frac { \lambda ^ { k } L _ { 2 } } { 2 } \mathbf { I } ) \mathbf { h } ^ { k } , \mathbf { h } ^ { k } \rangle \geq 0 , +$$ + +which together with (16) gives + +$$ +\langle \mathbf { g } ^ { k } , \mathbf { h } ^ { k } \rangle \leq 0 . +$$ + +Moreover, the complementary property (15) indicates $\| \mathbf { h } ^ { k } \| = \sqrt { \epsilon / L _ { 2 } }$ as we have $\lambda ^ { k } > 3 \sqrt { \epsilon / L _ { 2 } } > 0$ before MetaAlgorithm 1 terminates. Plug (12), (16), and (17) into (11) and use $\| \mathbf { h } ^ { k } \| = \sqrt { \epsilon / L _ { 2 } }$ : + +$$ +F ( \mathbf { x } ^ { k + 1 } ) \leq F ( \mathbf { x } ^ { k } ) - \frac { L _ { 2 } \lambda ^ { k } } { 4 } \cdot \frac { \epsilon } { L _ { 2 } } + \frac { 1 } { 2 } \cdot \frac { \epsilon ^ { 1 . 5 } } { \sqrt { L _ { 2 } } } . +$$ + +Therefore, if we have $\lambda ^ { k } > 3 \epsilon ^ { 0 . 5 } / \sqrt { L _ { 2 } }$ , then + +$$ +F ( \mathbf { x } ^ { k + 1 } ) \leq F ( \mathbf { x } ^ { k } ) - { \frac { 1 } { 4 { \sqrt { L _ { 2 } } } } } \cdot \epsilon ^ { 1 . 5 } . +$$ + +Using Assumption 2.1, we find $\lambda ^ { k } \le 3 \epsilon ^ { 0 . 5 } / \sqrt { L _ { 2 } }$ in no more than $4 \sqrt { L _ { 2 } } \cdot ( F ( \mathbf { x } ^ { 0 } ) - F ( \mathbf { x } ^ { * } ) ) / \epsilon ^ { 1 . 5 }$ iterations. + +We now show that once $\lambda ^ { k } \le 3 \epsilon ^ { 0 . 5 } / \sqrt { L _ { 2 } }$ , then $\mathbf { x } ^ { k + 1 }$ is already an $\mathcal { O } ( \epsilon )$ -SOSP: From (13), we have + +$$ +\| \mathbf { g } ^ { k } + \mathbf { H } ^ { k } \mathbf { h } ^ { k } \| = \frac { L _ { 2 } \lambda ^ { k } } { 2 } \cdot \| \mathbf { h } ^ { k } \| \leq 2 \epsilon . +$$ + +The assumptions $\lVert \nabla _ { k } \rVert \leq \epsilon / 6$ and $\| \nabla _ { k } ^ { 2 } \| \le \sqrt { \epsilon L _ { 2 } } / 3$ together with the trust region radius $\| \mathbf { h } \| \leq$ $\sqrt { \epsilon / L _ { 2 } }$ imply + +$$ +\| \nabla F ( { \mathbf x } ^ { k } ) + \nabla ^ { 2 } F ( { \mathbf x } ^ { k } ) { \mathbf h } ^ { k } \| \leq \| { \mathbf g } ^ { k } + { \mathbf H } ^ { k } { \mathbf h } ^ { k } \| + \| \nabla _ { k } \| + \| \nabla _ { k } ^ { 2 } \cdot { \mathbf h } ^ { k } \| \leq 2 . 5 \epsilon . +$$ + +On the other hand use Assumption 2.3 to bound + +$$ +\| \nabla F ( { \mathbf { x } } ^ { k + 1 } ) - \nabla F ( { \mathbf { x } } ^ { k } ) - \nabla ^ { 2 } F ( { \mathbf { x } } ^ { k } ) { \mathbf { h } } ^ { k } \| \leq \frac { L _ { 2 } } { 2 } \| { \mathbf { h } } ^ { k } \| ^ { 2 } \leq \frac { \epsilon } { 2 } . +$$ + +Combining these two results gives $\| \nabla F ( \mathbf { x } ^ { k + 1 } ) \| \leq 3 \epsilon$ + +Besides, using Assumption 2.3, $\| \nabla _ { k } ^ { 2 } \| \le \sqrt { \epsilon L _ { 2 } } / 3$ , and (14), we derive the Hessian lower bound + +$$ +\nabla ^ { 2 } F ( \mathbf { x } ^ { k + 1 } ) \approx \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) - L _ { 2 } \cdot \Vert \mathbf { h } ^ { k } \Vert \mathbf { I } \approx \mathbf { H } ^ { k } - \sqrt { \epsilon L _ { 2 } } / 3 \mathbf { I } - L _ { 2 } \Vert \mathbf { h } ^ { k } \Vert \mathbf { I } \approx - \sqrt { 1 2 \epsilon L _ { 2 } } \mathbf { I } . +$$ + +Hence $\mathbf { x } ^ { k + 1 }$ is a $1 2 \epsilon$ -stationary point. Additionally, we have $\| \mathbf { h } ^ { k } \| = r$ according to the complementary condition (15) for all but the last iteration. □ + +# B.2 PROOF OF LEMMA 4.1 + +Proof. Without loss of generality, we analyze the case $0 \leq k < q _ { 2 }$ for ease of notation. We first focus on Option II. The proof for Option I follows the similar argument. + +Option II: Define for $k = 0$ and $i \in [ s _ { 2 } ^ { \prime } ]$ + +$$ +\mathbf { B } _ { i } ^ { 0 } \overset { \mathrm { d e f } } { = } \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { 0 } ) - \nabla ^ { 2 } F ( \mathbf { x } ^ { 0 } ) , +$$ + +and define for $k \geq 1$ and $i \in [ s _ { 2 } ]$ + +$$ +\mathbf { B } _ { i } ^ { k } \stackrel { \mathrm { d e f } } { = } \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) - \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k - 1 } ) - \big ( \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) - \nabla ^ { 2 } F ( \mathbf { x } ^ { k - 1 } ) \big ) . +$$ + +$\{ \mathbf { B } _ { i } ^ { k } \}$ is a martingale difference sequence. We have for all $k$ and $i$ + +$$ +\mathbb { E } [ \mathbf { B } _ { i } ^ { k } | \mathbf { x } ^ { k } ] = 0 . +$$ + +Besides, we use Assumption 2.2 for $k = 0$ to bound + +$$ +\| \mathbf { B } _ { i } ^ { 0 } \| \leq \| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { 0 } ) \| + \| \nabla ^ { 2 } F ( \mathbf { x } ^ { 0 } ) \| = 2 L _ { 1 } , +$$ + +and use Assumption 2.3 for $k \geq 1$ to bound + +$$ +\| \mathbf { B } _ { i } ^ { k } \| \leq \| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) - \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k - 1 } ) \| + \| \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) - \nabla ^ { 2 } F ( \mathbf { x } ^ { k - 1 } ) \| \leq 2 \sqrt { \epsilon L _ { 2 } } . +$$ + +From the construction of $\mathbf { H } ^ { k }$ , we have + +$$ +\mathbf { H } ^ { k } - \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) = \sum _ { i = 1 } ^ { s _ { 2 } ^ { \prime } } { \frac { \mathbf { B } _ { i } ^ { 0 } } { s _ { 2 } ^ { \prime } } } + \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 2 } } { \frac { \mathbf { B } _ { i } ^ { j } } { s _ { 2 } } } . +$$ + +Thus using the matrix Azuma’s Inequality in Theorem 7.1 of (Tropp, 2012) and $k \leq p _ { 2 }$ , we have + +$$ +\begin{array} { r l } & { P r \{ \| \mathbf H ^ { k } - \nabla ^ { 2 } F ( { \mathbf x } ^ { k } ) \| \ge t \} \le d \cdot \exp \{ - \frac { t ^ { 2 } / 8 } { \sum _ { i = 1 } ^ { s _ { 2 } ^ { \prime } } 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \prime 2 } + \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 2 } } 4 \epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \} } \\ & { \qquad \le d \cdot \exp \{ - \frac { t ^ { 2 } / 8 } { 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \prime } + 4 p _ { 2 } \epsilon L _ { 2 } / s _ { 2 } } \} . } \end{array} +$$ + +Consequently, we have + +$$ +P r \{ \| \mathbf { H } ^ { k } - \nabla ^ { 2 } F ( \mathbf { x } ^ { k } ) \| \leq \sqrt { \epsilon L _ { 2 } } \} \geq 1 - \delta / K _ { 0 } . +$$ + +by taking √ $t = \sqrt { \epsilon L _ { 2 } }$ , $s _ { 2 } ^ { \prime } = 1 6 L _ { 1 } ^ { 2 } / ( \epsilon L _ { 2 } ) \log ( d K _ { 0 } / \delta )$ , $s _ { 2 } = 3 2 L _ { 1 } / ( \sqrt { \epsilon L _ { 2 } } ) \log ( d K _ { 0 } / \delta )$ , and $p _ { 2 } =$ $L _ { 1 } / ( 2 \sqrt { \epsilon L _ { 2 } } )$ . + +Option I: The proof is similar to the one of Option $\mathrm { I I }$ except that we replace $\mathbf { B } _ { i } ^ { 0 }$ with zero matrix. In such case, the matrix Azuma’s Inequality implies + +$$ +P r \{ \| \mathbf H ^ { k } - \nabla ^ { 2 } F ( \mathbf x ^ { k } ) \| \geq t \} \leq d \cdot \exp \{ - \frac { t ^ { 2 } / 8 } { \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 2 } } 4 \epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \} \leq d \cdot \exp \{ - \frac { t ^ { 2 } / 8 } { 4 p _ { 2 } \epsilon L _ { 2 } / s _ { 2 } } \} . +$$ + +Thus by taking $t = \sqrt { \epsilon L _ { 2 } }$ , $s _ { 2 } = 3 2 \sqrt { n } \log ( d K _ { 0 } / \delta )$ , and $p _ { 2 } = { \sqrt { n } }$ , we have the result. + +Amortized Complexity: In option I, the choice of parameters ensures that: $s _ { 2 } ^ { \prime } \leq p _ { 2 } \times s _ { 2 }$ and in option II: $n \leq p _ { 2 } \times s _ { 2 }$ . Consequently, the amortized stochastic second-order oracle complexity is bounded from above by $2 s _ { 2 }$ . □ + +# B.3 PROOF OF LEMMA 4.2 + +Without loss of generality, we analyze the case $0 \leq k < q _ { 1 }$ for ease of notation. Define for $k \geq 1$ and $i \in [ s _ { 1 } ]$ + +$$ +\mathbf { a } _ { i } ^ { k } \overset { \mathrm { d e f } } { = } \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { i } ( \mathbf { x } ^ { k - 1 } ) - ( \nabla F ( \mathbf { x } ^ { k } ) - \nabla F ( \mathbf { x } ^ { k - 1 } ) ) . +$$ + +$\{ \mathbf { a } _ { i } ^ { k } \}$ is a martingale difference sequence: for all $k$ and $i$ + +$$ +\mathbb { E } [ \mathbf { a } _ { i } ^ { k } | \mathbf { x } ^ { k } ] = 0 . +$$ + +Besides, $\mathbf { a } _ { i } ^ { k }$ has bounded norm: + +$$ +\begin{array} { r l } & { \| \mathbf { a } _ { i } ^ { k } \| \leq \| \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { i } ( \mathbf { x } ^ { k - 1 } ) \| + \| \nabla F ( \mathbf { x } ^ { k } ) - \nabla F ( \mathbf { x } ^ { k - 1 } ) \| } \\ & { \qquad \leq L _ { 1 } \| \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } \| + L _ { 1 } \| \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } \| } \\ & { \qquad \leq 2 L _ { 1 } \sqrt { \epsilon / L _ { 2 } } . } \end{array} +$$ + +From the construction of $\mathbf { g } ^ { k }$ , we have + +$$ +\mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) = \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 1 } } \frac { \mathbf { a } _ { i } ^ { j } } { s _ { 1 } } . +$$ + +Recall the Azuma’s Inequality. Using $k \leq p _ { 1 }$ , we have + +$$ +\begin{array} { r l } & { \quad P r \{ | | \mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) | | \geq t \} } \\ & { \leq \exp \{ - \frac { t ^ { 2 } / 8 } { \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 1 } } \frac { 4 \epsilon L _ { 1 } ^ { 2 } } { L _ { 2 } s _ { 1 } ^ { 2 } } } \} \leq \exp \{ - \frac { t ^ { 2 } / 8 } { 4 \epsilon L _ { 1 } ^ { 2 } p _ { 1 } / \left( s _ { 1 } L _ { 2 } \right) } \} . } \end{array} +$$ + +Take $t = \epsilon / 6$ and denote $c = 1 1 5 2$ . To ensure that + +$$ +\begin{array} { r } { P r \{ \| \mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) \| \ge \epsilon / 6 \} \le \delta / K _ { 0 } , } \end{array} +$$ + +we need $\begin{array} { r } { \frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \log \frac { K _ { 0 } } { \delta } \ \leq \ \frac { \epsilon s _ { 1 } } { p _ { 1 } } } \end{array}$ . The best amortized stochastic first-order oracle complexity can be obtained by solving the following two-dimensional programming: + +$$ +\begin{array} { r l } { \underset { p _ { 1 } \geq 1 , s _ { 1 } \geq 1 } { \operatorname* { m i n } } } & { ( n + s _ { 1 } ( p _ { 1 } - 1 ) ) / p _ { 1 } } \\ { s . t . } & { \frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \log \frac { K _ { 0 } } { \delta } \leq \frac { \epsilon s _ { 1 } } { p _ { 1 } } , } \end{array} +$$ + +which has the soluthat when we take $\begin{array} { r } { s _ { 1 } = \operatorname* { m i n } \{ n , \sqrt { \frac { n } { \epsilon } \cdot \frac { c L _ { 1 } ^ { 2 } \log \frac { K _ { 0 } } { \delta } } { L _ { 2 } } } \} } \end{array}$ $\begin{array} { r } { p _ { 1 } = \operatorname* { m a x } \lbrace 1 , \sqrt { n \epsilon \cdot \frac { L _ { 2 } } { c L _ { 1 } ^ { 2 } \log \frac { K _ { 0 } } { \delta } } } \rbrace } \end{array}$ . Note $s _ { 1 } = n$ $\mathbf { g } ^ { k } = \nabla F ( \mathbf { x } ^ { k } )$ + +The amortized stochastic first-order oracle complexity is obtained by plugging in the choice of $s _ { 1 }$ and $p _ { 1 }$ , which completes the proof. + +# B.4 PROOF OF LEMMA 5.1 + +Without loss of generality, we analyze the case $0 \leq k < q _ { 1 }$ for ease of notation. Define for $k \geq 1$ and $i \in [ s _ { 1 } ]$ + +$$ +\begin{array} { r l } { \mathbf { b } _ { i } ^ { k } \stackrel { \mathrm { d e f } } { = } \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { i } ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } f _ { i } ( \tilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) } & { } \\ { - \left[ \nabla F ( \mathbf { x } ^ { k } ) - \nabla F ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } F ( \tilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) \right] . } & { } \end{array} +$$ + +$\{ \mathbf { b } _ { i } ^ { k } \}$ is a martingale difference sequence: for all $k$ and $i$ + +$$ +\mathbb { E } [ \mathbf { b } _ { i } ^ { k } | \mathbf { x } ^ { k } ] = 0 . +$$ + +Besides, $\mathbf { b } _ { i } ^ { k }$ has bounded norm: + +$$ +\begin{array} { r l } & { \quad \| \mathbf { b } _ { \star } ^ { k } \| \leq \| \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { 1 } ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } f _ { i } ( \widetilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) \| } \\ & { \qquad + \| \nabla F ( \mathbf { x } ^ { k } ) - \nabla F ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } F ( \widetilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) \| . } \\ & { \quad + \| \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { \widetilde { \mathbf { x } } } ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } f _ { i } ( \widetilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) \| \arcsin ^ { k } , } \\ & { \| \nabla f _ { i } ( \mathbf { x } ^ { k } ) - \nabla f _ { i } ( \mathbf { x } ^ { k - 1 } ) - \nabla ^ { 2 } f _ { j } ( \widetilde { \mathbf { x } } ) ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) \| \arcsin ^ { k } } \\ & { \quad = \| \int _ { 0 } ^ { 1 } \left[ \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k - 1 } + t ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) ) - \nabla ^ { 2 } f _ { i } ( \widetilde { \mathbf { x } } ) \right] ( \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } ) d t \| } \\ & { \quad \leq \int _ { 0 } ^ { 1 } L _ { 2 } \bigg \| \mathbf { x } ^ { k } + ( 1 - t ) \mathbf { x } ^ { k - 1 } - \widetilde { \mathbf { x } } \bigg \| d t \cdot \| \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } \| } \\ & { \quad \leq \int _ { 0 } ^ { 1 } \big ( L \| \mathbf { x } ^ { k } - \widetilde { \mathbf { x } } \| + ( 1 - t ) \| \mathbf { x } ^ { k - 1 } - \widetilde { \mathbf { x } } \big \| d t \cdot \| \mathbf { x } ^ { k } - \mathbf { x } ^ { k - 1 } \| } \\ & \quad \leq \int _ { 0 } ^ { 1 } \big ( L \| \mathbf { x } ^ { k } - \widetilde { \mathbf { x } } \end{array} +$$ + +where the first inequality follows from Assumption 2.3 and the last inequality holds because $\| \mathbf { x } ^ { k } - $ $\tilde { \mathbf { x } } \| \leq k r$ and $\| \mathbf { x } ^ { k - 1 } - \bar { \tilde { \mathbf { x } } } \| \leq k r$ , where $r$ is the trust region radius. Similarly, we have $\| \nabla F ( \mathbf { x } ^ { k } ) -$ $\begin{array} { r } { \nabla F ( { \mathbf x } ^ { k - 1 } ) - \nabla ^ { 2 } F ( \tilde { { \mathbf x } } ) ( \dot { \mathbf x } ^ { k } - { \mathbf x } ^ { k - 1 } ) \| \leq L _ { 2 } k r ^ { 2 } } \end{array}$ . Thus, we bound + +$$ +\| \mathbf { b } _ { i } ^ { k } \| \leq 2 L _ { 2 } k r ^ { 2 } \leq 2 p _ { 1 } \epsilon +$$ + +From the construction of $\mathbf { g } ^ { k }$ , we have + +$$ +\mathbf { g } ^ { k } - \nabla F ( \mathbf { x } ^ { k } ) = \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 1 } } \frac { \mathbf { b } _ { i } ^ { j } } { s _ { 1 } } . +$$ + +We use $k \leq p _ { 1 }$ and the Azuma’s inequality to bound + +$$ +\begin{array} { r l } & { \quad P r \{ | | \mathbf { g } ^ { k } - \nabla F ( { \mathbf { x } } ^ { k } ) | | \geq t \} } \\ & { \leq \exp \{ - \frac { t ^ { 2 } / 8 } { \sum _ { j = 1 } ^ { k } \sum _ { i = 1 } ^ { s _ { 1 } } \frac { 4 p _ { 1 } ^ { 2 } \epsilon ^ { 2 } } { s _ { 1 } ^ { 2 } } } \} \leq \exp \{ - \frac { t ^ { 2 } / 8 } { 4 \epsilon ^ { 2 } p _ { 1 } ^ { 3 } / s _ { 1 } } \} . } \end{array} +$$ + +Thus, by taking $t = \epsilon / 6$ and $c = 1 1 5 2$ , we need $\begin{array} { r } { \frac { s _ { 1 } } { p _ { 1 } ^ { 3 } } \geq c \log \frac { K _ { 0 } } { \delta } } \end{array}$ . Further we want $s _ { 1 } p _ { 1 } \simeq \mathcal { O } ( n )$ and hence we take $p _ { 1 } = n ^ { 0 . 2 5 }$ and $\begin{array} { r } { s _ { 1 } = n ^ { 0 . 7 5 } c \log { \frac { \dot { K _ { 0 } } } { \delta } } } \end{array}$ . The amortized stochastic first-order oracle complexity is bounded by $2 s _ { 1 }$ . + +# C ANALYSIS OF METAALGORITHM 7 + +We first show that INEXACTTR $\mathbf { W E A K }$ finds an $\mathcal { O } ( \epsilon )$ -SOSP in $\mathcal { O } ( 1 / \epsilon ^ { 1 . 5 } )$ iterations with probability at least $2 / 3$ as stated in the following lemma. + +Lemma C.1. Consider problem $( ~ )$ under Assumptions 2.1-2.3. Suppose that the differential estimators $\mathbf { g } ^ { k }$ and $\mathbf { H } ^ { k }$ satisfy Eqn. (9) with probability at least $\begin{array} { r } { ( 1 - \frac { \zeta } { 4 K } ) } \end{array}$ . Besides, suppose that $\tilde { \mathbf { h } } ^ { k }$ is an approximate solution to (8) such that w.p. $\begin{array} { r } { ( 1 - \frac { \zeta } { 4 K } ) } \end{array}$ , + +$$ +\langle \mathbf { g } ^ { k } , \tilde { \mathbf { h } } ^ { k } \rangle + \frac { 1 } { 2 } \langle \mathbf { H } ^ { k } \tilde { \mathbf { h } } ^ { k } , \tilde { \mathbf { h } } ^ { k } \rangle \leq \langle \mathbf { g } ^ { k } , \mathbf { h } ^ { k } \rangle + \frac { 1 } { 2 } \langle \mathbf { H } ^ { k } \mathbf { h } ^ { k } , \mathbf { h } ^ { k } \rangle + \frac { \epsilon ^ { 1 . 5 } } { \sqrt { L _ { 2 } } } , +$$ + +where $\mathbf { h } ^ { k }$ is a global solution to (8). By setting $\zeta = 1 / 3$ , $r = \sqrt { \epsilon / L _ { 2 } }$ , and $K = 4 \sqrt { L _ { 2 } } \Delta / \epsilon ^ { 1 . 5 }$ , INEXACTTR $\mathbf { \partial } \cdot \mathbf { W } \mathbf { E } \mathbf { A } \mathbf { K }$ outputs a 500-SOSP w.p. at least $2 / 3$ . + +Proof. Combining (11) and (24), we have w.p. $\begin{array} { r } { ( 1 - \frac { \zeta } { 4 K } ) } \end{array}$ + +$$ +\begin{array} { r } { F ( { \mathbf x } ^ { k + 1 } ) \le F ( { \mathbf x } ^ { k } ) + \langle { \mathbf g } ^ { k } , { \mathbf h } ^ { k } \rangle + \displaystyle \frac { 1 } { 2 } \langle { \mathbf H } ^ { k } { \mathbf h } ^ { k } , { \mathbf h } ^ { k } \rangle + \displaystyle \frac { \epsilon ^ { 1 . 5 } } { \sqrt { L _ { 2 } } } } \\ { + \displaystyle \frac { L _ { 2 } } { 6 } \| \tilde { \mathbf h } ^ { k } \| ^ { 3 } + \| \nabla _ { k } \| \| \tilde { \mathbf h } ^ { k } \| + \displaystyle \frac { 1 } { 2 } \| \nabla _ { k } ^ { 2 } \| \| \tilde { \mathbf h } ^ { k } \| ^ { 2 } , } \end{array} +$$ + +where $\mathbf { h } ^ { k }$ is a global solution to the QCQP (8) and $\tilde { \mathbf { h } } ^ { k }$ is an approximate solution satisfying (24). We let $\lambda ^ { k }$ denote the dual variable corresponding to the global solution $\mathbf { h } ^ { k }$ as defined in Lemma 2.1. We note that $\mathbf { h } ^ { k }$ and $\lambda ^ { k }$ are used only in our analysis. The INEXACT $\mathrm { w e A K }$ algorithm only requires the approximate solution $\tilde { \mathbf { x } } ^ { k }$ without knowledge of $\mathbf { h } ^ { k }$ or $\lambda ^ { k }$ . + +By the assumption that (9) holds with probability $\textstyle { \left( { 1 - { \frac { \zeta } { 4 K } } } \right) }$ and the fact that $\| \tilde { \mathbf { h } } ^ { k } \| \le r = \sqrt { L _ { 2 } \epsilon }$ , we have w.p. $\textstyle { \left( { 1 - { \frac { \zeta } { 4 K } } } \right) }$ , + +$$ +\frac { L _ { 2 } } { 6 } \| \tilde { \mathbf { h } } ^ { k } \| ^ { 3 } + \| \nabla _ { k } \| \| \tilde { \mathbf { h } } ^ { k } \| + \frac { 1 } { 2 } \| \nabla _ { k } ^ { 2 } \| \| \tilde { \mathbf { h } } ^ { k } \| ^ { 2 } \leq \frac { \epsilon ^ { 1 . 5 } } { 2 \sqrt { L _ { 2 } } } . +$$ + +Plugging (16), (17), and (26) into (25) and applying the union bound, we have w.p. at least $\begin{array} { r } { ( 1 - \frac { \zeta } { 2 K } ) } \end{array}$ + +$$ +F ( { \mathbf x } ^ { k + 1 } ) \le F ( { \mathbf x } ^ { k } ) - \frac { L _ { 2 } \lambda ^ { k } \| { \mathbf h } ^ { k } \| ^ { 2 } } { 4 } + \frac { 3 \epsilon ^ { 1 . 5 } } { 2 \sqrt { L _ { 2 } } } = F ( { \mathbf x } ^ { k } ) - \frac { L _ { 2 } \lambda ^ { k } r ^ { 2 } } { 4 } + \frac { 3 \epsilon ^ { 1 . 5 } } { 2 \sqrt { L _ { 2 } } } , +$$ + +where the second inequality follows from (15): + +$$ +0 = \lambda ^ { k } ( \| \mathbf h ^ { k } \| - r ) = \lambda ^ { k } ( \| \mathbf h ^ { k } \| - r ) ( \| \mathbf h ^ { k } \| + r ) = \lambda ^ { k } ( \| \mathbf h ^ { k } \| ^ { 2 } - r ^ { 2 } ) . +$$ + +Summing inequality (27) from $k = 0$ to $K - 1$ and applying the union bound, we have w.p. at least $\left( 1 - \zeta / 2 \right)$ , + +$$ +\frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \lambda ^ { k } \le \frac { 4 ( F ( \mathbf { x } ^ { 0 } ) - F ( \mathbf { x } ^ { K + 1 } ) ) } { L _ { 2 } r ^ { 2 } K } + \frac { 6 \epsilon ^ { 1 . 5 } } { L _ { 2 } ^ { 1 . 5 } r ^ { 2 } } \le \frac { 4 \Delta } { \epsilon K } + \frac { 6 \sqrt { \epsilon } } { \sqrt { L _ { 2 } } } , +$$ + +where the second inequality follows from Assumption 2.1 and our choice of the trust region radius. By sampling $\bar { k }$ uniformly from $\{ 0 , \ldots , K - 1 \}$ , we obtain + +$$ +\mathbb { E } [ \lambda ^ { \bar { k } } ] = \frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \lambda ^ { k } , +$$ + +where the expectation is taken over the randomness of √ $\bar { k }$ . Combining (29) and (30) and taking $K = 4 \Delta \sqrt { L _ { 2 } } / \epsilon ^ { 1 . 5 }$ , we have w.p. at least $\left( 1 - \zeta / 2 \right)$ + +$$ +\mathbb { E } [ \lambda ^ { \bar { k } } ] \leq \frac { 7 \sqrt \epsilon } { \sqrt { L _ { 2 } } } . +$$ + +Since $\lambda ^ { k }$ is always no-negative, by Markov’s inequality and the union bound, with probability at least $1 - \zeta$ , we have + +$$ +\lambda ^ { \bar { k } } \leq \frac { 1 4 \sqrt { \epsilon } } { \zeta \sqrt { L _ { 2 } } } . +$$ + +By taking $\zeta = 1 / 3$ , we have w.p. at least $2 / 3 , \lambda ^ { \bar { k } } \leq 4 2 \sqrt { \epsilon / L _ { 2 } }$ . The rest of the proof is similar to Theorem 3.1 and we have the result. + +The following theorem shows that MetaAlgorithm 7 finds an $\mathcal { O } ( \epsilon )$ -SOSP w.p. $( 1 - \delta )$ after running INEXACTTR $\mathbf { \partial } \cdot \mathbf { W } \mathbf { E } \mathbf { A } \mathbf { K }$ for $\Theta ( \log ( 1 / \delta ) )$ times. + +Theorem C.1 (Iteration Complexity of MetaAlgorithm 7). In the same setting as Lemma C.1, let $\begin{array} { r } { T = \frac { 3 } { 2 } \mathrm { l o g } ( 2 / \delta ) } \end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0$ , and 32L21L2 log(4d/δ). Then MetaAlgorithm 7 finds a 600-SOSP with probability at least $( 1 - \delta )$ . + +Proof. By Lemma C.1 and our choice of $T$ , with probability $\left( 1 - \delta / 2 \right)$ , at least one of $\mathbf { x } ^ { t }$ is a $5 0 0 \epsilon$ -SOSP. On the other hand, since √ $\psi _ { t } ( \tilde { \mathbf { v } } ^ { t } ) \leq \psi _ { t } ( \mathbf { v } ^ { t } ) + \sqrt { \epsilon L _ { 2 } }$ with probability $1 - \delta / 4$ , if $\psi _ { t } ( \tilde { \mathbf { v } } ^ { t } ) \geq - \sqrt { c _ { 2 } \epsilon L _ { 2 } }$ , then, w.p. $1 - \delta / 4$ , + +$$ +\psi _ { t } ( \mathbf { v } ^ { t } ) \geq \psi _ { t } ( \tilde { \mathbf { v } } ^ { t } ) - \sqrt { \epsilon L _ { 2 } } \geq - \sqrt { c _ { 2 } \epsilon L _ { 2 } } - \sqrt { \epsilon L _ { 2 } } \geq - \sqrt { 5 5 0 \epsilon L _ { 2 } } , +$$ + +where the last inequality follows from our choice of $c _ { 2 }$ . + +Option I: Since $\mathbf { H } ^ { t } = \nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ is the full Hessian, $\psi _ { t } ( \mathbf { v } ^ { t } )$ is the smallest eigenvalue of $\nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ . +Applying the union bound, we conclude that MetaAlgorithm 7 outputs a $6 0 0 \epsilon$ -SOSP w.p. $( 1 - \delta )$ . + +Option II: Let $\mathbf { B } _ { i } : = \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { t } ) - \nabla ^ { 2 } F ( \mathbf { x } ^ { t } )$ for $i \in \mathcal { H }$ , then + +$$ +\mathbf { H } ^ { t } - \boldsymbol { \nabla } ^ { 2 } F ( \mathbf { x } ^ { t } ) = \frac { 1 } { s } \sum _ { i = 1 } ^ { s } \mathbf { B } _ { i } . +$$ + +By Assumption 2.2, we have + +$$ +\| \mathbf { B } _ { i } \| \leq \| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { t } ) \| + \| \nabla ^ { 2 } F ( \mathbf { x } ^ { t } ) \| \leq 2 L _ { 1 } . +$$ + +Applying the matrix Azuma’s Inequality in Theorem 7.1 of Tropp (2012) leads to + +$$ +P r \{ \| \mathbf { H } ^ { t } - \nabla ^ { 2 } F ( \mathbf { x } ^ { t } ) \| \ge \sqrt { \epsilon L _ { 2 } } \} \le d \cdot \exp ( \frac { - \epsilon L _ { 2 } s } { 3 2 L _ { 1 } ^ { 2 } } ) . +$$ + +By taking $\begin{array} { r } { s = \frac { 3 2 L _ { 1 } ^ { 2 } } { \epsilon L _ { 2 } } \mathrm { l o g } ( 4 d / \delta ) } \end{array}$ and applying the union bound, we have with probability $1 - \delta$ + +$$ +\nabla ^ { 2 } F ( \mathbf { x } ^ { t } ) \approx \mathbf { H } ^ { t } - \sqrt { \epsilon L _ { 2 } } \mathbf { I } \approx ( \psi _ { t } ( \mathbf { v } ^ { t } ) - \sqrt { \epsilon L _ { 2 } } ) \mathbf { I } \approx - \sqrt { 6 0 0 \epsilon L _ { 2 } } \mathbf { I } , +$$ + +where the last inequality follows from (33). This completes the proof. + +# D PROOF OF THEOREM 6.1 + +Proof. We first analyze the computational cost of Lanczos method. By Corollary 2 in (Carmon & Duchi, 2018), for any desired accuracy ˜, Lanczos method achieves this accuracy in $\begin{array} { r } { \mathcal { O } ( \frac { r } { \sqrt { \tilde { \epsilon } } } \mathrm { l o g } \frac { r \sqrt { d } } { \tilde { \epsilon } p } ) } \end{array}$ Lanczos iterations w.p. at least $( 1 - p )$ . Without loss of generality, we assume that the number of Lanczos iterations is strictly smaller than the dimension $d$ , otherwise the QCQP subproblem can be solved exactly. We note that each Lanczos iteration involves computation of one matrix-vector product. Therefore, to satisfy the condition (24) in Lemma C.1, one needs to evaluate $\tilde { \mathcal { O } } ( 1 / ( L _ { 2 } \epsilon ) ^ { 0 . 2 5 } )$ Hessian-vector products of the form $\mathbf { H } ^ { k } \mathbf { v }$ . Similarly, to solve (10) up to accuracy $\sqrt { \epsilon L _ { 2 } }$ w.h.p., one needs to evaluate $\tilde { \mathcal { O } } ( 1 / ( L _ { 2 } \epsilon ) ^ { 0 . 2 5 } )$ Hessian-vector products of the form $\mathbf { H } ^ { t } \mathbf { v }$ . + +In MetaAlgorithm 7, to verify whether the candidate solution $\mathbf { v } _ { } ^ { t }$ is indeed an $\mathcal { O } ( \epsilon )$ -SOSP, one needs at most ${ \mathcal { O } } ( n )$ stochastic gradient evaluations and $\mathcal { O } ( \operatorname* { m i n } \{ n , \log ( 4 d / \delta ) L _ { 1 } ^ { 2 } / ( L _ { 2 } \epsilon ) \} / ( L _ { 2 } \epsilon ) ^ { 0 . 2 5 } ) )$ stochastic Hessian-vector product evaluations, where the latter one follows from the proof of Theorem 7. We proceed to analyze the computational complexity of the INEXACTTRWEAK procedure. Recall that the iteration complexity of MetaAlgorithm 7 is $\mathcal { O } ( \log ( 1 / \delta ) / \epsilon ^ { 1 . 5 } )$ . Following Lemma 4.2 and Corollary 4.1, the stochastic first-order oracle complexity is $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 5 } , \sqrt { n } / \epsilon ^ { 2 } \} \mathrm { l o g } ( 1 / \delta ) )$ . Following the proof of Lemma 4.1 and Corollary 4.1, when $p _ { 2 } = 1$ , the overall stochastic Hessian sample complexity is $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 5 } , 1 / \epsilon ^ { 2 . 5 } \} \log ( 1 / \delta ) )$ . Since it takes $\tilde { \mathcal { O } } ( 1 / \epsilon ^ { 0 . 2 5 } )$ Lanczos iterations to meet the condition (24) as stated above, the overall stochastic Hessian-vector product oracle complexity is $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 7 5 } \} \log ( 1 / \delta ) )$ . Combining the stochastic first-order and Hessian-vector product complexities, the overall runtime is $\tilde { \mathcal { O } } ( d \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 7 5 } + \sqrt { n } / \epsilon ^ { 2 } \} \log ( 1 / \delta ) )$ . □ + +# E A FASTER HESSIAN-VECTOR BASED QCQP SOLVER + +We recall from the previous section that, to approximately solve a quadratic subproblem in ${ \mathrm { { S T R } } } _ { \mathrm { { f r e e } } }$ , Lanczos method requires $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ n / \epsilon ^ { 0 . 2 5 } , 1 / \bar { \epsilon } ^ { 1 . 2 5 } \} )$ stochastic Hessian-vector product evaluations. In this section, we propose a faster QCQP solver with an $\tilde { \mathcal { O } } ( \operatorname* { m i n } \{ n + n ^ { 0 . 7 5 } / \epsilon ^ { 0 . 2 5 } , 1 / \epsilon \} )$ complexity. Replacing Lanczos method with this QCQP solver in $\operatorname { S T R } _ { \mathrm { f r e e } }$ results in a faster Hessian-free method, which we refer to as ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ . + +# E.1 CONVEX REFORMULATION OF QCQP + +To begin with, we present a known result that is key to achieve faster algorithm than Lanczos method. We summarize this result in Lemma E.1 which shows that the trust region subproblem is equivalent to a convex QCQP. + +Lemma E.1. (Convex Reformulation of QCQP (Flippo & Jansen, 1996; Wang & Xia, 2017)) Denote $\lambda _ { \mathrm { m i n } }$ as the smallest eigenvalue of $\mathbf { H } ^ { k }$ . Let $\mathbf { u } _ { \mathrm { m i n } }$ be a corresponding eigenvector. W.l.o.g., we assume that $\langle \mathbf { g } ^ { k } , \mathbf { u } _ { \mathrm { m i n } } \rangle \leq 0$ . Let $\mu = \operatorname* { m i n } \{ \lambda _ { \operatorname* { m i n } } , 0 \}$ . Then the QCQP (8) is equivalent to the convex problem + +$$ +\operatorname* { m i n } _ { \substack { \mathbf { h } \in \mathbb { R } ^ { d } , \| \mathbf { h } \| \leq r } } q ^ { k } ( \mathbf { h } ) = \langle \mathbf { g } ^ { k } , \mathbf { h } \rangle + \frac { 1 } { 2 } \langle ( \mathbf { H } ^ { k } - \mu I ) \mathbf { h } , \mathbf { h } \rangle + \frac { 1 } { 2 } \mu r ^ { 2 } +$$ + +in the sense that (8) and (38) have the same minimum function value. Moreover, when $\lambda _ { \operatorname* { m i n } } < 0 ,$ , for any optimal solution of (38), denoted by $\mathbf { h } _ { c } ^ { k }$ , + +$$ +\mathbf { h } _ { c } ^ { k } + \frac { \sqrt { \langle \mathbf { h } _ { c } ^ { k } , \mathbf { u } _ { \mathrm { m i n } } \rangle ^ { 2 } - \| \mathbf { u } _ { \mathrm { m i n } } \| ^ { 2 } \big ( \| \mathbf { h } _ { c } ^ { k } \| ^ { 2 } - r ^ { 2 } \big ) } - \langle \mathbf { h } _ { c } ^ { k } , \mathbf { u } _ { \mathrm { m i n } } \rangle } { \| \mathbf { u } _ { \mathrm { m i n } } \| ^ { 2 } } \mathbf { u } _ { \mathrm { m i n } } +$$ + +is a global minimizer of the original QCQP (8). + +To perform the above reformulation, one needs to compute the exact eigenpair $\left( \lambda _ { \operatorname* { m i n } } , \mathbf { u } _ { \operatorname* { m i n } } \right)$ . Nevertheless, as we shall see, it is sufficient to compute an approximate eigenpair $( \tilde { \lambda } , \tilde { \mathbf { u } } )$ such that + +$$ +\lambda _ { \operatorname* { m i n } } \leq \tilde { \lambda } = \tilde { \mathbf { u } } ^ { T } \mathbf { H } ^ { k } \tilde { \mathbf { u } } \leq \lambda _ { \operatorname* { m i n } } + \tilde { \epsilon } , +$$ + +where ˜ is a target accuracy to be determined later. We note that $\tilde { \epsilon } \leq 2 L _ { 2 }$ w.l.o.g. since $\| \mathbf { H } ^ { k } \| \leq L _ { 2 }$ . With this approximate eigenpair, it remains to solve the following convex problem + +$$ +\operatorname* { m i n } _ { \mathbf { h } \in \mathbb { R } ^ { d } , \| \mathbf { h } \| \leq r } \tilde { q } ^ { k } ( \mathbf { h } ) = \langle \mathbf { g } ^ { k } , \mathbf { h } \rangle + \frac { 1 } { 2 } \langle ( \mathbf { H } ^ { k } - \tilde { \mu } I ) \mathbf { h } , \mathbf { h } \rangle + \frac { 1 } { 2 } \tilde { \mu } r ^ { 2 } +$$ + +where $\tilde { \mu } = \mathrm { m i n } \{ 0 , \tilde { \lambda } - \tilde { \epsilon } \}$ . One can check that the problem (41) well approximates (38). + +Corollary E.1. Let $q _ { * } ^ { k }$ and $\tilde { q } _ { * } ^ { k }$ be the minimum function value of (38) and (41), respectively. Assume $\lambda _ { \operatorname* { m i n } } \leq \tilde { \lambda } = \tilde { \mathbf { u } } ^ { T } \mathbf { H } ^ { k } \tilde { \mathbf { u } } \leq \lambda _ { \operatorname* { m i n } } + \tilde { \epsilon } .$ . Then + +$$ +| q _ { * } ^ { k } - \tilde { q } _ { * } ^ { k } | \leq \tilde { \epsilon } r ^ { 2 } . +$$ + +We note that the above convex reformulation approach divides an indefinite QCQP into two subproblems: (i) computation of an approximate eigenpair $( \tilde { \lambda } , \tilde { \mathbf { u } } )$ ; (ii) solving the convex problem (41). As we shall see, by exploiting the finite-sum structure of the Hessian $\mathbf { H } ^ { k }$ , these two subproblems can be efficiently solved. We treat these two subproblems in the following two subsections, respectively. + +# E.2 FINDING THE SMALLEST EIGENVECTOR + +To find a unit vector that satisfies requirement (40), we resort to the AppxPCA method (Allen-Zhu & Li, 2016), which first finds an approximate eigenvalue $\lambda = \lambda _ { \operatorname* { m i n } } - \tilde { \epsilon }$ via binary search and then applies Power method to the positive definite matrix $( \mathbf { H } ^ { k } - \lambda I ) ^ { - 1 }$ for a logarithmic number of iterations. Computing $( \mathbf { H } ^ { k } - \lambda I ) ^ { - 1 } \mathbf { v }$ for any vector $\mathbf { v }$ is equivalent to solving the $\tilde { \epsilon }$ -strongly convex problem (Allen-Zhu & Li, 2018) + +$$ +\operatorname* { m i n } _ { \mathbf { u } } \phi ^ { k } ( \mathbf { u } ) : = \frac { 1 } { 2 } \mathbf { u } ^ { T } ( \mathbf { H } ^ { k } - \lambda I ) \mathbf { u } - \langle \mathbf { v } , \mathbf { u } \rangle +$$ + +We note that $\begin{array} { r } { \mathbf { H } ^ { k } = \frac { 1 } { | \cal { S } | } \sum _ { i \in \cal { S } } \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) } \end{array}$ . Specifically, in $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ , either $| S | = n$ (i.e., $\mathbf { H } ^ { k }$ is the full Hessian) or $| S | = \tilde { \mathcal { O } } ( L _ { 1 } ^ { 2 } / ( L _ { 2 } \epsilon ) )$ by Lemma 4.1. Therefore, $\phi ^ { k } ( \cdot )$ can be expressed as sum of non-convex functions + +$$ +\phi ^ { k } ( \mathbf { u } ) = \frac { 1 } { | S | } \sum _ { i \in S } \phi _ { i } ^ { k } ( \mathbf { u } ) = \frac { 1 } { | S | } \sum _ { i \in S } \left( \frac { 1 } { 2 } \mathbf { u } ^ { T } ( \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) - \lambda I ) \mathbf { u } - \langle \mathbf { v } , \mathbf { u } \rangle \right) . +$$ + +By observing that each $\phi _ { i } ^ { k }$ is non-convex and has $\left( 4 L _ { 2 } \right)$ -Lipschitz gradient, we can use KatyushaXS (Allen-Zhu, 2018a) to solve problem (43) in $\tilde { \mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \sqrt { L _ { 2 } / \tilde { \epsilon } } )$ stochastic Hessianvector product (i.e., $\nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) \mathbf { u } )$ evaluations. The following result is taken from (Agarwal et al., 2017, Section G.3), which gives the overall computation complexity of AppxPCA. + +# Algorithm 9 Fast QCQP Solver + +Input: $\mathbf { H } ^ { k } , \mathbf { g } ^ { k } , r , \tilde { \epsilon } , \tilde { \epsilon } _ { 1 }$ + +1: Use AppxPCA to find $( \tilde { \lambda } , \tilde { \mathbf { u } } )$ satisfying (40), in which the matrix inverse is solved by KatyushaXS; +2: Use KatyushaXW to solve (41) up to accuracy $\tilde { \epsilon } _ { 1 }$ , i.e., find a vector $\tilde { \mathbf { h } }$ such that $\tilde { q } ^ { k } ( \mathbf { h } ) - \tilde { q } _ { * } ^ { k } \leq \tilde { \epsilon } _ { 1 }$ with high probability; +3: Return $\tilde { \mathbf { h } } + ( \sqrt { \langle \tilde { \mathbf { h } } , \tilde { \mathbf { u } } \rangle ^ { 2 } - \| \tilde { \mathbf { u } } \| ^ { 2 } ( \| \tilde { \mathbf { h } } \| ^ { 2 } - r ^ { 2 } ) } - \langle \tilde { \mathbf { h } } , \tilde { \mathbf { u } } \rangle ) \tilde { \mathbf { u } } / \| \tilde { \mathbf { u } } \| ^ { 2 } .$ + +# Algorithm 10 STRfree+ + +1: In the same setting as MetaAlgorithm 7, +2: construct gradient estimator $\mathbf { g } ^ { k }$ by Estimator 4; +3: construct Hessian estimator $\mathbf { H } ^ { k }$ by +4: Option I: $\mathbf { H } ^ { k } : = \nabla ^ { 2 } F ( \mathbf { x } ^ { k } )$ ; +5: Option II: Draw $s$ samples indexed by $\mathcal { H }$ and let $\mathbf { H } ^ { k } : = \nabla ^ { 2 } f ( \mathbf { x } ^ { k } ; \mathcal { H } )$ ; +6: use Algorithm 9 to solve QCQP subproblems. + +Lemma E.2. Let $\begin{array} { r } { \mathbf { H } ^ { k } = \frac { 1 } { | \mathcal { S } | } \sum _ { i \in \cal S } \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) \in \mathbb { R } ^ { d \times d } } \end{array}$ , where $\| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) \| \leq L _ { 2 }$ . With probability at least $1 - p ,$ , AppxPCA produces a unit vector u satisfying $\mathbf { u } ^ { T } \mathbf { H } ^ { k } \mathbf { u } \leq \lambda _ { \operatorname* { m i n } } + \tilde { \epsilon } .$ . The total stochastic Hessian-vector product oracle complexity is $\tilde { \mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \sqrt { L _ { 2 } / \tilde { \epsilon } } )$ . + +# E.3 SOLVING THE CONVEX QCQP + +In what follows, we show that the convex problem (41) can be solved efficiently. We first observe that problem (41) has a finite-sum structure and can be rewritten as an unconstrained problem of the form + +$$ +\operatorname* { m i n } _ { \mathbf { h \in \mathbb { R } } ^ { d } } \frac { 1 } { | \mathcal { S } | } \sum _ { i \in \mathcal { S } } \tilde { q } _ { i } ^ { k } ( \mathbf { h } ) + \Psi ( \mathbf { h } ) = \frac { 1 } { | \mathcal { S } | } \sum _ { i \in \mathcal { S } } \Big ( \langle \mathbf { g } ^ { k } , \mathbf { h } \rangle + \frac { 1 } { 2 } \langle ( \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) - \tilde { \mu } I ) \mathbf { h } , \mathbf { h } \rangle + \frac { 1 } { 2 } \tilde { \mu } r ^ { 2 } \Big ) + \Psi ( \mathbf { h } ) , +$$ + +where $\Psi ( { \bf h } ) = 0$ if $\| \mathbf { h } \| \leq r$ , otherwise $\Psi ( \mathbf { h } ) \ = \ + \infty$ . We note that each $\tilde { q } _ { i } ^ { k } ( \mathbf { h } )$ in (45) has $\left( 4 L _ { 2 } \right)$ -Lipschitz continuous gradient since $\| \nabla ^ { 2 } f _ { i } ( \mathbf { x } ^ { k } ) \| \leq L _ { 2 }$ and $\tilde { \epsilon } \leq 2 L _ { 2 }$ . Therefore, we can use KatyushaX $\mathrm { w }$ (Allen-Zhu, 2018a) to solve (45). By (Allen-Zhu, 2018a, Theorem 4.6), KatyushaXW finds a point h such that $\mathbb { E } [ \tilde { q } ^ { k } ( \mathbf { h } ) - \tilde { q } _ { * } ^ { k } ] \leq \tilde { \epsilon } _ { 1 }$ using $\tilde { \mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \sqrt { L _ { 2 } } \cdot r / \sqrt { \tilde { \epsilon } _ { 1 } } )$ stochastic Hessianvector products, where $\tilde { \epsilon } _ { 1 }$ is the target accuracy to be determined later. + +# E.4 PUTTING IT ALL TOGETHER + +The complete procedure of our fast QCQP solver is summarized in Algorithm 9. Combining all the above results and setting $r = \sqrt { \epsilon / L _ { 2 } }$ , $\tilde { \epsilon } = \sqrt { \epsilon L _ { 2 } } / 2$ , and $\tilde { \epsilon } _ { 1 } = \tilde { \epsilon } r ^ { 2 }$ , one can find an approximate solution to QCQP (8) satisfying requirement (24) in ${ \tilde { \mathcal { O } } } ( | S | + | S | ^ { 3 / 4 } L _ { 2 } ^ { 0 . 2 5 } / \epsilon ^ { 0 . 2 5 } )$ stochastic Hessianvector product evaluations. By replacing Lanczos method with this solver in $\operatorname { S T R } _ { \mathrm { f r e e } }$ , we derive a new Hessian-free method called ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ , which is summarized in Algorithm 10. The following theorem establishes the overall runtime complexity of ${ \mathrm { S T R } } _ { \mathrm { f r e e } ^ { + } }$ for finding an $\epsilon$ -SOSP. + +Theorem E.1. Consider Algorithm 10 for solving problem (1). Let $\zeta = 1 / 3$ , $r = \sqrt { \epsilon / L _ { 2 } }$ , $K =$ $4 \sqrt { L _ { 2 } } \Delta / \epsilon ^ { 1 . 5 }$ , $\begin{array} { r } { T = \frac { 3 } { 2 } \mathrm { { l o g } } ( 2 / \delta ) } \end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0 \mathrm { \Omega }$ , and 32L21L2 log(4d/δ). The hyper-parameters√ in Estimator 4 are set to the same values as those in Lemma 4.2. Besides, let $\tilde { \epsilon } = \sqrt { \epsilon L _ { 2 } } / 2$ and $\tilde { \epsilon } _ { 1 } = \tilde { \epsilon } r ^ { 2 }$ in Algorithm 9. To find an $O ( \epsilon ) { - } S O S P ~ w . p$ . at least $1 - \delta$ , the runtime complexity is $\tilde { \mathcal { O } } ( d \mathrm { m i n } \{ n / \epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 5 } + \sqrt { n } / \epsilon ^ { 2 } \} \mathrm { l o g } ( 1 / \delta ) )$ . + +Proof. The proof directly follows from that in Sec. D. + +We compare the runtime complexity of $\operatorname { S T R } _ { \mathrm { f r e e } }$ and ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ with existing Hessian free methods in Table 2. One can see that $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ strictly outperforms Hessian-free Cubic. Besides, $\mathrm { { S T R } _ { \mathrm { { f r e e } } } }$ outperforms Fast-Cubic if $n \ge \Omega ( 1 / \epsilon ^ { 4 / 3 } )$ , which is a mild condition for large-scale problems in the moderate accuracy case. ${ \mathrm { S T R } } _ { \mathrm { f r e e } ^ { + } }$ strictly outperforms both Hessian-free Cubic and Fast-Cubic. We note that the runtime analyses in (Tripuraneni et al., 2018; Zhou & Gu, 2019) rely on an additional assumption which states that for all $\mathbf { x }$ , with probability 1, + +![](images/95ff5517569e6471795a7c5ec47d8ab253bfdb1a9cc4c1823c6362cb6ef03d6f.jpg) +Figure 4: Comparison of gradient norm on both the non-convex logistic regression and nonlinear least square problems. + +$$ +\begin{array} { r } { \| \nabla f _ { i } ( \mathbf { x } ) - \nabla F ( \mathbf { x } ) \| \leq \sigma . } \end{array} +$$ + +Under this additional assumption, one can use the same argument as in Section B.2 and B.3 to prove that ${ \mathrm { { S T R } } } _ { \mathrm { { f r e e } } }$ achieves a runtime complexity of $\tilde { \mathcal { O } } ( d \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 7 5 } , n ^ { 0 . 5 } / \epsilon ^ { 2 } + 1 / \epsilon ^ { 2 . 7 5 } , 1 / \epsilon ^ { 3 } \} ) ^ { 1 }$ . Similarly, the runtime complexity of ${ \mathrm { S T R } } _ { \mathrm { f r e e } ^ { + } }$ would be $\tilde { \mathcal { O } } ( d \operatorname* { m i n } \{ n / \epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \epsilon ^ { 1 . 7 5 } , 1 / \epsilon ^ { 2 . 5 } +$ $\sqrt { n } / \epsilon ^ { 2 } , \dot { 1 } / \epsilon ^ { 3 } \} ,$ ). In this sense, both ${ \mathrm { { S T R } } } _ { \mathrm { { f r e e } } }$ and ${ \mathrm { S T R } } _ { \mathrm { f r e e } } +$ outperform Stochastic Cubic and $\mathrm { S R V R C _ { \mathrm { f r e e } } }$ . + +Table 3: Descriptions of the five testing datasets. + +
#sample#feature#sample#feature
a9a32.561123w8a49,749300
ijcnn49,99022phishing7,60468
codrna28.3058mnist60,000784
epsilon40,0002,000
+ +# F ADDITIONAL EXPERIMENTAL RESULTS + +# F.1 MORE EXPERIMENTAL DETAILS + +Descriptions of Testing Datasets. We briefly introduce the seven testing datasets in the manuscript. Among them, six datasets are provided by the LibSVM website2, including (a9a, ijcnn, codrna, phishing, w8a and epsilon). The detailed information is summarized in Table 3. We can observe that these datasets are different from each other in feature dimension, training samples, etc. + +Experimental Settings. In the manuscript, following SVRC (Zhou et al., 2018c) and LiteSVRC (Zhou et al., 2018b), we select hyper parameters from a set, namely $s _ { 1 }$ from $\{ 0 . 2 n , 0 . 6 n , n \}$ $s _ { 2 }$ from $\lbrace 0 . 0 1 n , 0 . 1 n , 0 . 2 n \rbrace$ , $p _ { 1 }$ and $p _ { 2 }$ from $\{ 0 . 0 1 n ^ { 0 . 5 } , 0 . 0 5 n ^ { 0 . 5 } , 0 . 1 n ^ { 0 . 5 } \}$ . For the Hessian estimation at the beginning of each $p _ { 2 }$ iterations, we use full Hessian. Similarly, for the gradient estimation at the beginning of each $p _ { 1 }$ iterations, we adopt the full gradient as the gradient estimation. + +Memory Analysis. SVRC, Lite-SVRC, and our method need to store the previous and current gradient and Hessian and thus their memory complexity is $2 ( d ^ { 2 } + d )$ . TR, CR (ARC) and SCR need to compute current and Hessian and thus has complexity $d ^ { 2 } + d$ . So these memory is of the same order but our method is much faster than TR, CR and SCR both validated by theory and experiments. + +# F.2 MORE EXPERIMENTS + +Here we give more experimental results on the gradient norm v.s. the algorithm running time and the Hessian sample complexity. Due to the space limit, in the manuscript we only provide the gradient-norm related results on the codrna dataset. Here we provide results of a9a and ijcnn datasets in Figure 4. One can observe that on both the logistic regression with non-convex regularizer and the nonlinear least square problems, the proposed algorithm always shows sharper convergence behavior in terms of both the running time and the Hessian sample complexity. These observations are consistent with the results in Figure 2 in the manuscript. All these results demonstrate the high efficiency of our proposed algorithm and also confirm our theoretical implication. \ No newline at end of file diff --git a/parse/train/HkxJpnVtPr/HkxJpnVtPr_content_list.json b/parse/train/HkxJpnVtPr/HkxJpnVtPr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..e876000cbd99c2ab8453c8e9d037a04a8c5b1d44 --- /dev/null +++ b/parse/train/HkxJpnVtPr/HkxJpnVtPr_content_list.json @@ -0,0 +1,3744 @@ +[ + { + "type": "text", + "text": "A STOCHASTIC TRUST REGION METHOD FOR NONCONVEX MINIMIZATION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 826, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 234, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We target the problem of finding a local minimum in non-convex finite-sum minimization. Towards this goal, we first prove that the trust region method with inexact gradient and Hessian estimation can achieve a convergence rate of order $\\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ as long as those differential estimations are sufficiently accurate. Combining such result with a novel Hessian estimator, we propose a sample-efficient√ stochastic trust region (STR) algorithm which finds an $( \\epsilon , \\sqrt { \\epsilon } )$ -approximate local minimum within $\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )$ stochastic Hessian oracle queries. This improves the state-of-the-art result by a factor of $\\mathcal { O } ( n ^ { 1 / 6 } )$ . Finally, we also develop Hessian-free STR algorithms which achieve the lowest runtime complexity. Experiments verify theoretical conclusions and the efficiency of the proposed algorithms. ", + "bbox": [ + 233, + 266, + 766, + 411 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 436, + 336, + 453 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We consider the following finite-sum non-convex minimization problem ", + "bbox": [ + 173, + 468, + 647, + 483 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/5bc941f3b76f7588e96135223fb099d13cb31a550c3fcc643fd514ba8ede29cb.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\mathbf { x } \\in \\mathbb { R } ^ { d } } F ( \\mathbf { x } ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( \\mathbf { x } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 397, + 488, + 598, + 521 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "where each (non-convex) component function $f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }$ is assumed to have $L _ { 1 }$ -Lipschitz continuous gradient and $L _ { 2 }$ -Lipschitz continuous Hessian. Since first-order stationary points could be saddle points with inferior generalization performance (Dauphin et al., 2014), in this work we are√ particularly interested in computing $( \\epsilon , \\sqrt { \\epsilon } )$ -approximate second-order stationary points, $\\epsilon$ -SOSP: ", + "bbox": [ + 174, + 529, + 825, + 585 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/e51134a96f8117ef906583db50c1c35f049a30e8b883be7e1e2aa53e9c2854bd.jpg", + "text": "$$\n\\begin{array} { r } { \\| \\nabla F ( { \\bf x } _ { \\epsilon } ) \\| \\le \\epsilon \\quad \\mathrm { a n d } \\quad \\nabla ^ { 2 } F ( { \\bf x } _ { \\epsilon } ) \\succcurlyeq - \\sqrt { L _ { 2 } \\epsilon } { \\bf I } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 592, + 653, + 612 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To find a local minimum of problem (1), the cubic regularization approach (Nesterov & Polyak, 2006) and the trust region algorithm (Conn et al., 2000; Curtis et al., 2017) are two classical methods. Specifically, cubic regularization forms a cubic surrogate function for the objective $F ( \\mathbf { x } )$ by adding a third-order regularization term to the second-order Taylor expansion, and minimizes it iteratively. Such a method is proved to achieve an $\\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ global convergence rate and thus needs $\\mathcal { O } ( n / \\epsilon ^ { 1 . 5 } )$ stochastic first- and second-order oracle queries, namely the evaluation number of stochastic gradient and Hessian, to achieve a point that satisfies (2). On the other hand, trust region algorithms estimate the objective with its second-order Taylor expansion but minimize it only within a local region. Recently, Curtis et al. (2017) proposes a trust region variant to achieve the same convergence rate as the cubic regularization approach. But both methods require computing full gradients and Hessians of $F ( \\mathbf { x } )$ and thus suffer from high computational cost in large-scale problems. ", + "bbox": [ + 173, + 618, + 826, + 773 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To avoid costly exact differential evaluations, many works explore the finite-sum structure of problem (1) and develop stochastic cubic regularization approaches. Both Kohler & Lucchi (2017b) and Xu et al. (2017) propose to directly subsample the gradient and Hessian in the cubic surrogate function, and achieve $\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 3 . 5 } )$ and $\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )$ stochastic first- and second-order oracle complexities respectively. By plugging a stochastic variance reduced estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018) into the gradient and Hessian estimation, the approach in (Zhou et al., 2018a) improves both the stochastic first- and second-order oracle complexities to $\\tilde { \\mathcal { O } } ( n ^ { 0 . 8 } / \\epsilon ^ { 1 . 5 } )$ . Recently, Zhang et al. (2018) and Zhou et al. (2018b) develop more efficient stochastic cubic regularization variants, which further reduce the stochastic second-order oracle complexity to $\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } \\bar { / } \\epsilon ^ { 1 . 5 } )$ at the cost of increasing the stochastic first-order oracle complexity to ${ \\tilde { \\mathcal { O } } } ( n ^ { 2 \\bar { / } 3 } / \\epsilon ^ { 2 . \\bar { 5 } } )$ . ", + "bbox": [ + 173, + 779, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "table", + "img_path": "images/641aadcafe1f9fc794a90c86245d00127cccfe259998bf5b8664df3dd144c614.jpg", + "table_caption": [ + "Table 1: Stochastic first- and second-order oracle complexities, SFO and SSO for short respectively, of the proposed STR approaches and other state-of-the-art methods. When SSO is prioritized, our $\\mathrm { { S T R } _ { 1 } }$ has strictly better complexity than both SCR and Lite-SVRC. When SFO and SSO are treated equally, $\\mathrm { { S T R _ { 2 } } }$ improves the existing result in SVRC. " + ], + "table_footnote": [], + "table_body": "
AlgorithmSFOSSO
TR (Conn et al., 2000; Curtis et al., 2017)CR (Nesterov & Polyak, 2006)SCR (Kohler & Lucchi, 2017a)SVRC (Zhou et al., 2018c)Lite-SVRC (Zhou et al., 2018b)0(共n01.5013.52.5O n共0(1.50(1(.5)6国1.5
STRi (this paper)STR2 (this paper)O(min{n1.5,1.5O(min{1,1.5
", + "bbox": [ + 209, + 162, + 789, + 296 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Contributions: In this paper we propose and exploit a formulation in which we make explicit control of the step size in the trust region method. This idea is leveraged to develop two efficient stochastic trust region (STR) approaches. We tailor our methods to achieve state-of-the-art oracle complexities under the following two measurements: (i) the stochastic second-order oracle complexity is prioritized; (ii) the stochastic first- and second-order oracle complexities are treated equally. Specifically, in Setting (i), our method $\\mathrm { { S T R } _ { 1 } }$ employs a newly proposed estimator to approximate the Hessian and adopts the estimator in (Fang et al., 2018) for gradient approximation. Our novel Hessian estimator maintains an accurate second-order differential approximation with lower amortized oracle complexity. In this way, $\\operatorname { S T R } _ { 1 }$ achieves $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ 1 / \\epsilon ^ { 2 } , \\sqrt { n } / \\epsilon ^ { 1 . 5 } \\} )$ stochastic second-order oracle complexity. This is lower than existing results for solving problem (1). In Setting (ii), our method $\\mathrm { { S T R } _ { 2 } }$ substitutes the gradient estimator in $\\mathrm { { S T R } _ { 1 } }$ with one that integrates stochastic gradient and Hessian together to maintain an accurate gradient approximation. As a result, $\\mathrm { { S T R _ { 2 } } }$ achieves convergence in ${ \\tilde { \\mathcal { O } } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )$ overall stochastic first- and second-order oracle queries. Finally, based on STR, we further develop Hessian-free STR algorithms, namely $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ and ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ , which outperform existing Hessian-free algorithms theoretically. ", + "bbox": [ + 173, + 304, + 825, + 516 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 529, + 331, + 542 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Computing local minimum to a non-convex optimization problem is gaining considerable amount of attentions in recent years. Both cubic regularization (CR) approaches (Nesterov & Polyak, 2006) and trust region (TR) algorithms (Conn et al., 2000; Curtis et al., 2017) can escape saddle points and find a local minimum by iterating the variable along the direction related to the eigenvector of the Hessian with the most negative eigenvalue. As the CR heavily depends on the regularization parameter for the cubic term, Cartis et al. (2011) propose an adaptive cubic regularization (ARC) approach to boost the efficiency by adaptively tuning the regularization parameter according to the current objective decrease. Noting the high cost of full gradient and Hessian computation in ARC, sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a) is developed for sampling partial data points to estimate the full gradient and Hessian. Recently, by exploring the finite-sum structure of the target problem, many works incorporate variance reduction technique (Johnson & Zhang, 2013) into CR and propose stochastic variance-reduced methods. For example, Zhou et al. (2018c) propose stochastic variance-reduced cubic (SVRC) in which they integrate the stochastic variance-reduced gradient estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018) with CR. Such a method is proved to be at least $\\mathcal { O } ( n ^ { 1 / 5 } )$ faster than CR and TR. Then Zhou et al. (2018b) use adaptive gradient batch size and constant Hessian batch size, and develop Lite-SVRC to further reduce the stochastic second-order oracle ${ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )$ of SVRC to $\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )$ at the cost of higher gradient computation cost. Similarly, except turning the gradient batch size, Zhang et al. (2018) further adaptively sample a certain number of data points to estimate the Hessian and prove the proposed method to have the same stochastic second-order oracle complexity as Lite-SVRC. ", + "bbox": [ + 173, + 545, + 826, + 825 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARY ", + "text_level": 1, + "bbox": [ + 174, + 838, + 323, + 853 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Notation. We use $\\| \\mathbf { v } \\|$ to denote the Euclidean norm of vector $\\mathbf { v }$ and use $\\| \\mathbf { A } \\|$ to denote the spectral norm of matrix A. Let $s$ be the set of component indices. We define the minibatch average of component functions by $\\begin{array} { r } { f ( \\mathbf { x } ; \\mathcal { S } ) \\ \\stackrel { \\mathrm { d e f } } { = } \\ \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } f _ { i } ( \\mathbf { x } ) } \\end{array}$ . Then we specify the assumptions that are necessary to the analysis of our methods. ", + "bbox": [ + 174, + 859, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "MetaAlgorithm 1 Inexact Trust Region Method ", + "text_level": 1, + "bbox": [ + 174, + 103, + 493, + 118 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Input: initial point $\\mathbf { x } ^ { 0 }$ , step size $r$ , number of iterations $K$ , construction of differential estimators $\\mathbf { g } ^ { k }$ and $\\mathbf { H } ^ { k }$ \n1: for $k = 0$ to $K - 1$ do \n2: Compute $\\mathbf { h } ^ { k }$ and $\\lambda ^ { k }$ by solving (8); \n3: $\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }$ ; \n4: if $\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }$ then \n5: Output ${ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }$ ; \n6: end if \n7: end for ", + "bbox": [ + 174, + 125, + 823, + 252 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Assumption 2.1. $F$ is bounded from below and its global optimal is achieved at $\\mathbf { x } ^ { * }$ . We denote $\\Delta = \\bar { F ( \\mathbf { x } ^ { 0 } ) } - F ( \\mathbf { x } ^ { * } )$ . ", + "bbox": [ + 173, + 263, + 821, + 292 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Assumption 2.2. Each $f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }$ has $L _ { 1 }$ -Lipschitz continuous gradient: for any $\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }$ ", + "bbox": [ + 173, + 294, + 794, + 310 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/fd6bffcd4ac329e3d2d08df3cf883bd01f854e8785247937cef9f572b0103e89.jpg", + "text": "$$\n\\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 1 } \\| \\mathbf { x } - \\mathbf { y } \\| .\n$$", + "text_format": "latex", + "bbox": [ + 377, + 313, + 617, + 330 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Assumption 2.3. Each $f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }$ has $L _ { 2 }$ -Lipschitz continuous Hessian: for any $\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }$ ", + "bbox": [ + 176, + 333, + 790, + 348 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f045f817af869389a938a90ea9e9cb9a5faa86aaab790f25f9fff951f42e8cbb.jpg", + "text": "$$\n\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 2 } \\| \\mathbf { x } - \\mathbf { y } \\| .\n$$", + "text_format": "latex", + "bbox": [ + 370, + 349, + 625, + 368 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 TRUST REGION METHOD ", + "text_level": 1, + "bbox": [ + 174, + 382, + 390, + 397 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here we briefly introduce the trust region method (Conn et al., 2000). In each step, it first solves the Quadratic Constraint Quadratic Program (QCQP) defined as ", + "bbox": [ + 173, + 409, + 823, + 438 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/0416e2f89ec5860a12a749b0d715f9cdd957cbbbf4133f5ba8eab08267fc6b24.jpg", + "text": "$$\n\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\nabla F ( \\mathbf { x } ^ { k } ) , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\mathbf { h } , \\mathbf { h } \\rangle ,\n$$", + "text_format": "latex", + "bbox": [ + 321, + 440, + 673, + 476 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $r$ is the trust-region radius. Then it updates the new variable as ", + "bbox": [ + 176, + 478, + 630, + 493 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c4ab9e77bd27ab82705bb5c6b81eae7b31e4a6605a63663107dc70ca7b75f4e0.jpg", + "text": "$$\n\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k } .\n$$", + "text_format": "latex", + "bbox": [ + 436, + 496, + 562, + 513 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Since $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )$ is indefinite, the trust-region subproblem (5) is non-convex. But its global optimizer can be characterized by the following lemma (Corollary 7.2.2 in (Conn et al., 2000)). ", + "bbox": [ + 174, + 518, + 825, + 547 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Lemma 2.1. Any global minimizer of problem (5) satisfies the equation ", + "bbox": [ + 173, + 549, + 647, + 564 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/4a076c3a0ce11ed5344c9d8696446694bae00258e95f126ea3728ffe56ebd0f5.jpg", + "text": "$$\n\\left( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\right) \\mathbf { h } ^ { k } = - \\nabla F ( \\mathbf { x } ^ { k } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 380, + 568, + 616, + 587 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the dual variable $\\lambda \\geq 0$ should satisfy $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\succcurlyeq 0$ and $\\lambda ( \\| \\mathbf { h } ^ { k } \\| - r ) = 0 .$ . ", + "bbox": [ + 174, + 590, + 753, + 608 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In particular, the standard QCQP solver returns both the minimizer $\\mathbf { h } ^ { k }$ as well as the corresponding dual variable $\\lambda$ of subproblem (5). In the following section, we first prove that the deterministic trust-region update (5) and (6) converges at the rate of √ $\\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ , much sharper than existing provable convergence rate $\\mathcal { O } ( 1 / \\sqrt { k } )$ (Conn et al., 2000), and then develop a more efficient stochastic trust-region approach. ", + "bbox": [ + 173, + 616, + 826, + 690 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 METHODOLOGY ", + "text_level": 1, + "bbox": [ + 176, + 709, + 341, + 726 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here we first introduce a general inexact trust region method which is summarized in MetaAlgorithm 1. It accepts inexact gradient estimation $\\mathbf { g } ^ { k }$ and Hessian estimation $\\mathbf { H } ^ { k }$ as input to the QCQP subproblem ", + "bbox": [ + 171, + 739, + 823, + 770 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/383fa79b49e3a62fed484af8e46b537ce0c10629f2ea7bb37f5efe898d0174e2.jpg", + "text": "$$\n\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } , \\mathbf { h } \\rangle .\n$$", + "text_format": "latex", + "bbox": [ + 362, + 777, + 633, + 813 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Similar to (5), Lemma 2.1 characterizes the global optimum to problem (8) which can be efficiently solved by Lanczos method (Gould et al., 1999). Assume the dual variable of the minimizer $\\mathbf { h } ^ { k }$ is $\\lambda ^ { \\dot { k } }$ ", + "bbox": [ + 173, + 814, + 823, + 843 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We prove that such inexact trust region method achieves the optimal $\\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ convergence rate when the estimation $\\mathbf { g } ^ { k }$ and $\\mathbf { H } ^ { k }$ at each iteration are sufficiently close to their full (exact) counterparts $\\nabla F ( \\mathbf { x } ^ { k } )$ and $\\nabla ^ { 2 } F ( \\bar { \\mathbf { x } } ^ { k } )$ respectively: ", + "bbox": [ + 173, + 849, + 826, + 893 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f963400f2268043dadd66165d09d23c7c2c691ca8d928a843ba29b60a2d5e794.jpg", + "text": "$$\n\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\epsilon } { 6 } , \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\sqrt { \\epsilon L _ { 2 } } } { 3 } .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 896, + 674, + 929 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithm 2 STR1 ", + "text_level": 1, + "bbox": [ + 174, + 103, + 299, + 117 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/ef2c9b6f7a41269eb6b756ffff844c0d4332196f5ba7452e1276d9c1a2b52c00.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
1:for k= 1 to K do 2: 3: Compute hk and Xk by solving (8);Input:initial point x°,step size r,number of iterations K Construct gradient estimator gk by Estimator 4; Construct Hessian estimator Hk by Estimator 3;
", + "bbox": [ + 176, + 123, + 558, + 267 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Such result allows us to derive stochastic trust-region variants with novel differential estimators that are tailored to ensure the optimal convergence rate. We state our formal results in Theorem 3.1, whose proof is deferred to Appendix B.1 due to the space limit. ", + "bbox": [ + 176, + 277, + 823, + 319 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 3.1 (Main Result). Consider problem (1) under Assumption 2.1-2.3. If the differential estimators $\\mathbf { g } ^ { k }$ and $\\mathbf { H } ^ { k }$ satisfy Eqn. (9) for all $k$ , MetaAlgorithm 1 finds an $\\mathcal { O } ( \\epsilon )$ -SOSP in less than $K = \\mathcal { O } ( \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 } )$ iterations by setting the trust-region radius as $r = \\sqrt { \\epsilon / L _ { 2 } }$ . ", + "bbox": [ + 173, + 323, + 826, + 369 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Remark 3.1. We emphasize that MetaAlgorithm 1 degenerates to the exact trust region method by taking $\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )$ and $\\mathbf { H } ^ { k } = \\nabla ^ { 2 } F ( \\mathbf { \\bar { x } } ^ { k } )$ . Such result is of its own interest because this is the first proof to show that the vanilla trust region method has the optimal $\\mathcal { O } ( 1 / k ^ { 2 / 3 } )$ convergence rate. Similar rate is achieved by Curtis et al. (2017) but with a much more complicated trust region variant. ", + "bbox": [ + 173, + 372, + 825, + 431 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 3.1 shows the explicit step size control of the trust region method: Since the dual variable√ satisfies $\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } } ^ { \\bullet } > 0$ for all but the last iteration, we always find the solution to the trustregion subproblem (8) in the boundary, i.e. $\\| \\mathbf { h } ^ { k } \\| = r$ , according to the complementary condition (15) in Appendix B.1. Such exact step size control property is missing in the cubic-regularization method where the step size is implicitly decided by the cubic regularization parameter. ", + "bbox": [ + 173, + 443, + 825, + 512 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "More importantly, we emphasize that such explicit step size control is crucial to the sample efficiency of our variance reduced differential estimators. The essence of variance reduction is to exploit the correlations between the differentials in consecutive iterations. Intuitively, when two neighboring iterates are close, so are their differentials due to the Lipschitz continuity, and hence a smaller number of samples suffice to maintain the accuracy of the estimators. On the other hand, smaller step size reduces the per-iteration objective decrease which harms the convergence rate of the algorithm (see proof of Theorem 3.1). Therefore, the explicit step size control in trust region method allows us to well trade-off the per-iteration sample complexity and convergence rate, from which we can derive stochastic trust region approaches with the state-of-the-art sample efficiency. In contrast, existing trust region methods change the step size at every iteration according to progress made, which requires loss evaluations that can be as expensive as gradient computations (e.g. the non-convex linear model in Section 7) and is thus prohibitive for large-scale problems. ", + "bbox": [ + 173, + 520, + 825, + 686 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 STOCHASTIC TRUST REGION METHOD: TYPE I ", + "text_level": 1, + "bbox": [ + 174, + 707, + 599, + 723 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Having the inexact trust region method as prototype, we now present our first sample-efficient stochastic trust region method, namely $\\mathrm { { S T R } _ { 1 } }$ , in Algorithm 2 which emphasizes cheaper stochastic second-order oracle complexity. As Theorem 3.1 already guarantees the optimal convergence rate of MetaAlgorithm 1 when the gradient estimator $\\mathbf { g } ^ { k }$ and the Hessian estimator $\\mathbf { H } ^ { k }$ meet the requirement (9), here we focus on constructing such novel differential estimators. Specifically, we first present our Hessian estimator in Estimator 3 and our first gradient estimator in Estimator 4, both of which exploit the trust region radius $r = \\sqrt { \\epsilon / L _ { 2 } }$ to reduce their variances. ", + "bbox": [ + 174, + 738, + 825, + 839 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 HESSIAN ESTIMATOR ", + "text_level": 1, + "bbox": [ + 176, + 856, + 364, + 869 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Our epoch-wise Hessian estimator $\\mathbf { H } ^ { k }$ is given in Estimator 3, where $p _ { 2 }$ controls the epoch length and $s _ { 2 }$ (and optionally $s _ { 2 } ^ { \\prime }$ ) controls the minibatch size. At the beginning of each epoch, Estimator 3 has two options, designed for different target accuracy: Option I is preferable for the high accuracy ", + "bbox": [ + 176, + 881, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Estimator 3 Hessian Estimator ", + "text_level": 1, + "bbox": [ + 174, + 103, + 382, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Input: Epoch length $p _ { 2 }$ , sample size $s _ { 2 }$ , $s _ { 2 } ^ { \\prime }$ (optional) \n1: if $\\mod ( k , p _ { 2 } ) = 0$ then \n2: Option I: $\\diamond$ high accuracy case (small $\\epsilon$ ) \n3: $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )$ ; \n4: Option II: $\\diamond$ low accuracy case (moderate $\\epsilon$ ) \n5: Draw $s _ { 2 } ^ { \\prime }$ samples indexed by $\\mathcal { H } ^ { \\prime }$ and let $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ^ { \\prime } )$ ; \n6: else \n7: Draw $s _ { 2 }$ samples indexed by $\\mathcal { H }$ and let $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ) - \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { H } ) + \\mathbf { H } ^ { k - 1 }$ ; \n8: end if ", + "bbox": [ + 176, + 121, + 803, + 247 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Estimator 4 Gradient Estimator: Case (1) ", + "text_level": 1, + "bbox": [ + 178, + 257, + 450, + 272 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1: if $\\mod ( k , p _ { 1 } ) = 0$ then \n2: $\\mathbf { g } ^ { k } : = \\nabla F ( \\mathbf { x } ^ { k } )$ ; \n3: else \n4: Draw $s _ { 1 }$ samples indexed by $\\mathcal { G }$ and $\\mathbf { g } ^ { k } = \\nabla f ( \\mathbf { x } ^ { k } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } ;$ ; \n5: end if ", + "bbox": [ + 179, + 276, + 741, + 347 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "case $( \\epsilon < \\mathcal { O } ( 1 / n ) )$ where we compute the full Hessian to avoid approximation error, and Option II is designed for the moderate accuracy case $( \\epsilon > \\mathcal { O } ( 1 / n ) )$ where we only need an approximate Hessian estimator. Then, $p _ { 2 }$ iterations follow with $\\mathbf { H } ^ { k }$ defined in a recurrent manner. These recurrent estimators exist for the first-order case (Nguyen et al., 2017; Fang et al., 2018), but their bound only holds under the vector $\\ell _ { 2 }$ norm. Here we generalize them into Hessian estimation with matrix spectral norm bound. ", + "bbox": [ + 173, + 358, + 825, + 443 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The following lemma analyzes the amortized stochastic second-order oracle (Hessian) complexity for Algorithm 3 to meet the requirement in Theorem 3.1. As we need an error bound under the spectral norm, we will appeal to the matrix Azuma’s inequality (Tropp, 2012). The proof is deferred to Appendix B.2. ", + "bbox": [ + 173, + 449, + 825, + 505 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lemma 4.1. Assume Algorithm 2 takes the trust region radius $r = \\sqrt { \\epsilon / L _ { 2 } }$ as in Theorem 3.1. For any $k \\geq 0$ , Estimator 3 produces estimator $\\mathbf { H } ^ { k }$ for the second order differential $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )$ such that $\\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } / 3$ with probability at least $1 - \\delta / K _ { 0 }$ if we set (1) $\\boldsymbol { p } _ { 2 } = \\sqrt { n }$ and $s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )$ in option $I ,$ or (2) $p _ { 2 } = L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )$ , $s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )$ , and $s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )$ in option $\\boldsymbol { { I I } }$ . Here $K _ { 0 }$ is a constant to be determined later. Consequently the amortized per-iteration stochastic second-order oracle complexity to construct is no more than $\\begin{array} { r } { 2 s _ { 2 } = \\operatorname* { m i n } \\{ 6 4 \\sqrt { n } \\log \\frac { d K _ { 0 } } { \\delta } } \\end{array}$ , $\\begin{array} { r } { \\frac { 6 4 L _ { 1 } } { \\sqrt { \\epsilon L _ { 2 } } } \\log \\frac { d K _ { 0 } } { \\delta } \\biggr \\} } \\end{array}$ $\\mathbf { H } ^ { k }$ ", + "bbox": [ + 173, + 508, + 825, + 619 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 GRADIENT ESTIMATOR: CASE (1) ", + "text_level": 1, + "bbox": [ + 176, + 633, + 450, + 648 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "When the stochastic second-order oracle complexity is prioritized, we directly employ the SPIDER gradient estimator to construct $\\mathbf { g } ^ { k }$ (Fang et al., 2018). Similar to the construction for $\\bar { \\mathbf { H } } ^ { k }$ , the estimator $\\bar { \\mathbf { g } } ^ { k }$ is also constructed in an epoch-wise manner as presented in Estimator 4, where $p _ { 1 }$ controls the epoch length and $s _ { 1 }$ controls the minibatch size. ", + "bbox": [ + 174, + 660, + 825, + 715 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We now analyze the stochastic first-order oracle complexity to meet the requirement in Theorem 3.1. Lemma 4.2. Assume Algorithm 2 takes the trust region radius $r = \\sqrt { \\epsilon / L _ { 2 } }$ . Estimator $\\cdot$ produces estimator $\\mathbf { g } ^ { k }$ of the first order differential $\\nabla F ( \\mathbf { x } ^ { k } )$ such that $\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6$ with probability at least $1 - \\delta / K _ { 0 }$ for any $k \\geq 0 ,$ , if we set $\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon L _ { 2 } / ( c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } ) } \\rbrace } \\end{array}$ and $s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { c n L _ { 1 } ^ { 2 } \\log ( K _ { 0 } / \\delta ) / ( \\epsilon L _ { 2 } ) } \\}$ , where the constant $c = 1 1 5 2$ and $K _ { 0 }$ is a constant to be determined later. Consequently, the amortized per-iteration stochastic first-order oracle complexity to construct $\\mathbf { g } ^ { k } i s \\operatorname* { m i n } \\{ n , \\sqrt { 4 c n L _ { 1 } ^ { 2 } \\log { ( K _ { 0 } / \\delta ) } / ( \\epsilon L _ { 2 } ) } \\}$ . ", + "bbox": [ + 171, + 723, + 826, + 845 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The proof of Lemma 4.2 is similar to the one of Lemma 4.1 and is deferred to Appendix B.3. These two lemmas only guarantee that the differential estimators satisfy the requirement (9) in a single iteration and can be extended to hold for all $k$ by using the union bound with $K _ { 0 } = 2 K$ , where $K$ denotes the number of iterations. Combining such lifted result with Theorem 3.1, we can establish the computational complexity bound as follows. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 5 STR2 ", + "text_level": 1, + "bbox": [ + 174, + 103, + 300, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Input: initial point $\\mathbf { x } ^ { 0 }$ , step size $r$ , number of iterations $K$ ", + "bbox": [ + 173, + 123, + 562, + 138 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: for $k = 1$ to $K$ do \n2: Construct gradient estimator $\\mathbf { g } ^ { k }$ by Estimator 6; \n3: Construct Hessian estimator $\\bar { \\mathbf { H } } ^ { k }$ by Estimator 3; \n4: Compute $\\mathbf { h } ^ { k }$ and $\\lambda ^ { k }$ by solving (8); \n5: $\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }$ ; \n6: if $\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }$ then \n7: Output ${ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }$ ; \n8: end if \n9: end for ", + "bbox": [ + 178, + 137, + 555, + 265 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Estimator 6 Gradient Estimator: Case (2) ", + "text_level": 1, + "bbox": [ + 176, + 276, + 450, + 291 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: if $\\mod ( k , p _ { 1 } ) = 0$ then \n2: Let $\\widetilde \\mathbf { x } : = \\mathbf { x } ^ { k }$ , $\\mathbf { g } ^ { k } : = \\nabla F ( \\tilde { \\mathbf { x } } )$ \n3: else \n4: Draw $s _ { 1 }$ samples indexed by $\\mathcal { G }$ ; \n5: $\\mathbf { g } ^ { k } = \\bar { \\nabla } f ( \\mathbf { x } ^ { k ^ { \\prime } } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k ^ { \\prime } - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } + [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ;$ \n6: end if ", + "bbox": [ + 179, + 296, + 769, + 381 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Corollary 4.1 (Computational Complexity of $\\mathrm { S T R _ { 1 } }$ ). Assume Algorithm 2 will use Estimator 4 to construct the first-order differential estimator $\\mathbf { g } ^ { k }$ and use Estimator $^ 3$ to construct the second-order differential estimator $\\mathbf { H } ^ { k }$ . To find a $1 2 \\epsilon$ -SOSP with probability at least $1 - \\delta$ , the overall stochastic first-order oracle complexity is O(min{ n L2∆\u000f1.5 , $\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { n \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { \\sqrt { n } L _ { 1 } } { \\epsilon ^ { 2 } } \\log ( \\frac { L _ { 2 } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) \\} ) } \\end{array}$ and the overall stochastic secondorder oracle complexity is $\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { \\sqrt { n L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { L _ { 1 } \\Delta } { \\epsilon ^ { 2 } } \\} \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}$ ", + "bbox": [ + 173, + 390, + 826, + 472 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "From Corollary 4.1 we see that $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } \\} )$ stochastic second-order oracle queries are sufficient for $\\operatorname { S T R } _ { 1 }$ to find an $\\epsilon$ -SOSP which is significantly better than both the subsampled cubic regularization method $\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )$ (Kohler & Lucchi, 2017a) and the variance reduction based ones $\\tilde { \\mathcal { O } } \\bar { ( } n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )$ (Zhou et al., 2018b; Zhang et al., 2018). Recently, Zhou & Gu (2019) developed a√ stochastic recursive variance-reduced cubic regularization (SRVRC) method which finds an $( \\epsilon , \\sqrt { \\epsilon } )$ - approximate local minimum with $\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 3 } )$ SFO and $\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )$ SSO. But the result of SRVRC needs to assume stochastic gradient to be bounded, i.e., $\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma$ . With this extra assumption, STR1 enjoys $\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , n / \\epsilon ^ { 2 } , 1 / \\epsilon ^ { 3 } )$ SFO and $\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )$ SSO. Thus, if $1 / { \\epsilon } \\le n \\le 1 / \\bar { \\epsilon } ^ { 2 }$ , STR1 outperforms SRVRC; otherwise they have the same complexities. ", + "bbox": [ + 173, + 483, + 826, + 619 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 STOCHASTIC TRUST REGION METHOD: TYPE II ", + "text_level": 1, + "bbox": [ + 174, + 640, + 607, + 659 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In the above section, we focus on the setting where the stochastic second-order oracle complexity is prioritized over the stochastic first-order oracle complexity. In this setting, $\\mathrm { { S T R } _ { 1 } }$ achieves the stateof-the-art efficiency. In this section, we consider a different complexity measure where first-order and second-order oracle complexities are treated equally and our goal is to minimize the maximum of them. We note that, currently the best result is $\\tilde { \\mathcal { O } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )$ of the SVRC method (Zhou et al., 2018c). ", + "bbox": [ + 173, + 674, + 826, + 761 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Since the Hessian estimator $\\mathbf { H } ^ { k }$ of $\\operatorname { S T R } _ { 1 }$ already delivers the superior $\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )$ stochastic Hessian complexity, in $\\mathrm { { S T R _ { 2 } } }$ (see Algorithm 5), we retain Estimator 3 for second-order differential estimation and use Estimator 6 to further reduce the stochastic gradient complexity. ", + "bbox": [ + 174, + 765, + 825, + 809 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 GRADIENT ESTIMATOR: CASE (2) ", + "text_level": 1, + "bbox": [ + 176, + 828, + 450, + 843 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "When stochastic gradient and Hessian complexities are equally important, we use Hessian to improve the gradient estimation. Denote $\\mathbf { x } ( a ) = a \\bar { \\mathbf { x } } ^ { t } + ( 1 - a ) \\tilde { \\mathbf { x } }$ . From Assumption 2.3, we have ", + "bbox": [ + 173, + 854, + 825, + 885 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ebcb777e8d807878d2f376a9a1ef58e3733ab936c83c3451ca41ba983bd3a78b.jpg", + "text": "$$\n\\nabla f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla f _ { i } ( \\widetilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\| = \\| \\int _ { 0 } ^ { 1 } [ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ( a ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ] ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\mathbf { d } a \\| \\leq \\frac { L _ { 2 } } { 2 } \\| \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } \\| ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 892, + 839, + 929 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Such property can be used to improve Lemma 4.2 of Estimator 4. Specifically, define the correction ", + "bbox": [ + 173, + 103, + 823, + 118 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/374f1a04ace9edfc2eff14647f0696751e7030cb0adc31d0cd8e315d6054623a.jpg", + "text": "$$\n\\mathbf { c } ^ { k } = [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 354, + 125, + 642, + 143 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\tilde { \\bf x }$ is some reference point updated in an epoch-wise manner. Estimator 6 adds $\\mathbf { c } ^ { k }$ to the estimator in Estimator 4. Note that in Estimator 6, the first- and second-order oracle complexities are the same. We now analyze the first-order (and second-order) oracle complexity to meet requirement (9). ", + "bbox": [ + 173, + 150, + 825, + 205 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 5.1. Assume Algorithm $\\cdot$ takes the trust region radius $r = \\sqrt { \\epsilon / L _ { 2 } }$ as in Theorem 3.1. For any $k \\geq 0$ , Estimator 6 produces estimator $\\mathbf { g } ^ { k }$ for the first order differential $\\nabla F ( \\mathbf { x } ^ { k } )$ such that $\\| \\mathbf { g } ^ { k } - \\mathbf { \\mu }$ $\\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6$ with probability at least $1 - \\delta / K _ { 0 }$ , if we set $p _ { 1 } = n ^ { 0 . 2 5 }$ and $s _ { 1 } \\doteq \\dot { n } ^ { 0 . 7 5 } c \\log ( \\ddot { K _ { 0 } } / \\delta )$ where $c = 1 1 5 2$ and $K _ { 0 }$ is a constant to be determined. Consequently, the amortized per-iteration stochastic first-order oracle complexity to construct $\\mathbf { g } ^ { k }$ is $2 s _ { 1 } = 2 n ^ { 0 . \\dot { 7 } 5 } c \\log ( K _ { 0 } / \\delta )$ . ", + "bbox": [ + 173, + 210, + 825, + 285 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The proof of Lemma 5.1 is similar to the one of Lemma 4.1 and is deferred to Appendix B.4. Similar to the previous section, Lemma 5.1 only guarantees that the gradient estimator satisfies the requirement (9) in a single iteration. Such result can be extended to hold for all $k$ by using the union bound with $K _ { 0 } = 2 K$ , which together with Theorem 3.1 gives the following corollary. ", + "bbox": [ + 174, + 295, + 825, + 352 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Corollary 5.1 (Computational Complexity of $\\mathrm { { S T R } _ { 2 } }$ ). Algorithm 5 finds a $1 2 \\epsilon$ -SOSP with probability at least $1 - \\delta$ , within $\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}$ ) overall stochastic first-order oracle queries and $\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}$ \u000f1.5 δ\u000f1.5 overall stochastic second-order oracle queries. ", + "bbox": [ + 173, + 354, + 825, + 409 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Corollary 5.1 shows that to find an $\\epsilon$ -SOSP, both SFO and SSO of $\\mathrm { { S T R _ { 2 } } }$ are $\\tilde { \\mathcal { O } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )$ which surpasses the best existing one ${ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )$ in (Zhou et al., 2018c). ", + "bbox": [ + 174, + 420, + 823, + 453 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6 PRACTICAL STOCHASTIC TRUST REGION VARIANTS ", + "text_level": 1, + "bbox": [ + 176, + 472, + 642, + 489 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.1 HANDLING INEXACT QCQP SOLUTIONS ", + "text_level": 1, + "bbox": [ + 176, + 502, + 496, + 518 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "One drawback of MetaAlgorithm 1 is that it requires the exact solution to the QCQP subproblem (8) and uses the dual variable as stopping criterion. We address this problem by developing a practical variant, MetaAlgorithm 7, which admits inexact QCQP solutions without access to the dual variable. This algorithm repeatedly invokes a procedure called INEXACTTR $\\mathbf { W E A K }$ , which, as we shall see, outputs an $\\mathcal { O } ( \\epsilon )$ -SOSP with a constant probability of $2 / 3$ in $\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )$ iterations. By repeatedly invoking INEXACTTR $\\mathbf { \\partial } \\cdot \\mathbf { W E A K }$ for $\\Theta ( \\log ( 1 / \\bar { \\delta } ) )$ times, MetaAlgorithm 7 boosts the probability to $( 1 - \\delta )$ for any desired $\\delta$ . This repeating technique has been studied by, e.g., (Allen-Zhu & Li, 2018; AllenZhu, 2018b). To test whether the $t$ -th run outputs an $\\mathcal { O } ( \\epsilon )$ -SOSP, we need to compute $\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\|$ and the smallest eigenvalue of $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ . The latter one can be approximated by solving the QCQP ", + "bbox": [ + 173, + 529, + 826, + 656 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/fecab025599a069ccd8344e4f1adcf4e617058a069250ece8202a60bfb7555b8.jpg", + "text": "$$\n\\mathbf { v } ^ { t } : = \\operatorname * { a r g m i n } _ { \\| \\mathbf { v } \\| \\leq 1 } \\psi _ { t } ( \\mathbf { v } ) = \\langle \\mathbf { H } ^ { t } \\mathbf { v } , \\mathbf { v } \\rangle ,\n$$", + "text_format": "latex", + "bbox": [ + 385, + 660, + 611, + 689 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\mathbf { H } ^ { t }$ is the full Hessian $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ or its estimation. One can show that MetaAlgorithm 7 finds an $\\mathcal { O } ( \\epsilon )$ -SOSP w.p. at least $( 1 - \\delta )$ in $\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 1 . 5 } )$ iterations. We defer the detailed analysis to Appendix C. ", + "bbox": [ + 174, + 696, + 825, + 729 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.2 HESSIAN-FREE IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 744, + 452, + 758 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Based on MetaAlgorithm 7, we propose a Hessian-free method named ${ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }$ , which is summarized in Algorithm 8. $\\mathrm { S T R } _ { \\mathrm { f r e e } }$ leverages the full/stochastic Hessian and Estimator 4 to construct $\\mathbf { H } ^ { k }$ and $\\mathbf { g } ^ { k }$ , respectively. Besides, it uses Lanczos method (Gould et al., 1999; Carmon & Duchi, 2018) as the QCQP solver, which can be implemented in a Hessian-free manner (i.e., using only Hessian-vector products without explicit Hessian matrix evaluations). Thus, $\\mathbf { H } ^ { k }$ is only accessed through Hessianvector products and is never explicitly constructed. Since Hessian-vector products can be computed in linear time (in terms of the dimension $d$ ) for many machine learning problems (Allen-Zhu, 2018b; Agarwal et al., 2017), Hessian-free methods are usually more practical than Hessian based ones for high dimensional problems. The following theorem, whose proof can be found in Appendix D, establishes the runtime complexity (i.e., the total complexity of stochastic gradient and Hessian-vector product evaluations (Zhou & Gu, 2019)) of ${ \\bf S T R } _ { \\mathrm { f r e e } }$ . ", + "bbox": [ + 173, + 770, + 826, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "MetaAlgorithm 7 Inexact Trust Region Method II ", + "text_level": 1, + "bbox": [ + 176, + 103, + 508, + 118 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Input: initial point $\\mathbf { x } ^ { 0 }$ , step size $r$ , number of inner iterations $K$ , constants $\\delta , \\zeta \\in ( 0 , 1 )$ , c1, c2, \nnumber of outer iterations $T = \\Theta ( \\log ( 1 / \\delta ) )$ , sample size $s$ (optional) \n1: for $t = 1$ to $T$ do \n2: $\\mathbf { x } ^ { t } \\gets \\mathrm { I N E X A C T T R } _ { \\mathrm { W E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )$ ; \n3: Option I: $\\diamond$ high accuracy case (small $\\epsilon$ ) \n4: $\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ ; \n5: Option II: $\\diamond$ low accuracy case (moderate $\\epsilon$ ) \n6: Draw $s$ samples indexed by $\\mathcal { H }$ and let $\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { t } ; \\mathcal { H } )$ ; \n7: Compute $\\tilde { \\mathbf { v } } ^ { t }$ by solving (10) up to accuracy $\\sqrt { \\epsilon L _ { 2 } }$ with probability $1 - \\delta / 4$ ; \n8: if $\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\| \\leq c _ { 1 } \\epsilon _ { . }$ and $\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }$ then \n9: return $\\mathbf { x } _ { \\epsilon } : = \\mathbf { x } ^ { t }$ ; \n10: end if \n11: end for \n12: procedure INEXACTTR $\\mathbf { w } _ { \\mathrm { E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )$ \n13: for $k = 0$ to $K - 1$ do \n14: Compute $\\mathbf { g } ^ { k }$ and $\\mathbf { H } ^ { k }$ such that (9) holds with probability $\\textstyle { 1 - \\frac { \\zeta } { 4 K } }$ \n15: Compute $\\tilde { \\mathbf { h } } ^ { k }$ by solving (8) up to accuracy $\\epsilon ^ { 1 . 5 } / \\sqrt { L _ { 2 } }$ 4Kwith probability $\\textstyle 1 - { \\frac { \\zeta } { 4 K } }$ ; \n16: $\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\tilde { \\mathbf { h } } ^ { k }$ ; \n17: end for \n18: Randomly select $\\bar { k }$ from $\\{ 0 , \\ldots , K - 1 \\}$ ; \n19: return xk¯+1; \n20: end procedure ", + "bbox": [ + 173, + 123, + 823, + 457 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Algorithm 8 STRfree ", + "text_level": 1, + "bbox": [ + 174, + 469, + 312, + 484 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "1: In the same setting as MetaAlgorithm 7, \n2: construct gradient estimator $\\mathbf { g } ^ { k }$ by Estimator 4; \n3: construct Hessian estimator $\\bar { \\mathbf { H } } ^ { k }$ by \n4: Option I: $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )$ ; \n5: Option II: Draw $s$ samples indexed by $\\mathcal { H }$ and let $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )$ ; \n6: use Lanczos method to solve QCQP subproblems. ", + "bbox": [ + 178, + 488, + 692, + 574 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Theorem 6.1. Consider Algorithm 8 for solving problem (1). Let $\\zeta = 1 / 3$ , $r = \\sqrt { \\epsilon / L _ { 2 } }$ , $K =$ $4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }$ , $\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } ( 2 / \\delta ) } } \\end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0 \\mathrm { \\Omega }$ , and 32L21\u000fL2 log(4d/δ). The hyper-parameters in Estimator $^ { 4 }$ are set to the same values as those in Lemma 4.2. The number of iterations of Lanczos method is set to $\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )$ . To find an $\\mathcal { O } ( \\epsilon )$ -SOSP w.p. at least $1 - \\delta$ , the runtime complexity is $\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )$ . ", + "bbox": [ + 173, + 585, + 826, + 669 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To solve the QCQP more efficiently, here we develop a faster solver which is based on the AppxPCA method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a). See details in Appendix E. By replacing Lanczos method with this solver in ${ \\bf S T R } _ { \\mathrm { f r e e } }$ , we further improve the runtime complexity to $\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\}$ ). We call this new algorithm ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ whose details can be found in Appendix E. Table 2 shows that for the runtime complexities, both $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ and ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ outperform existing methods. See more comparison and discussion in Appendix E.4. ", + "bbox": [ + 174, + 676, + 825, + 763 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 782, + 326, + 797 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Here we compare the proposed STR with several state-of-the-art (stochastic) cubic regularized algorithms and trust region approaches, including trust region (TR) algorithm (Conn et al., 2000), adaptive cubic regularization (ARC) (Cartis et al., 2011), sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a), stochastic variance-reduced cubic (SVRC) (Zhou et al., 2018c), Lite-SVRC (Zhou et al., 2018b), and SRVRC (Zhou & Gu, 2019). For STR, we estimate the gradient as the way in case (1). This is because such a method enjoys lower Hessian computational complexity over the way in case (2) and for most problems, computing their Hessian matrices is much more time-consuming than computing their gradients. For the subproblems in these compared methods, we use Lanczos method (Gould et al., 1999; Kohler & Lucchi, 2017a) to solve the subproblem approximately in a Hessian-related Krylov subspace. We run simulations on seven datasets from LibSVM (a9a, ijcnn, codrna, phishing, w8a, epsilon and mnist). We run our algorithm for 40 epochs and use the output as the optimal value $f ^ { * }$ for sub-optimality estimation. Note the output has very small gradient already verified by Figure 2 and 4 in appendix. For all the considered algorithms, we set their initializations as zeros and tune their hyper-parameters optimally. For more experimental settings, e.g. details of testing datasets and algorithm parameter settings, please refer to Appendix F. ", + "bbox": [ + 173, + 811, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/5fb60b49e8c69b788f6bf743f2b22c706151d6ad4829c3a871b14cfa1cc11853.jpg", + "table_caption": [ + "Table 2: Runtime complexities of $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ , ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ , and other state-of-the-art methods. " + ], + "table_footnote": [ + "These entries rely on an additional assumption: $\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma$ a.s. " + ], + "table_body": "
AlgorithmRuntime
Hessian-free Cubic (Carmon & Duchi, 2016)Fast-Cubic (Agarwal et al., 2017)Stochastic Cubic (Tripuraneni et al., 2018)SRVRCfree (Zhou & Gu, 2019)()0dn dn0.75+151.756d *35O(min{ d})*
STRfree (this paper)STRfree+ (this paper)O(min{dn d dn0.5e1.75,2.752O(min{ dn0.75dn d dn0.51.5+e1.75,2.5+20)
", + "bbox": [ + 209, + 121, + 789, + 256 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/8013d004ab6213afb97a494ee9b3163ce86d5b5c7e6f77d3cb61238a0eee4a13.jpg", + "image_caption": [ + "Figure 1: Comparison on the logistic regression with non-convex regularizer. " + ], + "image_footnote": [], + "bbox": [ + 178, + 284, + 821, + 541 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 570, + 826, + 667 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Two evaluation non-convex problems. Following (Kohler & Lucchi, 2017a; Zhou et al., 2018c), we evaluate all considered algorithms on two learning tasks: the logistic regression with nonconvex regularizer and the nonlinear least square. Given $n$ data points $( { \\pmb x } _ { i } , y _ { i } )$ where $\\pmb { x } _ { i } \\in \\mathbb { R } ^ { d }$ is the sample vector and $y _ { i } ~ \\in ~ \\{ - 1 , 1 \\}$ is the label, logistic regression with non-convex regularizer aims at distinguishing these two kinds of samples by solving the following problem $\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\log ( 1 + \\mathrm { { e x p } } ( - y _ { i } \\pmb { w } ^ { T } \\pmb { x } _ { i } ) ) + \\lambda R ( \\pmb { w } ; \\alpha ) } \\end{array}$ , where the non-convex regularizer $R ( { \\boldsymbol { w } } ; \\alpha )$ is defined as $\\begin{array} { r } { R ( \\pmb { w } ; \\alpha ) = \\sum _ { i = 1 } ^ { d } \\alpha \\pmb { w } _ { i } ^ { 2 } / ( 1 + \\alpha \\pmb { w } _ { i } ^ { 2 } ) } \\end{array}$ . The nonlinear least square problem fits the nonlinear data by minimizing $\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { 2 n } \\sum _ { i = 1 } ^ { n } \\left[ y _ { i } - \\phi ( \\pmb { w } ^ { T } \\pmb { x } _ { i } ) \\right] ^ { 2 } + \\lambda R ( \\pmb { w } , \\alpha ) } \\end{array}$ . For these two kinds of problems, we set the parameters $\\lambda = 1 0 ^ { - 3 }$ and $\\alpha = 1 0$ for all testing datasets. ", + "bbox": [ + 173, + 674, + 826, + 810 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Comparison of Hessian based algorithms. Figure 1 summarizes testing results on the non-convex logistic regression problem. For each dataset, we report the function value gap v.s. the overall algorithm running time which can reflect the overall computational complexity of an algorithm, and also show the function value gap v.s. Hessian sample complexity which reveals the complexity of Hessian computation. From Figure 1, one can observe that our proposed STR algorithm runs faster than the compared algorithms in terms of the algorithm running time, showing the overall superiority of STR. Furthermore, STR also reveals much sharper convergence curves in terms of the Hessian sample complexity which is consistent with our theory. This is because to achieve an $\\epsilon$ -accuracy local minimum, the Hessian sample complexity of the proposed STR is $\\tilde { \\mathcal { O } } ( n ^ { 0 . 5 } / \\epsilon ^ { 1 . 5 } )$ and is superior over the complexity of the compared methods (see the comparison in Sec. 4.2). Indeed, this also explains why our algorithm is also faster in terms of algorithm running time, since for most optimization problems, Hessian matrix is much more computationally expensive than the gradient and thus more efficient Hessian sample complexity means faster overall convergence speed. Note, as all compared methods need to compute the Hessian and gradient, their memory complexity are all $\\mathcal { O } ( d ^ { 2 } + \\dot { d } )$ . ", + "bbox": [ + 173, + 816, + 825, + 915 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/1f795eb6ac39b80b39a1210d8ceb789239034df7ee57a3eb2a229984d19c4413.jpg", + "image_caption": [ + "Figure 2: Comparison on the nonlinear least square problem. " + ], + "image_footnote": [], + "bbox": [ + 178, + 104, + 821, + 359 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 390, + 825, + 489 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Figure 2 displays results of the compared algorithms on the nonlinear least square problem. STR shows very similar behaviors as those in Figure 1. Specifically, STR achieves fastest convergence rate in terms of both algorithm running time and Hessian sample complexity. On the codrna dataset we further plot the gradient norm versus running time and Hessian sample complexity. One can obverse that the gradient in STR vanishes significantly faster than other algorithms which means that STR can find the stationary point with high efficiency. See Figure 4 in Appendix F.2 for more experimental results on gradient norm comparison. All these results confirm the superiority of the proposed STR. ", + "bbox": [ + 173, + 496, + 826, + 593 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Comparison of Hessian-free algorithms. Here we compare our proposed Hessian-free STR, namely $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ , with other state-ofthe-art Hessian-free algorithms on the two high-dimensional datasets, including epsilon and mnist (see details in Appendix F). Here we do not compare ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ , as it is based on AppxPCA method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a) which require tuning a lot of hyper-parameters. From the results in Figure 3, one can observe that compared with other algorithms, our ${ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }$ ", + "bbox": [ + 174, + 601, + 485, + 767 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/6ae2d6fe5712438b857d2a33bd755443d66d2c7c1e1911c6e91971831b384a67.jpg", + "image_caption": [ + "Figure 3: Comparison of Hessian-free algorithms on non-convex logistic and soft-max regressions. " + ], + "image_footnote": [], + "bbox": [ + 503, + 603, + 826, + 727 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "achieves the best convergence speed which demonstrates its high efficiency in realistic applications. Besides, one also can find that $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ is much faster than Hessian based STR since computing full Hessian is actually much computationally expensive than the computation of the Hessian vector. ", + "bbox": [ + 176, + 767, + 825, + 809 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "8 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 835, + 318, + 852 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We proposed two stochastic trust region variants. Under two settings (whether stochastic first- and second-order oracle complexities are treated equally), the proposed methods achieve state-of-theart oracle complexities. We also propose Hessian-free variants with lowest runtime complexity. Experimental results testify our theoretical implications and the efficiency of the proposed algorithms. ", + "bbox": [ + 174, + 867, + 826, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 118 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Naman Agarwal, Zeyuan Allen-Zhu, Brian Bullins, Elad Hazan, and Tengyu Ma. Finding approximate local minima faster than gradient descent. In Proceedings of the 49th Annual ACM SIGACT Symposium on Theory of Computing, pp. 1195–1199. ACM, 2017. 7, 9, 19 ", + "bbox": [ + 176, + 126, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zeyuan Allen-Zhu. Katyusha x: Practical momentum method for stochastic sum-of-nonconvex optimization. arXiv preprint arXiv:1802.03866, 2018a. 8, 10, 19, 20 ", + "bbox": [ + 171, + 179, + 825, + 208 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zeyuan Allen-Zhu. Natasha 2: Faster non-convex optimization than sgd. In Advances in Neural Information Processing Systems, pp. 2675–2686, 2018b. 7 ", + "bbox": [ + 171, + 217, + 823, + 246 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zeyuan Allen-Zhu and Yuanzhi Li. Lazysvd: even faster svd decomposition yet without agonizing pain. In Advances in Neural Information Processing Systems, pp. 974–982, 2016. 8, 10, 19 ", + "bbox": [ + 169, + 256, + 825, + 285 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zeyuan Allen-Zhu and Yuanzhi Li. Neon2: Finding local minima via first-order oracles. In Advances in Neural Information Processing Systems, pp. 3716–3726, 2018. 7, 19 ", + "bbox": [ + 173, + 294, + 825, + 324 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yair Carmon and John C Duchi. Gradient descent efficiently finds the cubic-regularized non-convex newton step. arXiv preprint arXiv:1612.00547, 2016. 9 ", + "bbox": [ + 174, + 333, + 823, + 363 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yair Carmon and John C Duchi. Analysis of krylov subspace solutions of regularized non-convex quadratic problems. In Advances in Neural Information Processing Systems, pp. 10705–10715, 2018. 7, 18 ", + "bbox": [ + 173, + 372, + 826, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Coralia Cartis, Nicholas IM Gould, and Philippe L Toint. Adaptive cubic regularisation methods for unconstrained optimization. part i: motivation, convergence and numerical results. Mathematical Programming, 127(2):245–295, 2011. 2, 8 ", + "bbox": [ + 173, + 424, + 823, + 467 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew R Conn, Nicholas IM Gould, and Ph L Toint. Trust region methods, volume 1. Siam, 2000. 1, 2, 3, 8, 13 ", + "bbox": [ + 169, + 477, + 825, + 507 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Frank E Curtis, Daniel P Robinson, and Mohammadreza Samadi. A trust region algorithm with a worst-case iteration complexity of (epsilon 3/2) for nonconvex optimization. Mathematical Programming: Series A and B, 162(1-2):1–32, 2017. 1, 2, 4 ", + "bbox": [ + 174, + 516, + 825, + 559 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann N Dauphin, Razvan Pascanu, Caglar Gulcehre, Kyunghyun Cho, Surya Ganguli, and Yoshua Bengio. Identifying and attacking the saddle point problem in high-dimensional non-convex optimization. In Advances in neural information processing systems, pp. 2933–2941, 2014. 1 ", + "bbox": [ + 176, + 568, + 825, + 612 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Cong Fang, Chris Junchi Li, Zhouchen Lin, and Tong Zhang. Spider: Near-optimal non-convex optimization via stochastic path-integrated differential estimator. In Advances in Neural Information Processing Systems, pp. 686–696, 2018. 2, 5 ", + "bbox": [ + 173, + 621, + 826, + 664 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Olaf E Flippo and Benjamin Jansen. Duality and sensitivity in nonconvex quadratic optimization over an ellipsoid. European journal of operational research, 94(1):167–178, 1996. 19 ", + "bbox": [ + 173, + 672, + 823, + 703 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicholas IM Gould, Stefano Lucidi, Massimo Roma, and Philippe L Toint. Solving the trust-region subproblem using the lanczos method. SIAM Journal on Optimization, 9(2):504–525, 1999. 3, 7, 9 ", + "bbox": [ + 173, + 712, + 825, + 742 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Robert Gower, Nicolas Le Roux, and Francis Bach. Tracking the gradients using the hessian: A new look at variance reducing stochastic methods. In Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics, 2018. 1, 2 ", + "bbox": [ + 174, + 751, + 823, + 794 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rie Johnson and Tong Zhang. Accelerating stochastic gradient descent using predictive variance reduction. In Advances in neural information processing systems, pp. 315–323, 2013. 1, 2 ", + "bbox": [ + 173, + 804, + 823, + 833 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex optimization. arXiv preprint arXiv:1705.05933, 2017a. 2, 6, 8, 9 ", + "bbox": [ + 171, + 842, + 825, + 872 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex optimization. In Proceedings of the 34th International Conference on Machine Learning, 2017b. 1 ", + "bbox": [ + 174, + 882, + 826, + 922 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yurii Nesterov and Boris T Polyak. Cubic regularization of newton method and its global performance. Mathematical Programming, 108(1):177–205, 2006. 1, 2 ", + "bbox": [ + 169, + 103, + 825, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lam M Nguyen, Jie Liu, Katya Scheinberg, and Martin Taka´c. Sarah: A novel method for machine ˇ learning problems using stochastic recursive gradient. In International Conference on Machine Learning, pp. 2613–2621, 2017. 5 ", + "bbox": [ + 176, + 140, + 823, + 184 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nilesh Tripuraneni, Mitchell Stern, Chi Jin, Jeffrey Regier, and Michael I Jordan. Stochastic cubic regularization for fast nonconvex optimization. In Advances in Neural Information Processing Systems, pp. 2899–2908, 2018. 9, 21 ", + "bbox": [ + 173, + 193, + 823, + 234 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Joel A Tropp. User-friendly tail bounds for sums of random matrices. Foundations of computational mathematics, 12(4):389–434, 2012. 5, 14, 18 ", + "bbox": [ + 173, + 244, + 821, + 273 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jiulin Wang and Yong Xia. A linear-time algorithm for the trust region subproblem based on hidden convexity. Optimization Letters, 11(8):1639–1646, 2017. 19 ", + "bbox": [ + 173, + 281, + 821, + 310 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Peng Xu, Farbod Roosta-Khorasani, and Michael W Mahoney. Newton-type methods for non-convex optimization under inexact hessian information. arXiv preprint arXiv:1708.07164, 2017. 1 ", + "bbox": [ + 173, + 319, + 823, + 349 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Junyu Zhang, Lin Xiao, and Shuzhong Zhang. Adaptive stochastic variance reduction for subsampled newton method with cubic regularization. arXiv preprint arXiv:1811.11637, 2018. 1, 2, 6 ", + "bbox": [ + 173, + 357, + 821, + 387 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dongruo Zhou and Quanquan Gu. Stochastic recursive variance-reduced cubic regularization methods. arXiv preprint arXiv:1901.11518, 2019. 6, 7, 8, 9, 21 ", + "bbox": [ + 176, + 395, + 823, + 424 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized Newton methods. In Proceedings of the 35th International Conference on Machine Learning, 2018a. 1 ", + "bbox": [ + 176, + 433, + 821, + 462 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Sample efficient stochastic variance-reduced cubic regularization method. arXiv preprint arXiv:1811.11989, 2018b. 1, 2, 6, 8, 22 ", + "bbox": [ + 173, + 469, + 820, + 500 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized newton method. In ICML, 2018c. 2, 6, 7, 8, 9, 22 ", + "bbox": [ + 174, + 508, + 821, + 537 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 299, + 117 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this appendix, Sec. B first provides the proofs for the results in the manuscript. Then, we analyze MetaAlgorithm 7 and $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ in Sec. C and Sec. D, respectively. Next, in Sec. E, we develop a fast QCQP solver to further improve the computational complexity of $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ . Finally, more experimental details and results are presented in Sec. F. ", + "bbox": [ + 174, + 132, + 825, + 189 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B DEFERRED PROOFS ", + "text_level": 1, + "bbox": [ + 174, + 209, + 372, + 226 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B.1 PROOF OF THEOREM 3.1 ", + "text_level": 1, + "bbox": [ + 174, + 241, + 388, + 255 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof. For simplicity of notation, we denote ", + "bbox": [ + 176, + 266, + 467, + 281 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/1616005f39564fe9d71d3519e3e67722604349daf5642951c666821e901afad5.jpg", + "text": "$$\n\\nabla _ { k } \\overset { \\mathrm { d e f } } { = } \\nabla F ( { \\mathbf x } ^ { k } ) - { \\mathbf g } ^ { k } \\mathrm { a n d } \\nabla _ { k } ^ { 2 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) - { \\mathbf H } ^ { k } .\n$$", + "text_format": "latex", + "bbox": [ + 328, + 286, + 663, + 309 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "From Assumption 2.3 we have ", + "bbox": [ + 173, + 314, + 377, + 329 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/60776325382d53ffc379302cc2bd007615bafade13a29997a5454b14ac1cb486.jpg", + "text": "$$\n\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla F ( { \\mathbf x } ^ { k } ) , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } } \\\\ { = F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla _ { k } + \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle [ \\nabla _ { k } ^ { 2 } + \\mathbf { H } ^ { k } ] { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 334, + 736, + 397 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Use the CauchySchwarz inequality to obtain ", + "bbox": [ + 174, + 398, + 467, + 415 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/724a682108a329e0e34f13c56f9ed7bb22bc39ff9e358f0842cac42f169c8c9e.jpg", + "text": "$$\nF ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf H ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| { \\mathbf h } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| { \\mathbf h } ^ { k } \\| ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 192, + 420, + 777, + 450 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The requirement (9) together with the trust region radius $\\| \\mathbf { h } \\| \\le r = \\sqrt { \\epsilon / L _ { 2 } }$ allows us to bound ", + "bbox": [ + 174, + 455, + 800, + 473 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/20f59b80b78f28c39cababf76e097dc8503b4bdd19e4adab58f76d072d24133d.jpg", + "text": "$$\n\\| \\nabla _ { k } \\| \\| \\mathbf h ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\mathbf h ^ { k } \\| ^ { 2 } \\leq \\frac { 1 } { 3 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 364, + 478, + 633, + 513 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The optimality of (5) indicates that there exists a dual variable $\\lambda ^ { k } \\geq 0$ so that (Corollary 7.2.2 in (Conn et al., 2000)) ", + "bbox": [ + 173, + 520, + 825, + 549 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/76c1bfa5079d2ca5ab495230ca27f14a0fb325aa2f4fbe19b88aeb68dd1ab56f.jpg", + "text": "$$\n\\begin{array} { c } { { \\displaystyle { \\mathrm { F i r s t ~ O r d e r : ~ } } { \\bf { g } } ^ { k } + { \\bf H } ^ { k } { \\bf h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } { \\bf h } ^ { k } = 0 , } } \\\\ { { \\displaystyle \\mathrm { S e c o n d ~ O r d e r : ~ } { \\bf H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\cdot { \\bf I } \\approx 0 , } } \\\\ { { \\displaystyle \\mathrm { C o m p l e m e n t a r y : ~ } \\lambda ^ { k } \\cdot ( \\| { \\bf h } ^ { k } \\| - r ) = 0 . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 553, + 655, + 640 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Multiplying (13) by $\\mathbf { h } ^ { k }$ , we have ", + "bbox": [ + 173, + 645, + 392, + 661 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3ca4b496905c8f950c02fddce5bfead8062c1e2d6890f6ca671ead521c898670.jpg", + "text": "$$\n\\langle \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 382, + 666, + 616, + 699 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Additionally, using (14) we have ", + "bbox": [ + 174, + 703, + 390, + 718 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/9fe5336125356da135765759de8b320f4b0b0bb83a80b24651b692e574126573.jpg", + "text": "$$\n\\langle ( \\mathbf { H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { I } ) \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\geq 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 400, + 722, + 596, + 756 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "which together with (16) gives ", + "bbox": [ + 174, + 760, + 377, + 775 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/946aa56b1d75ac209766be15d8244e904b486e7db7d2e1551e1c66e04611ef36.jpg", + "text": "$$\n\\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\leq 0 .\n$$", + "text_format": "latex", + "bbox": [ + 452, + 772, + 545, + 791 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Moreover, the complementary property (15) indicates $\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }$ as we have $\\lambda ^ { k } > 3 \\sqrt { \\epsilon / L _ { 2 } } > 0$ before MetaAlgorithm 1 terminates. Plug (12), (16), and (17) into (11) and use $\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }$ : ", + "bbox": [ + 174, + 795, + 828, + 828 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/5d9f43775d126fd33c19908719dde4c8f9bdab9615d428224acaa9852c3a134b.jpg", + "text": "$$\nF ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } } { 4 } \\cdot \\frac { \\epsilon } { L _ { 2 } } + \\frac { 1 } { 2 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 344, + 833, + 653, + 868 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Therefore, if we have $\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }$ , then ", + "bbox": [ + 174, + 875, + 468, + 890 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d2678914ca47a96601f43b408625494bc06fbe5a3e6fe963e2b298c694e0db95.jpg", + "text": "$$\nF ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - { \\frac { 1 } { 4 { \\sqrt { L _ { 2 } } } } } \\cdot \\epsilon ^ { 1 . 5 } .\n$$", + "text_format": "latex", + "bbox": [ + 382, + 895, + 616, + 929 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Using Assumption 2.1, we find $\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }$ in no more than $4 \\sqrt { L _ { 2 } } \\cdot ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { * } ) ) / \\epsilon ^ { 1 . 5 }$ iterations. ", + "bbox": [ + 171, + 102, + 823, + 133 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We now show that once $\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }$ , then $\\mathbf { x } ^ { k + 1 }$ is already an $\\mathcal { O } ( \\epsilon )$ -SOSP: From (13), we have ", + "bbox": [ + 176, + 137, + 818, + 155 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/fe5176f9e4fc73913bf17cea59355d763b3609c4969c2274a129d80ca54486ee.jpg", + "text": "$$\n\\| \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } \\| = \\frac { L _ { 2 } \\lambda ^ { k } } { 2 } \\cdot \\| \\mathbf { h } ^ { k } \\| \\leq 2 \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 159, + 622, + 191 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The assumptions $\\lVert \\nabla _ { k } \\rVert \\leq \\epsilon / 6$ and $\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3$ together with the trust region radius $\\| \\mathbf { h } \\| \\leq$ $\\sqrt { \\epsilon / L _ { 2 } }$ imply ", + "bbox": [ + 173, + 196, + 826, + 229 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/361b3602948ad49869427833b2f7dc2ffec583dca112dd5db25b66e21207d4d3.jpg", + "text": "$$\n\\| \\nabla F ( { \\mathbf x } ^ { k } ) + \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } \\| \\leq \\| { \\mathbf g } ^ { k } + { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } \\| + \\| \\nabla _ { k } \\| + \\| \\nabla _ { k } ^ { 2 } \\cdot { \\mathbf h } ^ { k } \\| \\leq 2 . 5 \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 250, + 236, + 746, + 256 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "On the other hand use Assumption 2.3 to bound ", + "bbox": [ + 173, + 261, + 488, + 275 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/48e7f410cff77d58233676d4808238ec882e3f54bf80340cf3f8c99867ddc477.jpg", + "text": "$$\n\\| \\nabla F ( { \\mathbf { x } } ^ { k + 1 } ) - \\nabla F ( { \\mathbf { x } } ^ { k } ) - \\nabla ^ { 2 } F ( { \\mathbf { x } } ^ { k } ) { \\mathbf { h } } ^ { k } \\| \\leq \\frac { L _ { 2 } } { 2 } \\| { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon } { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 299, + 280, + 696, + 310 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Combining these two results gives $\\| \\nabla F ( \\mathbf { x } ^ { k + 1 } ) \\| \\leq 3 \\epsilon$ ", + "bbox": [ + 174, + 316, + 532, + 332 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Besides, using Assumption 2.3, $\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3$ , and (14), we derive the Hessian lower bound ", + "bbox": [ + 176, + 332, + 799, + 348 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e36cc1c7ae4617bfd606174d203031bbdf0f504a87031e63a7bc9653d9b34b71.jpg", + "text": "$$\n\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k + 1 } ) \\approx \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - L _ { 2 } \\cdot \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx \\mathbf { H } ^ { k } - \\sqrt { \\epsilon L _ { 2 } } / 3 \\mathbf { I } - L _ { 2 } \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx - \\sqrt { 1 2 \\epsilon L _ { 2 } } \\mathbf { I } .\n$$", + "text_format": "latex", + "bbox": [ + 210, + 353, + 769, + 375 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Hence $\\mathbf { x } ^ { k + 1 }$ is a $1 2 \\epsilon$ -stationary point. Additionally, we have $\\| \\mathbf { h } ^ { k } \\| = r$ according to the complementary condition (15) for all but the last iteration. □ ", + "bbox": [ + 173, + 381, + 825, + 410 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.2 PROOF OF LEMMA 4.1 ", + "text_level": 1, + "bbox": [ + 174, + 426, + 372, + 440 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. Without loss of generality, we analyze the case $0 \\leq k < q _ { 2 }$ for ease of notation. We first focus on Option II. The proof for Option I follows the similar argument. ", + "bbox": [ + 171, + 452, + 825, + 481 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Option II: Define for $k = 0$ and $i \\in [ s _ { 2 } ^ { \\prime } ]$ ", + "bbox": [ + 176, + 481, + 442, + 494 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/5b59805a4af053ee4fb95c5b42b27008a7e356ff92846c332e497cfc3ff31f58.jpg", + "text": "$$\n\\mathbf { B } _ { i } ^ { 0 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 395, + 501, + 599, + 523 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and define for $k \\geq 1$ and $i \\in [ s _ { 2 } ]$ ", + "bbox": [ + 173, + 527, + 392, + 544 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/1289057aa766bac4d1c804c34e177cedc7345fe754faf9636136f226ac77e204.jpg", + "text": "$$\n\\mathbf { B } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\big ( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 287, + 550, + 709, + 571 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "$\\{ \\mathbf { B } _ { i } ^ { k } \\}$ is a martingale difference sequence. We have for all $k$ and $i$ ", + "bbox": [ + 174, + 575, + 611, + 592 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/1ab1248d3ac8b56df88bfe2bdb5750638f45686b37cd3daf9ffb75238c215762.jpg", + "text": "$$\n\\mathbb { E } [ \\mathbf { B } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 447, + 597, + 549, + 616 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Besides, we use Assumption 2.2 for $k = 0$ to bound ", + "bbox": [ + 173, + 621, + 516, + 636 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/a96ab3c9c32ec3a722ba047b878da8bddd46e3b9d866c8b308c6d60bf12ac7a8.jpg", + "text": "$$\n\\| \\mathbf { B } _ { i } ^ { 0 } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) \\| = 2 L _ { 1 } ,\n$$", + "text_format": "latex", + "bbox": [ + 351, + 640, + 645, + 660 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and use Assumption 2.3 for $k \\geq 1$ to bound ", + "bbox": [ + 174, + 664, + 462, + 679 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/b76551264722383e915a5aec6eda7153275e6f93c5b9292ca46b4842c46f24cc.jpg", + "text": "$$\n\\| \\mathbf { B } _ { i } ^ { k } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\| \\leq 2 \\sqrt { \\epsilon L _ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 232, + 685, + 748, + 705 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "From the construction of $\\mathbf { H } ^ { k }$ , we have ", + "bbox": [ + 174, + 712, + 426, + 727 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/31737fe57bead9ab4a5a9f1ab377ff3604127e5e0167ea5d6d85fd8f50827453.jpg", + "text": "$$\n\\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) = \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } { \\frac { \\mathbf { B } _ { i } ^ { 0 } } { s _ { 2 } ^ { \\prime } } } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } { \\frac { \\mathbf { B } _ { i } ^ { j } } { s _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 356, + 733, + 642, + 780 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Thus using the matrix Azuma’s Inequality in Theorem 7.1 of (Tropp, 2012) and $k \\leq p _ { 2 }$ , we have ", + "bbox": [ + 173, + 784, + 805, + 800 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/f24e6e87a452eaf0ec8450b5212fb193ef6015d4900c4dabd7c2aca6fe52901e.jpg", + "text": "$$\n\\begin{array} { r l } & { P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) \\| \\ge t \\} \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime 2 } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} } \\\\ & { \\qquad \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime } + 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 804, + 771, + 883 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Consequently, we have ", + "bbox": [ + 173, + 886, + 328, + 900 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/0aadfd3a3d67afea7174dde94c4e59b87792f85f47f57d09eb4924bbfb771bad.jpg", + "text": "$$\nP r \\{ \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } \\} \\geq 1 - \\delta / K _ { 0 } .\n$$", + "text_format": "latex", + "bbox": [ + 331, + 906, + 648, + 926 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "by taking √ $t = \\sqrt { \\epsilon L _ { 2 } }$ , $s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )$ , $s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )$ , and $p _ { 2 } =$ $L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )$ . ", + "bbox": [ + 168, + 102, + 825, + 133 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Option I: The proof is similar to the one of Option $\\mathrm { I I }$ except that we replace $\\mathbf { B } _ { i } ^ { 0 }$ with zero matrix. In such case, the matrix Azuma’s Inequality implies ", + "bbox": [ + 171, + 138, + 825, + 170 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/5105acae8fe1efbc1894a40154a10678befebbbcf1d7c774d44a663b7a40f1b8.jpg", + "text": "$$\nP r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( \\mathbf x ^ { k } ) \\| \\geq t \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} .\n$$", + "text_format": "latex", + "bbox": [ + 192, + 174, + 803, + 215 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Thus by taking $t = \\sqrt { \\epsilon L _ { 2 } }$ , $s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )$ , and $p _ { 2 } = { \\sqrt { n } }$ , we have the result. ", + "bbox": [ + 174, + 222, + 736, + 239 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Amortized Complexity: In option I, the choice of parameters ensures that: $s _ { 2 } ^ { \\prime } \\leq p _ { 2 } \\times s _ { 2 }$ and in option II: $n \\leq p _ { 2 } \\times s _ { 2 }$ . Consequently, the amortized stochastic second-order oracle complexity is bounded from above by $2 s _ { 2 }$ . □ ", + "bbox": [ + 173, + 244, + 826, + 286 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.3 PROOF OF LEMMA 4.2 ", + "text_level": 1, + "bbox": [ + 174, + 303, + 374, + 318 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Without loss of generality, we analyze the case $0 \\leq k < q _ { 1 }$ for ease of notation. Define for $k \\geq 1$ and $i \\in [ s _ { 1 } ]$ ", + "bbox": [ + 171, + 329, + 825, + 358 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/9e3fb8e7847a8fe361829154850844ae45dd30a0d6fe4819f9ed0712e27fd699.jpg", + "text": "$$\n\\mathbf { a } _ { i } ^ { k } \\overset { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - ( \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 357, + 691, + 378 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "$\\{ \\mathbf { a } _ { i } ^ { k } \\}$ is a martingale difference sequence: for all $k$ and $i$ ", + "bbox": [ + 174, + 381, + 544, + 396 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f93eff03b18062bc0b677ebdaf30d4cae89642076fbd0c72a353abd16cb8e347.jpg", + "text": "$$\n\\mathbb { E } [ \\mathbf { a } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 449, + 402, + 547, + 421 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Besides, $\\mathbf { a } _ { i } ^ { k }$ has bounded norm: ", + "bbox": [ + 173, + 428, + 382, + 443 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f715a3de97eec7becc8c9300e7ae24b987d9d93081cc43e8995f128f1b3ee07a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathbf { a } _ { i } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad \\leq L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| + L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\qquad \\leq 2 L _ { 1 } \\sqrt { \\epsilon / L _ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 449, + 694, + 513 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "From the construction of $\\mathbf { g } ^ { k }$ , we have ", + "bbox": [ + 173, + 520, + 421, + 535 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/48297e473473875c7e965a5d0d8eb7481ba2dd03849ae39f01c631ccaa95e91f.jpg", + "text": "$$\n\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { a } _ { i } ^ { j } } { s _ { 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 398, + 541, + 598, + 587 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Recall the Azuma’s Inequality. Using $k \\leq p _ { 1 }$ , we have ", + "bbox": [ + 174, + 592, + 534, + 608 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/6610708d9395a9ff6faf13517d35ce1d336cce3c78fa09f4c5fae8c8b605b99a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 \\epsilon L _ { 1 } ^ { 2 } } { L _ { 2 } s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon L _ { 1 } ^ { 2 } p _ { 1 } / \\left( s _ { 1 } L _ { 2 } \\right) } \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 307, + 613, + 689, + 678 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Take $t = \\epsilon / 6$ and denote $c = 1 1 5 2$ . To ensure that ", + "bbox": [ + 173, + 684, + 504, + 699 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/219e48ab6211306275bfa208f98d7c0bf6a9540fcfc0b9811d58976c5755b7a1.jpg", + "text": "$$\n\\begin{array} { r } { P r \\{ \\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\ge \\epsilon / 6 \\} \\le \\delta / K _ { 0 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 369, + 705, + 627, + 726 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "we need $\\begin{array} { r } { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\ \\leq \\ \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } } \\end{array}$ . The best amortized stochastic first-order oracle complexity can be obtained by solving the following two-dimensional programming: ", + "bbox": [ + 173, + 733, + 823, + 767 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/cee4f3f149c9fea3c2a8a24b315552645ff0586f655c92f8c97cc53095e0de72.jpg", + "text": "$$\n\\begin{array} { r l } { \\underset { p _ { 1 } \\geq 1 , s _ { 1 } \\geq 1 } { \\operatorname* { m i n } } } & { ( n + s _ { 1 } ( p _ { 1 } - 1 ) ) / p _ { 1 } } \\\\ { s . t . } & { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\leq \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 387, + 772, + 609, + 835 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "which has the soluthat when we take $\\begin{array} { r } { s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { \\frac { n } { \\epsilon } \\cdot \\frac { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } { L _ { 2 } } } \\} } \\end{array}$ $\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon \\cdot \\frac { L _ { 2 } } { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } } \\rbrace } \\end{array}$ . Note $s _ { 1 } = n$ $\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )$ ", + "bbox": [ + 173, + 842, + 826, + 890 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The amortized stochastic first-order oracle complexity is obtained by plugging in the choice of $s _ { 1 }$ and $p _ { 1 }$ , which completes the proof. ", + "bbox": [ + 173, + 895, + 825, + 925 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.4 PROOF OF LEMMA 5.1 ", + "text_level": 1, + "bbox": [ + 174, + 103, + 372, + 117 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Without loss of generality, we analyze the case $0 \\leq k < q _ { 1 }$ for ease of notation. Define for $k \\geq 1$ and $i \\in [ s _ { 1 } ]$ ", + "bbox": [ + 174, + 128, + 825, + 159 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e52ebd66685c9729a0c3e478a34d1f0d5d56f5fedb103736c94d30b06dbe61d0.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbf { b } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) } & { } \\\\ { - \\left[ \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\right] . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 156, + 694, + 200 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "$\\{ \\mathbf { b } _ { i } ^ { k } \\}$ is a martingale difference sequence: for all $k$ and $i$ ", + "bbox": [ + 176, + 200, + 544, + 215 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/f660f0e6f977b918184ec2c064d86ac6b34604eab53e949ab1a4d4fe716f9881.jpg", + "text": "$$\n\\mathbb { E } [ \\mathbf { b } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 449, + 218, + 547, + 236 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Besides, $\\mathbf { b } _ { i } ^ { k }$ has bounded norm: ", + "bbox": [ + 173, + 237, + 382, + 253 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/07dcf33b984b0e393b017fb1bdbd957b6bc029cdd60d7705e31f39932eefb42d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\| \\mathbf { b } _ { \\star } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { 1 } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| . } \\\\ & { \\quad + \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { \\widetilde { \\mathbf { x } } } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } , } \\\\ & { \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { j } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } } \\\\ & { \\quad = \\| \\int _ { 0 } ^ { 1 } \\left[ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } + t ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) \\right] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) d t \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } L _ { 2 } \\bigg \\| \\mathbf { x } ^ { k } + ( 1 - t ) \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\bigg \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\| + ( 1 - t ) \\| \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\big \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 174, + 255, + 732, + 465 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where the first inequality follows from Assumption 2.3 and the last inequality holds because $\\| \\mathbf { x } ^ { k } - $ $\\tilde { \\mathbf { x } } \\| \\leq k r$ and $\\| \\mathbf { x } ^ { k - 1 } - \\bar { \\tilde { \\mathbf { x } } } \\| \\leq k r$ , where $r$ is the trust region radius. Similarly, we have $\\| \\nabla F ( \\mathbf { x } ^ { k } ) -$ $\\begin{array} { r } { \\nabla F ( { \\mathbf x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { { \\mathbf x } } ) ( \\dot { \\mathbf x } ^ { k } - { \\mathbf x } ^ { k - 1 } ) \\| \\leq L _ { 2 } k r ^ { 2 } } \\end{array}$ . Thus, we bound ", + "bbox": [ + 173, + 465, + 825, + 508 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/181c05d64df01cda8dc29b06a074116dec1fc8866c54aaa09648aedfa82ae906.jpg", + "text": "$$\n\\| \\mathbf { b } _ { i } ^ { k } \\| \\leq 2 L _ { 2 } k r ^ { 2 } \\leq 2 p _ { 1 } \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 416, + 511, + 581, + 530 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "From the construction of $\\mathbf { g } ^ { k }$ , we have ", + "bbox": [ + 173, + 531, + 421, + 546 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/0d859d459e644d295ac6fee6bd28d3a95a5f459bca8bfbe286fb71b07ab7df7f.jpg", + "text": "$$\n\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { b } _ { i } ^ { j } } { s _ { 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 398, + 547, + 598, + 592 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We use $k \\leq p _ { 1 }$ and the Azuma’s inequality to bound ", + "bbox": [ + 174, + 593, + 519, + 608 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/b5064eab451bb9795910961730cc6cfd5f285422035967e6fc64ebe9dce20a50.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( { \\mathbf { x } } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 p _ { 1 } ^ { 2 } \\epsilon ^ { 2 } } { s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon ^ { 2 } p _ { 1 } ^ { 3 } / s _ { 1 } } \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 326, + 609, + 669, + 672 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Thus, by taking $t = \\epsilon / 6$ and $c = 1 1 5 2$ , we need $\\begin{array} { r } { \\frac { s _ { 1 } } { p _ { 1 } ^ { 3 } } \\geq c \\log \\frac { K _ { 0 } } { \\delta } } \\end{array}$ . Further we want $s _ { 1 } p _ { 1 } \\simeq \\mathcal { O } ( n )$ and hence we take $p _ { 1 } = n ^ { 0 . 2 5 }$ and $\\begin{array} { r } { s _ { 1 } = n ^ { 0 . 7 5 } c \\log { \\frac { \\dot { K _ { 0 } } } { \\delta } } } \\end{array}$ . The amortized stochastic first-order oracle complexity is bounded by $2 s _ { 1 }$ . ", + "bbox": [ + 173, + 676, + 828, + 727 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C ANALYSIS OF METAALGORITHM 7 ", + "text_level": 1, + "bbox": [ + 173, + 744, + 498, + 761 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We first show that INEXACTTR $\\mathbf { W E A K }$ finds an $\\mathcal { O } ( \\epsilon )$ -SOSP in $\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )$ iterations with probability at least $2 / 3$ as stated in the following lemma. ", + "bbox": [ + 174, + 773, + 825, + 804 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma C.1. Consider problem $( ~ )$ under Assumptions 2.1-2.3. Suppose that the differential estimators $\\mathbf { g } ^ { k }$ and $\\mathbf { H } ^ { k }$ satisfy Eqn. (9) with probability at least $\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}$ . Besides, suppose that $\\tilde { \\mathbf { h } } ^ { k }$ is an approximate solution to (8) such that w.p. $\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}$ , ", + "bbox": [ + 173, + 805, + 826, + 856 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/2c16ec5c53bf827dae529153d298ea592a3a6e2d9f69bce18185bac35265930a.jpg", + "text": "$$\n\\langle \\mathbf { g } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\tilde { \\mathbf { h } } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle \\leq \\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ,\n$$", + "text_format": "latex", + "bbox": [ + 287, + 857, + 709, + 890 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $\\mathbf { h } ^ { k }$ is a global solution to (8). By setting $\\zeta = 1 / 3$ , $r = \\sqrt { \\epsilon / L _ { 2 } }$ , and $K = 4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }$ , INEXACTTR $\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }$ outputs a 500\u000f-SOSP w.p. at least $2 / 3$ . ", + "bbox": [ + 171, + 893, + 825, + 925 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. Combining (11) and (24), we have w.p. $\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}$ ", + "bbox": [ + 173, + 102, + 552, + 119 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/2f16a65cfa817451421902b5bee412c3789951b3c8f68cdb9bbf2e16f4347e7f.jpg", + "text": "$$\n\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } } \\\\ { + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| + \\displaystyle \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 2 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 310, + 127, + 686, + 195 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where $\\mathbf { h } ^ { k }$ is a global solution to the QCQP (8) and $\\tilde { \\mathbf { h } } ^ { k }$ is an approximate solution satisfying (24). We let $\\lambda ^ { k }$ denote the dual variable corresponding to the global solution $\\mathbf { h } ^ { k }$ as defined in Lemma 2.1. We note that $\\mathbf { h } ^ { k }$ and $\\lambda ^ { k }$ are used only in our analysis. The INEXACT $\\mathrm { w e A K }$ algorithm only requires the approximate solution $\\tilde { \\mathbf { x } } ^ { k }$ without knowledge of $\\mathbf { h } ^ { k }$ or $\\lambda ^ { k }$ . ", + "bbox": [ + 173, + 200, + 826, + 260 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "By the assumption that (9) holds with probability $\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }$ and the fact that $\\| \\tilde { \\mathbf { h } } ^ { k } \\| \\le r = \\sqrt { L _ { 2 } \\epsilon }$ , we have w.p. $\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }$ , ", + "bbox": [ + 174, + 265, + 825, + 303 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/f4fa9225b6f536e955cf7b583aa298251879902ffc6088129ea61db36e3512bd.jpg", + "text": "$$\n\\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 326, + 308, + 671, + 344 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Plugging (16), (17), and (26) into (25) and applying the union bound, we have w.p. at least $\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 2 K } ) } \\end{array}$ ", + "bbox": [ + 173, + 359, + 825, + 377 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/8a02aa228f0aec3132cde4a2fc73e578b05458ea77195a0b69b1c21caf94d387.jpg", + "text": "$$\nF ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } \\| { \\mathbf h } ^ { k } \\| ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } = F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } r ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } ,\n$$", + "text_format": "latex", + "bbox": [ + 246, + 386, + 750, + 421 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the second inequality follows from (15): ", + "bbox": [ + 174, + 424, + 482, + 440 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/8cfbf8890382660d3b47c333a2048ce9c50cfd1b23059f2c3065e521e2bb78ad.jpg", + "text": "$$\n0 = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) ( \\| \\mathbf h ^ { k } \\| + r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| ^ { 2 } - r ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 274, + 446, + 723, + 467 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Summing inequality (27) from $k = 0$ to $K - 1$ and applying the union bound, we have w.p. at least $\\left( 1 - \\zeta / 2 \\right)$ , ", + "bbox": [ + 173, + 473, + 826, + 502 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/bf123e3aef16dd9879bec6b5bb1b84059c93b84a438af694c98cb738aac4d7d7.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } \\le \\frac { 4 ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { K + 1 } ) ) } { L _ { 2 } r ^ { 2 } K } + \\frac { 6 \\epsilon ^ { 1 . 5 } } { L _ { 2 } ^ { 1 . 5 } r ^ { 2 } } \\le \\frac { 4 \\Delta } { \\epsilon K } + \\frac { 6 \\sqrt { \\epsilon } } { \\sqrt { L _ { 2 } } } ,\n$$", + "text_format": "latex", + "bbox": [ + 287, + 502, + 710, + 545 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the second inequality follows from Assumption 2.1 and our choice of the trust region radius. By sampling $\\bar { k }$ uniformly from $\\{ 0 , \\ldots , K - 1 \\}$ , we obtain ", + "bbox": [ + 173, + 549, + 823, + 585 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/107fcb40c963dcd1c5c33403eea00221a5f4ae50e2ed106e29f62798bef2b787.jpg", + "text": "$$\n\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] = \\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } ,\n$$", + "text_format": "latex", + "bbox": [ + 429, + 593, + 566, + 637 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the expectation is taken over the randomness of √ $\\bar { k }$ . Combining (29) and (30) and taking $K = 4 \\Delta \\sqrt { L _ { 2 } } / \\epsilon ^ { 1 . 5 }$ , we have w.p. at least $\\left( 1 - \\zeta / 2 \\right)$ ", + "bbox": [ + 174, + 645, + 825, + 674 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/2ef0ee6dcaed518fd4bee5fe578fc7e61dd7447a85f9346fbe07a3431e91c938.jpg", + "text": "$$\n\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] \\leq \\frac { 7 \\sqrt \\epsilon } { \\sqrt { L _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 446, + 681, + 550, + 717 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Since $\\lambda ^ { k }$ is always no-negative, by Markov’s inequality and the union bound, with probability at least $1 - \\zeta$ , we have ", + "bbox": [ + 174, + 724, + 826, + 752 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/08ed327e45b2a8ba5c293d38c0b17968eabac4292c4c3c7f0fed7a71e005cc76.jpg", + "text": "$$\n\\lambda ^ { \\bar { k } } \\leq \\frac { 1 4 \\sqrt { \\epsilon } } { \\zeta \\sqrt { L _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 452, + 752, + 545, + 787 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "By taking $\\zeta = 1 / 3$ , we have w.p. at least $2 / 3 , \\lambda ^ { \\bar { k } } \\leq 4 2 \\sqrt { \\epsilon / L _ { 2 } }$ . The rest of the proof is similar to Theorem 3.1 and we have the result. ", + "bbox": [ + 173, + 792, + 826, + 823 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The following theorem shows that MetaAlgorithm 7 finds an $\\mathcal { O } ( \\epsilon )$ -SOSP w.p. $( 1 - \\delta )$ after running INEXACTTR $\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }$ for $\\Theta ( \\log ( 1 / \\delta ) )$ times. ", + "bbox": [ + 173, + 840, + 825, + 871 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Theorem C.1 (Iteration Complexity of MetaAlgorithm 7). In the same setting as Lemma C.1, let $\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { l o g } ( 2 / \\delta ) } \\end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0$ , and 32L21\u000fL2 log(4d/δ). Then MetaAlgorithm 7 finds a 600\u000f-SOSP with probability at least $( 1 - \\delta )$ . ", + "bbox": [ + 173, + 875, + 825, + 925 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. By Lemma C.1 and our choice of $T$ , with probability $\\left( 1 - \\delta / 2 \\right)$ , at least one of $\\mathbf { x } ^ { t }$ is a $5 0 0 \\epsilon$ -SOSP. On the other hand, since √ $\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\leq \\psi _ { t } ( \\mathbf { v } ^ { t } ) + \\sqrt { \\epsilon L _ { 2 } }$ with probability $1 - \\delta / 4$ , if $\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }$ , then, w.p. $1 - \\delta / 4$ , ", + "bbox": [ + 173, + 102, + 826, + 148 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/5431faf34f9f7e6007dd3f9fa5c9b878277fae0c6e37d2c7365e0e69be97bd8f.jpg", + "text": "$$\n\\psi _ { t } ( \\mathbf { v } ^ { t } ) \\geq \\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } } - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { 5 5 0 \\epsilon L _ { 2 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 282, + 154, + 714, + 172 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the last inequality follows from our choice of $c _ { 2 }$ . ", + "bbox": [ + 174, + 176, + 537, + 191 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Option I: Since $\\mathbf { H } ^ { t } = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ is the full Hessian, $\\psi _ { t } ( \\mathbf { v } ^ { t } )$ is the smallest eigenvalue of $\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ . \nApplying the union bound, we conclude that MetaAlgorithm 7 outputs a $6 0 0 \\epsilon$ -SOSP w.p. $( 1 - \\delta )$ . ", + "bbox": [ + 173, + 196, + 825, + 227 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Option II: Let $\\mathbf { B } _ { i } : = \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )$ for $i \\in \\mathcal { H }$ , then ", + "bbox": [ + 173, + 232, + 571, + 250 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/82330d1f335568caf45cf8e4281942893a73d002f570e62e7e857cb02656db0c.jpg", + "text": "$$\n\\mathbf { H } ^ { t } - \\boldsymbol { \\nabla } ^ { 2 } F ( \\mathbf { x } ^ { t } ) = \\frac { 1 } { s } \\sum _ { i = 1 } ^ { s } \\mathbf { B } _ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 401, + 252, + 596, + 294 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "By Assumption 2.2, we have ", + "bbox": [ + 174, + 296, + 364, + 311 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/a66b657f6d5e008d7e819d605f1b1407257caed0799a469954f3e07b2a273a77.jpg", + "text": "$$\n\\| \\mathbf { B } _ { i } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\leq 2 L _ { 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 314, + 643, + 333 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Applying the matrix Azuma’s Inequality in Theorem 7.1 of Tropp (2012) leads to ", + "bbox": [ + 173, + 337, + 709, + 352 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/93b547fd9a178797b861f3f6b660d4c1e3c7334f23d4c7a6543ffda48ce10664.jpg", + "text": "$$\nP r \\{ \\| \\mathbf { H } ^ { t } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\ge \\sqrt { \\epsilon L _ { 2 } } \\} \\le d \\cdot \\exp ( \\frac { - \\epsilon L _ { 2 } s } { 3 2 L _ { 1 } ^ { 2 } } ) .\n$$", + "text_format": "latex", + "bbox": [ + 320, + 354, + 676, + 388 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "By taking $\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}$ and applying the union bound, we have with probability $1 - \\delta$ ", + "bbox": [ + 173, + 393, + 784, + 414 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/82fc59a55d1163015ccb3dcb872124de25d906f486abf3f8a4e8261b20f94afb.jpg", + "text": "$$\n\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\approx \\mathbf { H } ^ { t } - \\sqrt { \\epsilon L _ { 2 } } \\mathbf { I } \\approx ( \\psi _ { t } ( \\mathbf { v } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } ) \\mathbf { I } \\approx - \\sqrt { 6 0 0 \\epsilon L _ { 2 } } \\mathbf { I } ,\n$$", + "text_format": "latex", + "bbox": [ + 281, + 419, + 715, + 439 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the last inequality follows from (33). This completes the proof. ", + "bbox": [ + 174, + 443, + 630, + 458 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "D PROOF OF THEOREM 6.1 ", + "text_level": 1, + "bbox": [ + 176, + 477, + 413, + 493 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. We first analyze the computational cost of Lanczos method. By Corollary 2 in (Carmon & Duchi, 2018), for any desired accuracy \u000f˜, Lanczos method achieves this accuracy in $\\begin{array} { r } { \\mathcal { O } ( \\frac { r } { \\sqrt { \\tilde { \\epsilon } } } \\mathrm { l o g } \\frac { r \\sqrt { d } } { \\tilde { \\epsilon } p } ) } \\end{array}$ Lanczos iterations w.p. at least $( 1 - p )$ . Without loss of generality, we assume that the number of Lanczos iterations is strictly smaller than the dimension $d$ , otherwise the QCQP subproblem can be solved exactly. We note that each Lanczos iteration involves computation of one matrix-vector product. Therefore, to satisfy the condition (24) in Lemma C.1, one needs to evaluate $\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )$ Hessian-vector products of the form $\\mathbf { H } ^ { k } \\mathbf { v }$ . Similarly, to solve (10) up to accuracy $\\sqrt { \\epsilon L _ { 2 } }$ w.h.p., one needs to evaluate $\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )$ Hessian-vector products of the form $\\mathbf { H } ^ { t } \\mathbf { v }$ . ", + "bbox": [ + 173, + 507, + 826, + 632 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "In MetaAlgorithm 7, to verify whether the candidate solution $\\mathbf { v } _ { } ^ { t }$ is indeed an $\\mathcal { O } ( \\epsilon )$ -SOSP, one needs at most ${ \\mathcal { O } } ( n )$ stochastic gradient evaluations and $\\mathcal { O } ( \\operatorname* { m i n } \\{ n , \\log ( 4 d / \\delta ) L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) \\} / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } ) )$ stochastic Hessian-vector product evaluations, where the latter one follows from the proof of Theorem 7. We proceed to analyze the computational complexity of the INEXACTTRWEAK procedure. Recall that the iteration complexity of MetaAlgorithm 7 is $\\mathcal { O } ( \\log ( 1 / \\delta ) / \\epsilon ^ { 1 . 5 } )$ . Following Lemma 4.2 and Corollary 4.1, the stochastic first-order oracle complexity is $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )$ . Following the proof of Lemma 4.1 and Corollary 4.1, when $p _ { 2 } = 1$ , the overall stochastic Hessian sample complexity is $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 . 5 } \\} \\log ( 1 / \\delta ) )$ . Since it takes $\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 0 . 2 5 } )$ Lanczos iterations to meet the condition (24) as stated above, the overall stochastic Hessian-vector product oracle complexity is $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } \\} \\log ( 1 / \\delta ) )$ . Combining the stochastic first-order and Hessian-vector product complexities, the overall runtime is $\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )$ . □ ", + "bbox": [ + 173, + 637, + 826, + 800 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "E A FASTER HESSIAN-VECTOR BASED QCQP SOLVER ", + "text_level": 1, + "bbox": [ + 174, + 818, + 648, + 835 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We recall from the previous section that, to approximately solve a quadratic subproblem in ${ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }$ , Lanczos method requires $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 0 . 2 5 } , 1 / \\bar { \\epsilon } ^ { 1 . 2 5 } \\} )$ stochastic Hessian-vector product evaluations. In this section, we propose a faster QCQP solver with an $\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n + n ^ { 0 . 7 5 } / \\epsilon ^ { 0 . 2 5 } , 1 / \\epsilon \\} )$ complexity. Replacing Lanczos method with this QCQP solver in $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ results in a faster Hessian-free method, which we refer to as ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ . ", + "bbox": [ + 173, + 849, + 826, + 924 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "E.1 CONVEX REFORMULATION OF QCQP ", + "text_level": 1, + "bbox": [ + 176, + 103, + 477, + 118 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "To begin with, we present a known result that is key to achieve faster algorithm than Lanczos method. We summarize this result in Lemma E.1 which shows that the trust region subproblem is equivalent to a convex QCQP. ", + "bbox": [ + 174, + 128, + 823, + 171 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Lemma E.1. (Convex Reformulation of QCQP (Flippo & Jansen, 1996; Wang & Xia, 2017)) Denote $\\lambda _ { \\mathrm { m i n } }$ as the smallest eigenvalue of $\\mathbf { H } ^ { k }$ . Let $\\mathbf { u } _ { \\mathrm { m i n } }$ be a corresponding eigenvector. W.l.o.g., we assume that $\\langle \\mathbf { g } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle \\leq 0$ . Let $\\mu = \\operatorname* { m i n } \\{ \\lambda _ { \\operatorname* { m i n } } , 0 \\}$ . Then the QCQP (8) is equivalent to the convex problem ", + "bbox": [ + 173, + 174, + 826, + 218 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/3c259b5f80ea3f9312154d89b17ab811f991e2da8e57c54e7a7d957cbd040c5d.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\substack { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } } q ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\mu I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\mu r ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 300, + 226, + 694, + 258 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "in the sense that (8) and (38) have the same minimum function value. Moreover, when $\\lambda _ { \\operatorname* { m i n } } < 0 ,$ , for any optimal solution of (38), denoted by $\\mathbf { h } _ { c } ^ { k }$ , ", + "bbox": [ + 173, + 260, + 826, + 289 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/4a84f0a66a70d1fd6e8264a455b9841b44c7da5a8599d395dd6b5468a6e797b6.jpg", + "text": "$$\n\\mathbf { h } _ { c } ^ { k } + \\frac { \\sqrt { \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle ^ { 2 } - \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } \\big ( \\| \\mathbf { h } _ { c } ^ { k } \\| ^ { 2 } - r ^ { 2 } \\big ) } - \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle } { \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } } \\mathbf { u } _ { \\mathrm { m i n } }\n$$", + "text_format": "latex", + "bbox": [ + 282, + 291, + 715, + 328 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "is a global minimizer of the original QCQP (8). ", + "bbox": [ + 173, + 330, + 485, + 345 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "To perform the above reformulation, one needs to compute the exact eigenpair $\\left( \\lambda _ { \\operatorname* { m i n } } , \\mathbf { u } _ { \\operatorname* { m i n } } \\right)$ . Nevertheless, as we shall see, it is sufficient to compute an approximate eigenpair $( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )$ such that ", + "bbox": [ + 174, + 354, + 823, + 386 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/a85cc13309ad658a543ec13c6a3f9f3866bf41c82b4eb5baea8eb426643121dc.jpg", + "text": "$$\n\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ,\n$$", + "text_format": "latex", + "bbox": [ + 385, + 395, + 611, + 414 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where \u000f˜ is a target accuracy to be determined later. We note that $\\tilde { \\epsilon } \\leq 2 L _ { 2 }$ w.l.o.g. since $\\| \\mathbf { H } ^ { k } \\| \\leq L _ { 2 }$ . With this approximate eigenpair, it remains to solve the following convex problem ", + "bbox": [ + 173, + 416, + 825, + 444 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/92370e579ccde63752f9debd6649e54b60e3b2dda0048a056aaecb071c1a9b48.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\tilde { q } ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 300, + 446, + 694, + 479 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where $\\tilde { \\mu } = \\mathrm { m i n } \\{ 0 , \\tilde { \\lambda } - \\tilde { \\epsilon } \\}$ . One can check that the problem (41) well approximates (38). ", + "bbox": [ + 174, + 486, + 754, + 501 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Corollary E.1. Let $q _ { * } ^ { k }$ and $\\tilde { q } _ { * } ^ { k }$ be the minimum function value of (38) and (41), respectively. Assume $\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .$ . Then ", + "bbox": [ + 173, + 503, + 821, + 534 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/144b1097a8e6cfa77799b3ee5d9151f9f89fa95e3828e733548c43633f5362a3.jpg", + "text": "$$\n| q _ { * } ^ { k } - \\tilde { q } _ { * } ^ { k } | \\leq \\tilde { \\epsilon } r ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 442, + 536, + 555, + 555 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We note that the above convex reformulation approach divides an indefinite QCQP into two subproblems: (i) computation of an approximate eigenpair $( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )$ ; (ii) solving the convex problem (41). As we shall see, by exploiting the finite-sum structure of the Hessian $\\mathbf { H } ^ { k }$ , these two subproblems can be efficiently solved. We treat these two subproblems in the following two subsections, respectively. ", + "bbox": [ + 173, + 564, + 826, + 623 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "E.2 FINDING THE SMALLEST EIGENVECTOR", + "text_level": 1, + "bbox": [ + 176, + 638, + 495, + 654 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "To find a unit vector that satisfies requirement (40), we resort to the AppxPCA method (Allen-Zhu & Li, 2016), which first finds an approximate eigenvalue $\\lambda = \\lambda _ { \\operatorname* { m i n } } - \\tilde { \\epsilon }$ via binary search and then applies Power method to the positive definite matrix $( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 }$ for a logarithmic number of iterations. Computing $( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 } \\mathbf { v }$ for any vector $\\mathbf { v }$ is equivalent to solving the $\\tilde { \\epsilon }$ -strongly convex problem (Allen-Zhu & Li, 2018) ", + "bbox": [ + 173, + 665, + 825, + 736 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/dac887be88ba8de15c2391acc4b84c9a52c388b533f2345e8611cffc16c8fef5.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\mathbf { u } } \\phi ^ { k } ( \\mathbf { u } ) : = \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\mathbf { H } ^ { k } - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle\n$$", + "text_format": "latex", + "bbox": [ + 357, + 738, + 637, + 768 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We note that $\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\cal { S } | } \\sum _ { i \\in \\cal { S } } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) } \\end{array}$ . Specifically, in $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ , either $| S | = n$ (i.e., $\\mathbf { H } ^ { k }$ is the full Hessian) or $| S | = \\tilde { \\mathcal { O } } ( L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) )$ by Lemma 4.1. Therefore, $\\phi ^ { k } ( \\cdot )$ can be expressed as sum of non-convex functions ", + "bbox": [ + 174, + 771, + 825, + 820 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/eec1192412c143e85db823e72aa5225f155ff2f2d760377afc4b2cc2ceb28aab.jpg", + "text": "$$\n\\phi ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\phi _ { i } ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\left( \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 259, + 820, + 738, + 858 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "By observing that each $\\phi _ { i } ^ { k }$ is non-convex and has $\\left( 4 L _ { 2 } \\right)$ -Lipschitz gradient, we can use KatyushaXS (Allen-Zhu, 2018a) to solve problem (43) in $\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )$ stochastic Hessianvector product (i.e., $\\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\mathbf { u } )$ evaluations. The following result is taken from (Agarwal et al., 2017, Section G.3), which gives the overall computation complexity of AppxPCA. ", + "bbox": [ + 174, + 862, + 826, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Algorithm 9 Fast QCQP Solver ", + "text_level": 1, + "bbox": [ + 174, + 103, + 387, + 118 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Input: $\\mathbf { H } ^ { k } , \\mathbf { g } ^ { k } , r , \\tilde { \\epsilon } , \\tilde { \\epsilon } _ { 1 }$ ", + "bbox": [ + 174, + 123, + 328, + 138 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "1: Use AppxPCA to find $( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )$ satisfying (40), in which the matrix inverse is solved by KatyushaXS; \n2: Use KatyushaXW to solve (41) up to accuracy $\\tilde { \\epsilon } _ { 1 }$ , i.e., find a vector $\\tilde { \\mathbf { h } }$ such that $\\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } \\leq \\tilde { \\epsilon } _ { 1 }$ with high probability; \n3: Return $\\tilde { \\mathbf { h } } + ( \\sqrt { \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ^ { 2 } - \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } ( \\| \\tilde { \\mathbf { h } } \\| ^ { 2 } - r ^ { 2 } ) } - \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ) \\tilde { \\mathbf { u } } / \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } .$ ", + "bbox": [ + 178, + 133, + 826, + 209 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Algorithm 10 STRfree+ ", + "text_level": 1, + "bbox": [ + 174, + 223, + 330, + 238 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "1: In the same setting as MetaAlgorithm 7, \n2: construct gradient estimator $\\mathbf { g } ^ { k }$ by Estimator 4; \n3: construct Hessian estimator $\\mathbf { H } ^ { k }$ by \n4: Option I: $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )$ ; \n5: Option II: Draw $s$ samples indexed by $\\mathcal { H }$ and let $\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )$ ; \n6: use Algorithm 9 to solve QCQP subproblems. ", + "bbox": [ + 178, + 242, + 692, + 327 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma E.2. Let $\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\cal S } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\in \\mathbb { R } ^ { d \\times d } } \\end{array}$ , where $\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }$ . With probability at least $1 - p ,$ , AppxPCA produces a unit vector u satisfying $\\mathbf { u } ^ { T } \\mathbf { H } ^ { k } \\mathbf { u } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .$ . The total stochastic Hessian-vector product oracle complexity is $\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )$ . ", + "bbox": [ + 173, + 338, + 820, + 390 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "E.3 SOLVING THE CONVEX QCQP ", + "text_level": 1, + "bbox": [ + 176, + 406, + 428, + 422 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In what follows, we show that the convex problem (41) can be solved efficiently. We first observe that problem (41) has a finite-sum structure and can be rewritten as an unconstrained problem of the form ", + "bbox": [ + 173, + 434, + 823, + 463 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/3801b173622be69c84e2ae4917f4dd8581c66820bf6fb61fa7f318f2e17b01f4.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\mathbf { h \\in \\mathbb { R } } ^ { d } } \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\tilde { q } _ { i } ^ { k } ( \\mathbf { h } ) + \\Psi ( \\mathbf { h } ) = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\Big ( \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 } \\Big ) + \\Psi ( \\mathbf { h } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 179, + 469, + 787, + 508 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where $\\Psi ( { \\bf h } ) = 0$ if $\\| \\mathbf { h } \\| \\leq r$ , otherwise $\\Psi ( \\mathbf { h } ) \\ = \\ + \\infty$ . We note that each $\\tilde { q } _ { i } ^ { k } ( \\mathbf { h } )$ in (45) has $\\left( 4 L _ { 2 } \\right)$ -Lipschitz continuous gradient since $\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }$ and $\\tilde { \\epsilon } \\leq 2 L _ { 2 }$ . Therefore, we can use KatyushaX $\\mathrm { w }$ (Allen-Zhu, 2018a) to solve (45). By (Allen-Zhu, 2018a, Theorem 4.6), KatyushaXW finds a point h such that $\\mathbb { E } [ \\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } ] \\leq \\tilde { \\epsilon } _ { 1 }$ using $\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } } \\cdot r / \\sqrt { \\tilde { \\epsilon } _ { 1 } } )$ stochastic Hessianvector products, where $\\tilde { \\epsilon } _ { 1 }$ is the target accuracy to be determined later. ", + "bbox": [ + 173, + 516, + 826, + 590 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "E.4 PUTTING IT ALL TOGETHER ", + "text_level": 1, + "bbox": [ + 176, + 608, + 413, + 623 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "The complete procedure of our fast QCQP solver is summarized in Algorithm 9. Combining all the above results and setting $r = \\sqrt { \\epsilon / L _ { 2 } }$ , $\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2$ , and $\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }$ , one can find an approximate solution to QCQP (8) satisfying requirement (24) in ${ \\tilde { \\mathcal { O } } } ( | S | + | S | ^ { 3 / 4 } L _ { 2 } ^ { 0 . 2 5 } / \\epsilon ^ { 0 . 2 5 } )$ stochastic Hessianvector product evaluations. By replacing Lanczos method with this solver in $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ , we derive a new Hessian-free method called ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ , which is summarized in Algorithm 10. The following theorem establishes the overall runtime complexity of ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }$ for finding an $\\epsilon$ -SOSP. ", + "bbox": [ + 173, + 635, + 826, + 724 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Theorem E.1. Consider Algorithm 10 for solving problem (1). Let $\\zeta = 1 / 3$ , $r = \\sqrt { \\epsilon / L _ { 2 } }$ , $K =$ $4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }$ , $\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } } ( 2 / \\delta ) } \\end{array}$ , $c _ { 1 } = 6 0 0$ , $c _ { 2 } = 5 0 0 \\mathrm { \\Omega }$ , and 32L21\u000fL2 log(4d/δ). The hyper-parameters√ in Estimator 4 are set to the same values as those in Lemma 4.2. Besides, let $\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2$ and $\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }$ in Algorithm 9. To find an $O ( \\epsilon ) { - } S O S P ~ w . p$ . at least $1 - \\delta$ , the runtime complexity is $\\tilde { \\mathcal { O } } ( d \\mathrm { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )$ . ", + "bbox": [ + 173, + 729, + 826, + 814 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. The proof directly follows from that in Sec. D. ", + "bbox": [ + 174, + 832, + 529, + 847 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "We compare the runtime complexity of $\\operatorname { S T R } _ { \\mathrm { f r e e } }$ and ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ with existing Hessian free methods in Table 2. One can see that $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ strictly outperforms Hessian-free Cubic. Besides, $\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }$ outperforms Fast-Cubic if $n \\ge \\Omega ( 1 / \\epsilon ^ { 4 / 3 } )$ , which is a mild condition for large-scale problems in the moderate accuracy case. ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }$ strictly outperforms both Hessian-free Cubic and Fast-Cubic. We note that the runtime analyses in (Tripuraneni et al., 2018; Zhou & Gu, 2019) rely on an additional assumption which states that for all $\\mathbf { x }$ , with probability 1, ", + "bbox": [ + 174, + 866, + 825, + 924 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/95ff5517569e6471795a7c5ec47d8ab253bfdb1a9cc4c1823c6362cb6ef03d6f.jpg", + "image_caption": [ + "Figure 4: Comparison of gradient norm on both the non-convex logistic regression and nonlinear least square problems. " + ], + "image_footnote": [], + "bbox": [ + 173, + 104, + 821, + 417 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 478, + 823, + 507 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/509f068284501f3903883673b0d3857c02310b9d5bdc531a8c42ef5487a8f873.jpg", + "text": "$$\n\\begin{array} { r } { \\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla F ( \\mathbf { x } ) \\| \\leq \\sigma . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 411, + 513, + 586, + 531 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Under this additional assumption, one can use the same argument as in Section B.2 and B.3 to prove that ${ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }$ achieves a runtime complexity of $\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , n ^ { 0 . 5 } / \\epsilon ^ { 2 } + 1 / \\epsilon ^ { 2 . 7 5 } , 1 / \\epsilon ^ { 3 } \\} ) ^ { 1 }$ . Similarly, the runtime complexity of ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }$ would be $\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } +$ $\\sqrt { n } / \\epsilon ^ { 2 } , \\dot { 1 } / \\epsilon ^ { 3 } \\} ,$ ). In this sense, both ${ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }$ and ${ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +$ outperform Stochastic Cubic and $\\mathrm { S R V R C _ { \\mathrm { f r e e } } }$ . ", + "bbox": [ + 176, + 537, + 826, + 599 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/aaa7db88de47855f51ef9ff0d5360222271a70e204d05e9934103bd4e1614d5a.jpg", + "table_caption": [ + "Table 3: Descriptions of the five testing datasets. " + ], + "table_footnote": [], + "table_body": "
#sample#feature#sample#feature
a9a32.561123w8a49,749300
ijcnn49,99022phishing7,60468
codrna28.3058mnist60,000784
epsilon40,0002,000
", + "bbox": [ + 271, + 630, + 718, + 707 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "F ADDITIONAL EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 173, + 728, + 535, + 744 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "F.1 MORE EXPERIMENTAL DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 790, + 437, + 805 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Descriptions of Testing Datasets. We briefly introduce the seven testing datasets in the manuscript. Among them, six datasets are provided by the LibSVM website2, including (a9a, ijcnn, codrna, phishing, w8a and epsilon). The detailed information is summarized in Table 3. We can observe that these datasets are different from each other in feature dimension, training samples, etc. ", + "bbox": [ + 173, + 816, + 826, + 873 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Experimental Settings. In the manuscript, following SVRC (Zhou et al., 2018c) and LiteSVRC (Zhou et al., 2018b), we select hyper parameters from a set, namely $s _ { 1 }$ from $\\{ 0 . 2 n , 0 . 6 n , n \\}$ $s _ { 2 }$ from $\\lbrace 0 . 0 1 n , 0 . 1 n , 0 . 2 n \\rbrace$ , $p _ { 1 }$ and $p _ { 2 }$ from $\\{ 0 . 0 1 n ^ { 0 . 5 } , 0 . 0 5 n ^ { 0 . 5 } , 0 . 1 n ^ { 0 . 5 } \\}$ . For the Hessian estimation at the beginning of each $p _ { 2 }$ iterations, we use full Hessian. Similarly, for the gradient estimation at the beginning of each $p _ { 1 }$ iterations, we adopt the full gradient as the gradient estimation. ", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Memory Analysis. SVRC, Lite-SVRC, and our method need to store the previous and current gradient and Hessian and thus their memory complexity is $2 ( d ^ { 2 } + d )$ . TR, CR (ARC) and SCR need to compute current and Hessian and thus has complexity $d ^ { 2 } + d$ . So these memory is of the same order but our method is much faster than TR, CR and SCR both validated by theory and experiments. ", + "bbox": [ + 174, + 180, + 825, + 236 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "F.2 MORE EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 253, + 362, + 267 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Here we give more experimental results on the gradient norm v.s. the algorithm running time and the Hessian sample complexity. Due to the space limit, in the manuscript we only provide the gradient-norm related results on the codrna dataset. Here we provide results of a9a and ijcnn datasets in Figure 4. One can observe that on both the logistic regression with non-convex regularizer and the nonlinear least square problems, the proposed algorithm always shows sharper convergence behavior in terms of both the running time and the Hessian sample complexity. These observations are consistent with the results in Figure 2 in the manuscript. All these results demonstrate the high efficiency of our proposed algorithm and also confirm our theoretical implication. ", + "bbox": [ + 174, + 279, + 825, + 391 + ], + "page_idx": 21 + } +] \ No newline at end of file diff --git a/parse/train/HkxJpnVtPr/HkxJpnVtPr_middle.json b/parse/train/HkxJpnVtPr/HkxJpnVtPr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..0c879ea588d605384c526fb1ddaba46f2724f706 --- /dev/null +++ b/parse/train/HkxJpnVtPr/HkxJpnVtPr_middle.json @@ -0,0 +1,76236 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 508, + 98 + ], + "score": 1.0, + "content": "A STOCHASTIC TRUST REGION METHOD FOR NON-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 287, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 287, + 117 + ], + "score": 1.0, + "content": "CONVEX MINIMIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 469, + 326 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 470, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 470, + 223 + ], + "score": 1.0, + "content": "We target the problem of finding a local minimum in non-convex finite-sum min-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "score": 1.0, + "content": "imization. Towards this goal, we first prove that the trust region method with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 234, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 470, + 246 + ], + "score": 1.0, + "content": "inexact gradient and Hessian estimation can achieve a convergence rate of order", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 244, + 471, + 259 + ], + "spans": [ + { + "bbox": [ + 142, + 244, + 187, + 258 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 244, + 471, + 259 + ], + "score": 1.0, + "content": "as long as those differential estimations are sufficiently accurate. Com-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 269 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 269 + ], + "score": 1.0, + "content": "bining such result with a novel Hessian estimator, we propose a sample-efficient√", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 363, + 280 + ], + "score": 1.0, + "content": "stochastic trust region (STR) algorithm which finds an", + "type": "text" + }, + { + "bbox": [ + 363, + 267, + 392, + 280 + ], + "score": 0.93, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "-approximate local", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 210, + 293 + ], + "score": 1.0, + "content": "minimum within", + "type": "text" + }, + { + "bbox": [ + 210, + 279, + 261, + 293 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 280, + 469, + 293 + ], + "score": 1.0, + "content": "stochastic Hessian oracle queries. This improves the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 281, + 306 + ], + "score": 1.0, + "content": "state-of-the-art result by a factor of", + "type": "text" + }, + { + "bbox": [ + 281, + 291, + 316, + 304 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n ^ { 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 291, + 470, + 306 + ], + "score": 1.0, + "content": ". Finally, we also develop Hessian-free", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "score": 1.0, + "content": "STR algorithms which achieve the lowest runtime complexity. Experiments verify", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 315, + 421, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 421, + 327 + ], + "score": 1.0, + "content": "theoretical conclusions and the efficiency of the proposed algorithms.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 346, + 206, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 208, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 208, + 362 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 396, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 397, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 397, + 385 + ], + "score": 1.0, + "content": "We consider the following finite-sum non-convex minimization problem", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 387, + 366, + 413 + ], + "lines": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "spans": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\mathbf { x } \\in \\mathbb { R } ^ { d } } F ( \\mathbf { x } ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "5bc941f3b76f7588e96135223fb099d13cb31a550c3fcc643fd514ba8ede29cb.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 302, + 432 + ], + "score": 1.0, + "content": "where each (non-convex) component function", + "type": "text" + }, + { + "bbox": [ + 302, + 418, + 364, + 431 + ], + "score": 0.91, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 418, + 450, + 432 + ], + "score": 1.0, + "content": "is assumed to have", + "type": "text" + }, + { + "bbox": [ + 450, + 420, + 462, + 430 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "-Lipschitz", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 205, + 443 + ], + "score": 1.0, + "content": "continuous gradient and", + "type": "text" + }, + { + "bbox": [ + 205, + 431, + 218, + 442 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "-Lipschitz continuous Hessian. Since first-order stationary points could", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "be saddle points with inferior generalization performance (Dauphin et al., 2014), in this work we are√", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 452, + 499, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 252, + 465 + ], + "score": 1.0, + "content": "particularly interested in computing", + "type": "text" + }, + { + "bbox": [ + 252, + 452, + 281, + 464 + ], + "score": 0.91, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 452, + 461, + 465 + ], + "score": 1.0, + "content": "-approximate second-order stationary points,", + "type": "text" + }, + { + "bbox": [ + 461, + 454, + 466, + 462 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 452, + 499, + 465 + ], + "score": 1.0, + "content": "-SOSP:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 469, + 400, + 485 + ], + "lines": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "spans": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| \\nabla F ( { \\bf x } _ { \\epsilon } ) \\| \\le \\epsilon \\quad \\mathrm { a n d } \\quad \\nabla ^ { 2 } F ( { \\bf x } _ { \\epsilon } ) \\succcurlyeq - \\sqrt { L _ { 2 } \\epsilon } { \\bf I } . } \\end{array}", + "type": "interline_equation", + "image_path": "e51134a96f8117ef906583db50c1c35f049a30e8b883be7e1e2aa53e9c2854bd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "To find a local minimum of problem (1), the cubic regularization approach (Nesterov & Polyak,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 501, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 507, + 513 + ], + "score": 1.0, + "content": "2006) and the trust region algorithm (Conn et al., 2000; Curtis et al., 2017) are two classical methods.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 433, + 525 + ], + "score": 1.0, + "content": "Specifically, cubic regularization forms a cubic surrogate function for the objective", + "type": "text" + }, + { + "bbox": [ + 433, + 512, + 455, + 524 + ], + "score": 0.92, + "content": "F ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "by adding a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 524, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 506, + 535 + ], + "score": 1.0, + "content": "third-order regularization term to the second-order Taylor expansion, and minimizes it iteratively.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 260, + 547 + ], + "score": 1.0, + "content": "Such a method is proved to achieve an", + "type": "text" + }, + { + "bbox": [ + 260, + 534, + 304, + 547 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 533, + 462, + 547 + ], + "score": 1.0, + "content": "global convergence rate and thus needs", + "type": "text" + }, + { + "bbox": [ + 462, + 534, + 505, + 547 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "stochastic first- and second-order oracle queries, namely the evaluation number of stochastic gradient", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "and Hessian, to achieve a point that satisfies (2). On the other hand, trust region algorithms estimate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "the objective with its second-order Taylor expansion but minimize it only within a local region.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 593 + ], + "score": 1.0, + "content": "Recently, Curtis et al. (2017) proposes a trust region variant to achieve the same convergence rate as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "the cubic regularization approach. But both methods require computing full gradients and Hessians", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 420, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 117, + 613 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 601, + 140, + 613 + ], + "score": 0.92, + "content": "F ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 600, + 420, + 613 + ], + "score": 1.0, + "content": "and thus suffer from high computational cost in large-scale problems.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "To avoid costly exact differential evaluations, many works explore the finite-sum structure of prob-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "lem (1) and develop stochastic cubic regularization approaches. Both Kohler & Lucchi (2017b)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "and Xu et al. (2017) propose to directly subsample the gradient and Hessian in the cubic surrogate", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 192, + 665 + ], + "score": 1.0, + "content": "function, and achieve", + "type": "text" + }, + { + "bbox": [ + 192, + 650, + 234, + 664 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 3 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 650, + 252, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 650, + 293, + 664 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "stochastic first- and second-order oracle complexities", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "respectively. By plugging a stochastic variance reduced estimator (Johnson & Zhang, 2013) and the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "Hessian tracking technique (Gower et al., 2018) into the gradient and Hessian estimation, the approach", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "score": 1.0, + "content": "in (Zhou et al., 2018a) improves both the stochastic first- and second-order oracle complexities to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 694, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 107, + 696, + 160, + 709 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 8 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 694, + 506, + 711 + ], + "score": 1.0, + "content": ". Recently, Zhang et al. (2018) and Zhou et al. (2018b) develop more efficient stochastic", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 708, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 720 + ], + "score": 1.0, + "content": "cubic regularization variants, which further reduce the stochastic second-order oracle complexity to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 718, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 719, + 162, + 732 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } \\bar { / } \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 718, + 444, + 733 + ], + "score": 1.0, + "content": "at the cost of increasing the stochastic first-order oracle complexity to", + "type": "text" + }, + { + "bbox": [ + 444, + 719, + 498, + 733 + ], + "score": 0.93, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 2 \\bar { / } 3 } / \\epsilon ^ { 2 . \\bar { 5 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 718, + 504, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 508, + 98 + ], + "score": 1.0, + "content": "A STOCHASTIC TRUST REGION METHOD FOR NON-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 287, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 287, + 117 + ], + "score": 1.0, + "content": "CONVEX MINIMIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 469, + 326 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 470, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 470, + 223 + ], + "score": 1.0, + "content": "We target the problem of finding a local minimum in non-convex finite-sum min-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "score": 1.0, + "content": "imization. Towards this goal, we first prove that the trust region method with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 234, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 470, + 246 + ], + "score": 1.0, + "content": "inexact gradient and Hessian estimation can achieve a convergence rate of order", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 244, + 471, + 259 + ], + "spans": [ + { + "bbox": [ + 142, + 244, + 187, + 258 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 244, + 471, + 259 + ], + "score": 1.0, + "content": "as long as those differential estimations are sufficiently accurate. Com-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 269 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 269 + ], + "score": 1.0, + "content": "bining such result with a novel Hessian estimator, we propose a sample-efficient√", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 363, + 280 + ], + "score": 1.0, + "content": "stochastic trust region (STR) algorithm which finds an", + "type": "text" + }, + { + "bbox": [ + 363, + 267, + 392, + 280 + ], + "score": 0.93, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "-approximate local", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 210, + 293 + ], + "score": 1.0, + "content": "minimum within", + "type": "text" + }, + { + "bbox": [ + 210, + 279, + 261, + 293 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 280, + 469, + 293 + ], + "score": 1.0, + "content": "stochastic Hessian oracle queries. This improves the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 281, + 306 + ], + "score": 1.0, + "content": "state-of-the-art result by a factor of", + "type": "text" + }, + { + "bbox": [ + 281, + 291, + 316, + 304 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n ^ { 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 291, + 470, + 306 + ], + "score": 1.0, + "content": ". Finally, we also develop Hessian-free", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "score": 1.0, + "content": "STR algorithms which achieve the lowest runtime complexity. Experiments verify", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 315, + 421, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 421, + 327 + ], + "score": 1.0, + "content": "theoretical conclusions and the efficiency of the proposed algorithms.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 141, + 212, + 471, + 327 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 346, + 206, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 208, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 208, + 362 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 396, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 397, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 397, + 385 + ], + "score": 1.0, + "content": "We consider the following finite-sum non-convex minimization problem", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 370, + 397, + 385 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 387, + 366, + 413 + ], + "lines": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "spans": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\mathbf { x } \\in \\mathbb { R } ^ { d } } F ( \\mathbf { x } ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "5bc941f3b76f7588e96135223fb099d13cb31a550c3fcc643fd514ba8ede29cb.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 243, + 387, + 366, + 413 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 302, + 432 + ], + "score": 1.0, + "content": "where each (non-convex) component function", + "type": "text" + }, + { + "bbox": [ + 302, + 418, + 364, + 431 + ], + "score": 0.91, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 418, + 450, + 432 + ], + "score": 1.0, + "content": "is assumed to have", + "type": "text" + }, + { + "bbox": [ + 450, + 420, + 462, + 430 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "-Lipschitz", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 205, + 443 + ], + "score": 1.0, + "content": "continuous gradient and", + "type": "text" + }, + { + "bbox": [ + 205, + 431, + 218, + 442 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "-Lipschitz continuous Hessian. Since first-order stationary points could", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "be saddle points with inferior generalization performance (Dauphin et al., 2014), in this work we are√", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 452, + 499, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 252, + 465 + ], + "score": 1.0, + "content": "particularly interested in computing", + "type": "text" + }, + { + "bbox": [ + 252, + 452, + 281, + 464 + ], + "score": 0.91, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 452, + 461, + 465 + ], + "score": 1.0, + "content": "-approximate second-order stationary points,", + "type": "text" + }, + { + "bbox": [ + 461, + 454, + 466, + 462 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 452, + 499, + 465 + ], + "score": 1.0, + "content": "-SOSP:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 418, + 506, + 465 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 469, + 400, + 485 + ], + "lines": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "spans": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| \\nabla F ( { \\bf x } _ { \\epsilon } ) \\| \\le \\epsilon \\quad \\mathrm { a n d } \\quad \\nabla ^ { 2 } F ( { \\bf x } _ { \\epsilon } ) \\succcurlyeq - \\sqrt { L _ { 2 } \\epsilon } { \\bf I } . } \\end{array}", + "type": "interline_equation", + "image_path": "e51134a96f8117ef906583db50c1c35f049a30e8b883be7e1e2aa53e9c2854bd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 210, + 469, + 400, + 485 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "To find a local minimum of problem (1), the cubic regularization approach (Nesterov & Polyak,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 501, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 507, + 513 + ], + "score": 1.0, + "content": "2006) and the trust region algorithm (Conn et al., 2000; Curtis et al., 2017) are two classical methods.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 433, + 525 + ], + "score": 1.0, + "content": "Specifically, cubic regularization forms a cubic surrogate function for the objective", + "type": "text" + }, + { + "bbox": [ + 433, + 512, + 455, + 524 + ], + "score": 0.92, + "content": "F ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "by adding a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 524, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 506, + 535 + ], + "score": 1.0, + "content": "third-order regularization term to the second-order Taylor expansion, and minimizes it iteratively.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 260, + 547 + ], + "score": 1.0, + "content": "Such a method is proved to achieve an", + "type": "text" + }, + { + "bbox": [ + 260, + 534, + 304, + 547 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 533, + 462, + 547 + ], + "score": 1.0, + "content": "global convergence rate and thus needs", + "type": "text" + }, + { + "bbox": [ + 462, + 534, + 505, + 547 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "stochastic first- and second-order oracle queries, namely the evaluation number of stochastic gradient", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "and Hessian, to achieve a point that satisfies (2). On the other hand, trust region algorithms estimate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "the objective with its second-order Taylor expansion but minimize it only within a local region.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 593 + ], + "score": 1.0, + "content": "Recently, Curtis et al. (2017) proposes a trust region variant to achieve the same convergence rate as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "the cubic regularization approach. But both methods require computing full gradients and Hessians", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 420, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 117, + 613 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 601, + 140, + 613 + ], + "score": 0.92, + "content": "F ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 600, + 420, + 613 + ], + "score": 1.0, + "content": "and thus suffer from high computational cost in large-scale problems.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 489, + 507, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "To avoid costly exact differential evaluations, many works explore the finite-sum structure of prob-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "lem (1) and develop stochastic cubic regularization approaches. Both Kohler & Lucchi (2017b)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "and Xu et al. (2017) propose to directly subsample the gradient and Hessian in the cubic surrogate", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 192, + 665 + ], + "score": 1.0, + "content": "function, and achieve", + "type": "text" + }, + { + "bbox": [ + 192, + 650, + 234, + 664 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 3 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 650, + 252, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 650, + 293, + 664 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "stochastic first- and second-order oracle complexities", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "respectively. By plugging a stochastic variance reduced estimator (Johnson & Zhang, 2013) and the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "Hessian tracking technique (Gower et al., 2018) into the gradient and Hessian estimation, the approach", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "score": 1.0, + "content": "in (Zhou et al., 2018a) improves both the stochastic first- and second-order oracle complexities to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 694, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 107, + 696, + 160, + 709 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 8 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 694, + 506, + 711 + ], + "score": 1.0, + "content": ". Recently, Zhang et al. (2018) and Zhou et al. (2018b) develop more efficient stochastic", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 708, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 720 + ], + "score": 1.0, + "content": "cubic regularization variants, which further reduce the stochastic second-order oracle complexity to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 718, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 719, + 162, + 732 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } \\bar { / } \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 718, + 444, + 733 + ], + "score": 1.0, + "content": "at the cost of increasing the stochastic first-order oracle complexity to", + "type": "text" + }, + { + "bbox": [ + 444, + 719, + 498, + 733 + ], + "score": 0.93, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 2 \\bar { / } 3 } / \\epsilon ^ { 2 . \\bar { 5 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 718, + 504, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 617, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 129, + 483, + 235 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Stochastic first- and second-order oracle complexities, SFO and SSO for short respectively,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 104 + ], + "score": 1.0, + "content": "of the proposed STR approaches and other state-of-the-art methods. When SSO is prioritized, our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 130, + 113 + ], + "score": 0.88, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "has strictly better complexity than both SCR and Lite-SVRC. When SFO and SSO are treated", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 320, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 140, + 126 + ], + "score": 1.0, + "content": "equally,", + "type": "text" + }, + { + "bbox": [ + 140, + 113, + 164, + 124 + ], + "score": 0.88, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 114, + 320, + 126 + ], + "score": 1.0, + "content": "improves the existing result in SVRC.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 128, + 129, + 483, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 129, + 483, + 235 + ], + "spans": [ + { + "bbox": [ + 128, + 129, + 483, + 235 + ], + "score": 0.984, + "html": "
AlgorithmSFOSSO
TR (Conn et al., 2000; Curtis et al., 2017)CR (Nesterov & Polyak, 2006)SCR (Kohler & Lucchi, 2017a)SVRC (Zhou et al., 2018c)Lite-SVRC (Zhou et al., 2018b)0(共n01.5013.52.5O n共0(1.50(1(.5)6国1.5
STRi (this paper)STR2 (this paper)O(min{n1.5,1.5O(min{1,1.5
", + "type": "table", + "image_path": "641aadcafe1f9fc794a90c86245d00127cccfe259998bf5b8664df3dd144c614.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 128, + 129, + 483, + 164.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 164.33333333333334, + 483, + 199.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 128, + 199.66666666666669, + 483, + 235.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "Contributions: In this paper we propose and exploit a formulation in which we make explicit control", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 253, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 264 + ], + "score": 1.0, + "content": "of the step size in the trust region method. This idea is leveraged to develop two efficient stochastic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 262, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 276 + ], + "score": 1.0, + "content": "trust region (STR) approaches. We tailor our methods to achieve state-of-the-art oracle complexities", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 274, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 286 + ], + "score": 1.0, + "content": "under the following two measurements: (i) the stochastic second-order oracle complexity is prioritized;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "(ii) the stochastic first- and second-order oracle complexities are treated equally. Specifically, in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 205, + 309 + ], + "score": 1.0, + "content": "Setting (i), our method", + "type": "text" + }, + { + "bbox": [ + 206, + 296, + 230, + 307 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "employs a newly proposed estimator to approximate the Hessian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "and adopts the estimator in (Fang et al., 2018) for gradient approximation. Our novel Hessian", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "estimator maintains an accurate second-order differential approximation with lower amortized oracle", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 328, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 211, + 344 + ], + "score": 1.0, + "content": "complexity. In this way,", + "type": "text" + }, + { + "bbox": [ + 211, + 330, + 235, + 342 + ], + "score": 0.89, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 328, + 275, + 344 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + }, + { + "bbox": [ + 276, + 329, + 376, + 343 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ 1 / \\epsilon ^ { 2 } , \\sqrt { n } / \\epsilon ^ { 1 . 5 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 328, + 506, + 344 + ], + "score": 1.0, + "content": "stochastic second-order oracle", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "complexity. This is lower than existing results for solving problem (1). In Setting (ii), our method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 131, + 363 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 352, + 282, + 365 + ], + "score": 1.0, + "content": "substitutes the gradient estimator in", + "type": "text" + }, + { + "bbox": [ + 282, + 352, + 307, + 363 + ], + "score": 0.9, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "with one that integrates stochastic gradient and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 441, + 376 + ], + "score": 1.0, + "content": "Hessian together to maintain an accurate gradient approximation. As a result,", + "type": "text" + }, + { + "bbox": [ + 441, + 363, + 466, + 375 + ], + "score": 0.86, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 168, + 389 + ], + "score": 1.0, + "content": "convergence in", + "type": "text" + }, + { + "bbox": [ + 169, + 374, + 223, + 388 + ], + "score": 0.94, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "overall stochastic first- and second-order oracle queries. Finally, based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 384, + 399 + ], + "score": 1.0, + "content": "on STR, we further develop Hessian-free STR algorithms, namely", + "type": "text" + }, + { + "bbox": [ + 385, + 387, + 416, + 398 + ], + "score": 0.84, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 387, + 436, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 436, + 387, + 473, + 398 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 387, + 505, + 399 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "score": 1.0, + "content": "outperform existing Hessian-free algorithms theoretically.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 419, + 203, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 204, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 204, + 431 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "Computing local minimum to a non-convex optimization problem is gaining considerable amount of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "attentions in recent years. Both cubic regularization (CR) approaches (Nesterov & Polyak, 2006)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and trust region (TR) algorithms (Conn et al., 2000; Curtis et al., 2017) can escape saddle points", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "and find a local minimum by iterating the variable along the direction related to the eigenvector of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "the Hessian with the most negative eigenvalue. As the CR heavily depends on the regularization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "parameter for the cubic term, Cartis et al. (2011) propose an adaptive cubic regularization (ARC)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "approach to boost the efficiency by adaptively tuning the regularization parameter according to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "current objective decrease. Noting the high cost of full gradient and Hessian computation in ARC,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a) is developed for sampling partial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "data points to estimate the full gradient and Hessian. Recently, by exploring the finite-sum structure", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "of the target problem, many works incorporate variance reduction technique (Johnson & Zhang, 2013)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "into CR and propose stochastic variance-reduced methods. For example, Zhou et al. (2018c) propose", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "stochastic variance-reduced cubic (SVRC) in which they integrate the stochastic variance-reduced", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "gradient estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 303, + 598 + ], + "score": 1.0, + "content": "with CR. Such a method is proved to be at least", + "type": "text" + }, + { + "bbox": [ + 303, + 585, + 338, + 598 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n ^ { 1 / 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "faster than CR and TR. Then Zhou et al.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "(2018b) use adaptive gradient batch size and constant Hessian batch size, and develop Lite-SVRC to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 607, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 104, + 607, + 300, + 623 + ], + "score": 1.0, + "content": "further reduce the stochastic second-order oracle", + "type": "text" + }, + { + "bbox": [ + 301, + 608, + 355, + 622 + ], + "score": 0.94, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 607, + 406, + 623 + ], + "score": 1.0, + "content": "of SVRC to", + "type": "text" + }, + { + "bbox": [ + 406, + 608, + 461, + 622 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 607, + 506, + 623 + ], + "score": 1.0, + "content": "at the cost", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "of higher gradient computation cost. Similarly, except turning the gradient batch size, Zhang et al.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "(2018) further adaptively sample a certain number of data points to estimate the Hessian and prove", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 643, + 492, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 492, + 654 + ], + "score": 1.0, + "content": "the proposed method to have the same stochastic second-order oracle complexity as Lite-SVRC.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 107, + 664, + 198, + 676 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 200, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 200, + 679 + ], + "score": 1.0, + "content": "2 PRELIMINARY", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 180, + 694 + ], + "score": 1.0, + "content": "Notation. We use", + "type": "text" + }, + { + "bbox": [ + 181, + 682, + 198, + 694 + ], + "score": 0.92, + "content": "\\| \\mathbf { v } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 681, + 356, + 694 + ], + "score": 1.0, + "content": "to denote the Euclidean norm of vector", + "type": "text" + }, + { + "bbox": [ + 356, + 684, + 363, + 692 + ], + "score": 0.52, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 681, + 397, + 694 + ], + "score": 1.0, + "content": "and use", + "type": "text" + }, + { + "bbox": [ + 397, + 682, + 417, + 694 + ], + "score": 0.91, + "content": "\\| \\mathbf { A } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "to denote the spectral", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 693, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 205, + 705 + ], + "score": 1.0, + "content": "norm of matrix A. Let", + "type": "text" + }, + { + "bbox": [ + 206, + 694, + 214, + 703 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 693, + 505, + 705 + ], + "score": 1.0, + "content": "be the set of component indices. We define the minibatch average of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 103, + 700, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 103, + 700, + 210, + 723 + ], + "score": 1.0, + "content": "component functions by", + "type": "text" + }, + { + "bbox": [ + 210, + 705, + 325, + 722 + ], + "score": 0.92, + "content": "\\begin{array} { r } { f ( \\mathbf { x } ; \\mathcal { S } ) \\ \\stackrel { \\mathrm { d e f } } { = } \\ \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } f _ { i } ( \\mathbf { x } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 700, + 507, + 723 + ], + "score": 1.0, + "content": ". Then we specify the assumptions that are", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 273, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 273, + 733 + ], + "score": 1.0, + "content": "necessary to the analysis of our methods.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 129, + 483, + 235 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Stochastic first- and second-order oracle complexities, SFO and SSO for short respectively,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 104 + ], + "score": 1.0, + "content": "of the proposed STR approaches and other state-of-the-art methods. When SSO is prioritized, our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 130, + 113 + ], + "score": 0.88, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "has strictly better complexity than both SCR and Lite-SVRC. When SFO and SSO are treated", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 320, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 140, + 126 + ], + "score": 1.0, + "content": "equally,", + "type": "text" + }, + { + "bbox": [ + 140, + 113, + 164, + 124 + ], + "score": 0.88, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 114, + 320, + 126 + ], + "score": 1.0, + "content": "improves the existing result in SVRC.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 128, + 129, + 483, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 129, + 483, + 235 + ], + "spans": [ + { + "bbox": [ + 128, + 129, + 483, + 235 + ], + "score": 0.984, + "html": "
AlgorithmSFOSSO
TR (Conn et al., 2000; Curtis et al., 2017)CR (Nesterov & Polyak, 2006)SCR (Kohler & Lucchi, 2017a)SVRC (Zhou et al., 2018c)Lite-SVRC (Zhou et al., 2018b)0(共n01.5013.52.5O n共0(1.50(1(.5)6国1.5
STRi (this paper)STR2 (this paper)O(min{n1.5,1.5O(min{1,1.5
", + "type": "table", + "image_path": "641aadcafe1f9fc794a90c86245d00127cccfe259998bf5b8664df3dd144c614.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 128, + 129, + 483, + 164.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 164.33333333333334, + 483, + 199.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 128, + 199.66666666666669, + 483, + 235.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "Contributions: In this paper we propose and exploit a formulation in which we make explicit control", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 253, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 264 + ], + "score": 1.0, + "content": "of the step size in the trust region method. This idea is leveraged to develop two efficient stochastic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 262, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 276 + ], + "score": 1.0, + "content": "trust region (STR) approaches. We tailor our methods to achieve state-of-the-art oracle complexities", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 274, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 286 + ], + "score": 1.0, + "content": "under the following two measurements: (i) the stochastic second-order oracle complexity is prioritized;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "(ii) the stochastic first- and second-order oracle complexities are treated equally. Specifically, in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 205, + 309 + ], + "score": 1.0, + "content": "Setting (i), our method", + "type": "text" + }, + { + "bbox": [ + 206, + 296, + 230, + 307 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "employs a newly proposed estimator to approximate the Hessian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "and adopts the estimator in (Fang et al., 2018) for gradient approximation. Our novel Hessian", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "estimator maintains an accurate second-order differential approximation with lower amortized oracle", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 328, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 211, + 344 + ], + "score": 1.0, + "content": "complexity. In this way,", + "type": "text" + }, + { + "bbox": [ + 211, + 330, + 235, + 342 + ], + "score": 0.89, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 328, + 275, + 344 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + }, + { + "bbox": [ + 276, + 329, + 376, + 343 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ 1 / \\epsilon ^ { 2 } , \\sqrt { n } / \\epsilon ^ { 1 . 5 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 328, + 506, + 344 + ], + "score": 1.0, + "content": "stochastic second-order oracle", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "complexity. This is lower than existing results for solving problem (1). In Setting (ii), our method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 131, + 363 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 352, + 282, + 365 + ], + "score": 1.0, + "content": "substitutes the gradient estimator in", + "type": "text" + }, + { + "bbox": [ + 282, + 352, + 307, + 363 + ], + "score": 0.9, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "with one that integrates stochastic gradient and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 441, + 376 + ], + "score": 1.0, + "content": "Hessian together to maintain an accurate gradient approximation. As a result,", + "type": "text" + }, + { + "bbox": [ + 441, + 363, + 466, + 375 + ], + "score": 0.86, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 168, + 389 + ], + "score": 1.0, + "content": "convergence in", + "type": "text" + }, + { + "bbox": [ + 169, + 374, + 223, + 388 + ], + "score": 0.94, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "overall stochastic first- and second-order oracle queries. Finally, based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 384, + 399 + ], + "score": 1.0, + "content": "on STR, we further develop Hessian-free STR algorithms, namely", + "type": "text" + }, + { + "bbox": [ + 385, + 387, + 416, + 398 + ], + "score": 0.84, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 387, + 436, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 436, + 387, + 473, + 398 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 387, + 505, + 399 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "score": 1.0, + "content": "outperform existing Hessian-free algorithms theoretically.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 241, + 506, + 411 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 419, + 203, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 204, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 204, + 431 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "Computing local minimum to a non-convex optimization problem is gaining considerable amount of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "attentions in recent years. Both cubic regularization (CR) approaches (Nesterov & Polyak, 2006)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and trust region (TR) algorithms (Conn et al., 2000; Curtis et al., 2017) can escape saddle points", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "and find a local minimum by iterating the variable along the direction related to the eigenvector of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "the Hessian with the most negative eigenvalue. As the CR heavily depends on the regularization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "parameter for the cubic term, Cartis et al. (2011) propose an adaptive cubic regularization (ARC)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "approach to boost the efficiency by adaptively tuning the regularization parameter according to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "current objective decrease. Noting the high cost of full gradient and Hessian computation in ARC,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "sub-sampled cubic regularization (SCR) (Kohler & Lucchi, 2017a) is developed for sampling partial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "data points to estimate the full gradient and Hessian. Recently, by exploring the finite-sum structure", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "of the target problem, many works incorporate variance reduction technique (Johnson & Zhang, 2013)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "into CR and propose stochastic variance-reduced methods. For example, Zhou et al. (2018c) propose", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "stochastic variance-reduced cubic (SVRC) in which they integrate the stochastic variance-reduced", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "gradient estimator (Johnson & Zhang, 2013) and the Hessian tracking technique (Gower et al., 2018)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 303, + 598 + ], + "score": 1.0, + "content": "with CR. Such a method is proved to be at least", + "type": "text" + }, + { + "bbox": [ + 303, + 585, + 338, + 598 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n ^ { 1 / 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "faster than CR and TR. Then Zhou et al.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "(2018b) use adaptive gradient batch size and constant Hessian batch size, and develop Lite-SVRC to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 607, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 104, + 607, + 300, + 623 + ], + "score": 1.0, + "content": "further reduce the stochastic second-order oracle", + "type": "text" + }, + { + "bbox": [ + 301, + 608, + 355, + 622 + ], + "score": 0.94, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 607, + 406, + 623 + ], + "score": 1.0, + "content": "of SVRC to", + "type": "text" + }, + { + "bbox": [ + 406, + 608, + 461, + 622 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 607, + 506, + 623 + ], + "score": 1.0, + "content": "at the cost", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "of higher gradient computation cost. Similarly, except turning the gradient batch size, Zhang et al.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "(2018) further adaptively sample a certain number of data points to estimate the Hessian and prove", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 643, + 492, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 492, + 654 + ], + "score": 1.0, + "content": "the proposed method to have the same stochastic second-order oracle complexity as Lite-SVRC.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 432, + 506, + 654 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 664, + 198, + 676 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 200, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 200, + 679 + ], + "score": 1.0, + "content": "2 PRELIMINARY", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 180, + 694 + ], + "score": 1.0, + "content": "Notation. We use", + "type": "text" + }, + { + "bbox": [ + 181, + 682, + 198, + 694 + ], + "score": 0.92, + "content": "\\| \\mathbf { v } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 681, + 356, + 694 + ], + "score": 1.0, + "content": "to denote the Euclidean norm of vector", + "type": "text" + }, + { + "bbox": [ + 356, + 684, + 363, + 692 + ], + "score": 0.52, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 681, + 397, + 694 + ], + "score": 1.0, + "content": "and use", + "type": "text" + }, + { + "bbox": [ + 397, + 682, + 417, + 694 + ], + "score": 0.91, + "content": "\\| \\mathbf { A } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "to denote the spectral", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 693, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 205, + 705 + ], + "score": 1.0, + "content": "norm of matrix A. Let", + "type": "text" + }, + { + "bbox": [ + 206, + 694, + 214, + 703 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 693, + 505, + 705 + ], + "score": 1.0, + "content": "be the set of component indices. We define the minibatch average of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 103, + 700, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 103, + 700, + 210, + 723 + ], + "score": 1.0, + "content": "component functions by", + "type": "text" + }, + { + "bbox": [ + 210, + 705, + 325, + 722 + ], + "score": 0.92, + "content": "\\begin{array} { r } { f ( \\mathbf { x } ; \\mathcal { S } ) \\ \\stackrel { \\mathrm { d e f } } { = } \\ \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } f _ { i } ( \\mathbf { x } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 700, + 507, + 723 + ], + "score": 1.0, + "content": ". Then we specify the assumptions that are", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 273, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 273, + 733 + ], + "score": 1.0, + "content": "necessary to the analysis of our methods.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45.5, + "bbox_fs": [ + 103, + 681, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 302, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "score": 1.0, + "content": "MetaAlgorithm 1 Inexact Trust Region Method", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 186, + 111 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 186, + 99, + 198, + 109 + ], + "score": 0.8, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 97, + 237, + 111 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 237, + 102, + 243, + 109 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 97, + 328, + 111 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 329, + 100, + 339, + 109 + ], + "score": 0.78, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 97, + 491, + 111 + ], + "score": 1.0, + "content": ", construction of differential estimators", + "type": "text" + }, + { + "bbox": [ + 492, + 98, + 504, + 111 + ], + "score": 0.72, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 120, + 109, + 155, + 121 + ], + "spans": [ + { + "bbox": [ + 120, + 109, + 140, + 121 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 140, + 109, + 155, + 120 + ], + "score": 0.64, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 120, + 218, + 132 + ], + "spans": [ + { + "bbox": [ + 109, + 120, + 138, + 132 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 122, + 164, + 131 + ], + "score": 0.89, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 120, + 175, + 132 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 176, + 121, + 203, + 131 + ], + "score": 0.81, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 120, + 218, + 132 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 129, + 283, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 132, + 122, + 144 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 177, + 145 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 132, + 190, + 142 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 129, + 208, + 145 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 132, + 220, + 142 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 129, + 283, + 145 + ], + "score": 1.0, + "content": "by solving (8);", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 139, + 217, + 156 + ], + "spans": [ + { + "bbox": [ + 109, + 142, + 122, + 155 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 138, + 142, + 211, + 153 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 139, + 217, + 156 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 109, + 152, + 231, + 167 + ], + "spans": [ + { + "bbox": [ + 109, + 154, + 122, + 166 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 152, + 147, + 167 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 153, + 207, + 167 + ], + "score": 0.89, + "content": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 152, + 231, + 167 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 109, + 165, + 234, + 178 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 122, + 178 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 151, + 165, + 183, + 178 + ], + "score": 1.0, + "content": "Output", + "type": "text" + }, + { + "bbox": [ + 183, + 166, + 228, + 177 + ], + "score": 0.9, + "content": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 165, + 234, + 178 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 177, + 167, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 122, + 189 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 137, + 177, + 167, + 189 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 187, + 157, + 199 + ], + "spans": [ + { + "bbox": [ + 109, + 187, + 157, + 199 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 503, + 232 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 180, + 222 + ], + "score": 1.0, + "content": "Assumption 2.1.", + "type": "text" + }, + { + "bbox": [ + 180, + 210, + 190, + 219 + ], + "score": 0.75, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 208, + 442, + 222 + ], + "score": 1.0, + "content": "is bounded from below and its global optimal is achieved at", + "type": "text" + }, + { + "bbox": [ + 442, + 210, + 453, + 219 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 208, + 505, + 222 + ], + "score": 1.0, + "content": ". We denote", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 218, + 198, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 193, + 233 + ], + "score": 0.92, + "content": "\\Delta = \\bar { F ( \\mathbf { x } ^ { 0 } ) } - F ( \\mathbf { x } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 218, + 198, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 486, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 484, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 202, + 247 + ], + "score": 1.0, + "content": "Assumption 2.2. Each", + "type": "text" + }, + { + "bbox": [ + 203, + 233, + 255, + 245 + ], + "score": 0.93, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 232, + 272, + 247 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 272, + 235, + 284, + 245 + ], + "score": 0.89, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 232, + 442, + 247 + ], + "score": 1.0, + "content": "-Lipschitz continuous gradient: for any", + "type": "text" + }, + { + "bbox": [ + 442, + 233, + 484, + 245 + ], + "score": 0.75, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 248, + 378, + 262 + ], + "lines": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "spans": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "score": 0.89, + "content": "\\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 1 } \\| \\mathbf { x } - \\mathbf { y } \\| .", + "type": "interline_equation", + "image_path": "fd6bffcd4ac329e3d2d08df3cf883bd01f854e8785247937cef9f572b0103e89.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 484, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 483, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 202, + 277 + ], + "score": 1.0, + "content": "Assumption 2.3. Each", + "type": "text" + }, + { + "bbox": [ + 203, + 263, + 255, + 276 + ], + "score": 0.92, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 263, + 272, + 277 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 272, + 264, + 284, + 275 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 263, + 440, + 277 + ], + "score": 1.0, + "content": "-Lipschitz continuous Hessian: for any", + "type": "text" + }, + { + "bbox": [ + 441, + 263, + 483, + 276 + ], + "score": 0.75, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 277, + 383, + 292 + ], + "lines": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "spans": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "score": 0.91, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 2 } \\| \\mathbf { x } - \\mathbf { y } \\| .", + "type": "interline_equation", + "image_path": "f045f817af869389a938a90ea9e9cb9a5faa86aaab790f25f9fff951f42e8cbb.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 303, + 239, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 240, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 240, + 317 + ], + "score": 1.0, + "content": "2.1 TRUST REGION METHOD", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 337 + ], + "score": 1.0, + "content": "Here we briefly introduce the trust region method (Conn et al., 2000). In each step, it first solves the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 350, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 350, + 348 + ], + "score": 1.0, + "content": "Quadratic Constraint Quadratic Program (QCQP) defined as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 349, + 412, + 377 + ], + "lines": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "spans": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\nabla F ( \\mathbf { x } ^ { k } ) , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\mathbf { h } , \\mathbf { h } \\rangle ,", + "type": "interline_equation", + "image_path": "0416e2f89ec5860a12a749b0d715f9cdd957cbbbf4133f5ba8eab08267fc6b24.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 379, + 386, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 386, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 133, + 393 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 382, + 139, + 389 + ], + "score": 0.77, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 378, + 386, + 393 + ], + "score": 1.0, + "content": "is the trust-region radius. Then it updates the new variable as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 267, + 393, + 344, + 407 + ], + "lines": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "spans": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k } .", + "type": "interline_equation", + "image_path": "c4ab9e77bd27ab82705bb5c6b81eae7b31e4a6605a63663107dc70ca7b75f4e0.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 131, + 424 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 410, + 171, + 423 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 408, + 506, + 424 + ], + "score": 1.0, + "content": "is indefinite, the trust-region subproblem (5) is non-convex. But its global optimizer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 447, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 447, + 434 + ], + "score": 1.0, + "content": "can be characterized by the following lemma (Corollary 7.2.2 in (Conn et al., 2000)).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 396, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 395, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 395, + 449 + ], + "score": 1.0, + "content": "Lemma 2.1. Any global minimizer of problem (5) satisfies the equation", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 450, + 377, + 465 + ], + "lines": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "spans": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "score": 0.92, + "content": "\\left( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\right) \\mathbf { h } ^ { k } = - \\nabla F ( \\mathbf { x } ^ { k } ) ,", + "type": "interline_equation", + "image_path": "4a076c3a0ce11ed5344c9d8696446694bae00258e95f126ea3728ffe56ebd0f5.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 461, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 462, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 203, + 483 + ], + "score": 1.0, + "content": "where the dual variable", + "type": "text" + }, + { + "bbox": [ + 204, + 469, + 229, + 480 + ], + "score": 0.9, + "content": "\\lambda \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 466, + 287, + 483 + ], + "score": 1.0, + "content": "should satisfy", + "type": "text" + }, + { + "bbox": [ + 288, + 468, + 368, + 482 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\succcurlyeq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 466, + 387, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 468, + 459, + 482 + ], + "score": 0.9, + "content": "\\lambda ( \\| \\mathbf { h } ^ { k } \\| - r ) = 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 462, + 483 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 506, + 547 + ], + "lines": [ + { + "bbox": [ + 104, + 486, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 375, + 502 + ], + "score": 1.0, + "content": "In particular, the standard QCQP solver returns both the minimizer", + "type": "text" + }, + { + "bbox": [ + 375, + 488, + 388, + 499 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 486, + 506, + 502 + ], + "score": 1.0, + "content": "as well as the corresponding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 162, + 511 + ], + "score": 1.0, + "content": "dual variable", + "type": "text" + }, + { + "bbox": [ + 162, + 500, + 170, + 510 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "of subproblem (5). In the following section, we first prove that the deterministic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 339, + 525 + ], + "score": 1.0, + "content": "trust-region update (5) and (6) converges at the rate of √", + "type": "text" + }, + { + "bbox": [ + 340, + 510, + 384, + 524 + ], + "score": 0.94, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ", much sharper than existing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 211, + 537 + ], + "score": 1.0, + "content": "provable convergence rate", + "type": "text" + }, + { + "bbox": [ + 211, + 523, + 252, + 537 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / \\sqrt { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "(Conn et al., 2000), and then develop a more efficient stochastic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 535, + 196, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 196, + 547 + ], + "score": 1.0, + "content": "trust-region approach.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 562, + 209, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 560, + 211, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 211, + 578 + ], + "score": 1.0, + "content": "3 METHODOLOGY", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 507, + 600 + ], + "score": 1.0, + "content": "Here we first introduce a general inexact trust region method which is summarized in MetaAlgorithm 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 252, + 611 + ], + "score": 1.0, + "content": "It accepts inexact gradient estimation", + "type": "text" + }, + { + "bbox": [ + 252, + 597, + 264, + 609 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 597, + 357, + 611 + ], + "score": 1.0, + "content": "and Hessian estimation", + "type": "text" + }, + { + "bbox": [ + 357, + 598, + 371, + 608 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "as input to the QCQP subproblem", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 616, + 388, + 644 + ], + "lines": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "spans": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "score": 0.94, + "content": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } , \\mathbf { h } \\rangle .", + "type": "interline_equation", + "image_path": "383fa79b49e3a62fed484af8e46b537ce0c10629f2ea7bb37f5efe898d0174e2.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 504, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Similar to (5), Lemma 2.1 characterizes the global optimum to problem (8) which can be efficiently", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 654, + 502, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 468, + 668 + ], + "score": 1.0, + "content": "solved by Lanczos method (Gould et al., 1999). Assume the dual variable of the minimizer", + "type": "text" + }, + { + "bbox": [ + 468, + 655, + 480, + 666 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 654, + 491, + 668 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 491, + 655, + 502, + 666 + ], + "score": 0.86, + "content": "\\lambda ^ { \\dot { k } }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 388, + 687 + ], + "score": 1.0, + "content": "We prove that such inexact trust region method achieves the optimal", + "type": "text" + }, + { + "bbox": [ + 388, + 673, + 432, + 686 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "convergence rate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 683, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 186, + 698 + ], + "score": 1.0, + "content": "when the estimation", + "type": "text" + }, + { + "bbox": [ + 187, + 684, + 199, + 696 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 683, + 216, + 698 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 684, + 231, + 695 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 683, + 506, + 698 + ], + "score": 1.0, + "content": "at each iteration are sufficiently close to their full (exact) counterparts", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 694, + 256, + 709 + ], + "spans": [ + { + "bbox": [ + 107, + 695, + 142, + 708 + ], + "score": 0.93, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 694, + 161, + 709 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 695, + 201, + 708 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\bar { \\mathbf { x } } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 694, + 256, + 709 + ], + "score": 1.0, + "content": "respectively:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 710, + 413, + 736 + ], + "lines": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "spans": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "score": 0.91, + "content": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\epsilon } { 6 } , \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\sqrt { \\epsilon L _ { 2 } } } { 3 } .", + "type": "interline_equation", + "image_path": "f963400f2268043dadd66165d09d23c7c2c691ca8d928a843ba29b60a2d5e794.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 302, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "score": 1.0, + "content": "MetaAlgorithm 1 Inexact Trust Region Method", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 107, + 99, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 186, + 111 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 186, + 99, + 198, + 109 + ], + "score": 0.8, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 97, + 237, + 111 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 237, + 102, + 243, + 109 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 97, + 328, + 111 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 329, + 100, + 339, + 109 + ], + "score": 0.78, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 97, + 491, + 111 + ], + "score": 1.0, + "content": ", construction of differential estimators", + "type": "text" + }, + { + "bbox": [ + 492, + 98, + 504, + 111 + ], + "score": 0.72, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 120, + 109, + 155, + 121 + ], + "spans": [ + { + "bbox": [ + 120, + 109, + 140, + 121 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 140, + 109, + 155, + 120 + ], + "score": 0.64, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 120, + 218, + 132 + ], + "spans": [ + { + "bbox": [ + 109, + 120, + 138, + 132 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 122, + 164, + 131 + ], + "score": 0.89, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 120, + 175, + 132 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 176, + 121, + 203, + 131 + ], + "score": 0.81, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 120, + 218, + 132 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 129, + 283, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 132, + 122, + 144 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 177, + 145 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 132, + 190, + 142 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 129, + 208, + 145 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 132, + 220, + 142 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 129, + 283, + 145 + ], + "score": 1.0, + "content": "by solving (8);", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 139, + 217, + 156 + ], + "spans": [ + { + "bbox": [ + 109, + 142, + 122, + 155 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 138, + 142, + 211, + 153 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 139, + 217, + 156 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 152, + 231, + 167 + ], + "spans": [ + { + "bbox": [ + 109, + 154, + 122, + 166 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 152, + 147, + 167 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 153, + 207, + 167 + ], + "score": 0.89, + "content": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 152, + 231, + 167 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 165, + 234, + 178 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 122, + 178 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 151, + 165, + 183, + 178 + ], + "score": 1.0, + "content": "Output", + "type": "text" + }, + { + "bbox": [ + 183, + 166, + 228, + 177 + ], + "score": 0.9, + "content": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 165, + 234, + 178 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 177, + 167, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 122, + 189 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 137, + 177, + 167, + 189 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 187, + 157, + 199 + ], + "spans": [ + { + "bbox": [ + 109, + 187, + 157, + 199 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 5, + "bbox_fs": [ + 105, + 97, + 504, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 503, + 232 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 180, + 222 + ], + "score": 1.0, + "content": "Assumption 2.1.", + "type": "text" + }, + { + "bbox": [ + 180, + 210, + 190, + 219 + ], + "score": 0.75, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 208, + 442, + 222 + ], + "score": 1.0, + "content": "is bounded from below and its global optimal is achieved at", + "type": "text" + }, + { + "bbox": [ + 442, + 210, + 453, + 219 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 208, + 505, + 222 + ], + "score": 1.0, + "content": ". We denote", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 218, + 198, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 193, + 233 + ], + "score": 0.92, + "content": "\\Delta = \\bar { F ( \\mathbf { x } ^ { 0 } ) } - F ( \\mathbf { x } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 218, + 198, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 208, + 505, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 486, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 484, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 202, + 247 + ], + "score": 1.0, + "content": "Assumption 2.2. Each", + "type": "text" + }, + { + "bbox": [ + 203, + 233, + 255, + 245 + ], + "score": 0.93, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 232, + 272, + 247 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 272, + 235, + 284, + 245 + ], + "score": 0.89, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 232, + 442, + 247 + ], + "score": 1.0, + "content": "-Lipschitz continuous gradient: for any", + "type": "text" + }, + { + "bbox": [ + 442, + 233, + 484, + 245 + ], + "score": 0.75, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 232, + 484, + 247 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 248, + 378, + 262 + ], + "lines": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "spans": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "score": 0.89, + "content": "\\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 1 } \\| \\mathbf { x } - \\mathbf { y } \\| .", + "type": "interline_equation", + "image_path": "fd6bffcd4ac329e3d2d08df3cf883bd01f854e8785247937cef9f572b0103e89.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 231, + 248, + 378, + 262 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 484, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 483, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 202, + 277 + ], + "score": 1.0, + "content": "Assumption 2.3. Each", + "type": "text" + }, + { + "bbox": [ + 203, + 263, + 255, + 276 + ], + "score": 0.92, + "content": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 263, + 272, + 277 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 272, + 264, + 284, + 275 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 263, + 440, + 277 + ], + "score": 1.0, + "content": "-Lipschitz continuous Hessian: for any", + "type": "text" + }, + { + "bbox": [ + 441, + 263, + 483, + 276 + ], + "score": 0.75, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 263, + 483, + 277 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 277, + 383, + 292 + ], + "lines": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "spans": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "score": 0.91, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 2 } \\| \\mathbf { x } - \\mathbf { y } \\| .", + "type": "interline_equation", + "image_path": "f045f817af869389a938a90ea9e9cb9a5faa86aaab790f25f9fff951f42e8cbb.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 227, + 277, + 383, + 292 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 303, + 239, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 240, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 240, + 317 + ], + "score": 1.0, + "content": "2.1 TRUST REGION METHOD", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 337 + ], + "score": 1.0, + "content": "Here we briefly introduce the trust region method (Conn et al., 2000). In each step, it first solves the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 350, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 350, + 348 + ], + "score": 1.0, + "content": "Quadratic Constraint Quadratic Program (QCQP) defined as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 323, + 505, + 348 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 349, + 412, + 377 + ], + "lines": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "spans": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\nabla F ( \\mathbf { x } ^ { k } ) , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\mathbf { h } , \\mathbf { h } \\rangle ,", + "type": "interline_equation", + "image_path": "0416e2f89ec5860a12a749b0d715f9cdd957cbbbf4133f5ba8eab08267fc6b24.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 197, + 349, + 412, + 377 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 379, + 386, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 386, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 133, + 393 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 382, + 139, + 389 + ], + "score": 0.77, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 378, + 386, + 393 + ], + "score": 1.0, + "content": "is the trust-region radius. Then it updates the new variable as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 378, + 386, + 393 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 267, + 393, + 344, + 407 + ], + "lines": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "spans": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k } .", + "type": "interline_equation", + "image_path": "c4ab9e77bd27ab82705bb5c6b81eae7b31e4a6605a63663107dc70ca7b75f4e0.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 267, + 393, + 344, + 407 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 131, + 424 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 410, + 171, + 423 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 408, + 506, + 424 + ], + "score": 1.0, + "content": "is indefinite, the trust-region subproblem (5) is non-convex. But its global optimizer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 447, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 447, + 434 + ], + "score": 1.0, + "content": "can be characterized by the following lemma (Corollary 7.2.2 in (Conn et al., 2000)).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 408, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 396, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 395, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 395, + 449 + ], + "score": 1.0, + "content": "Lemma 2.1. Any global minimizer of problem (5) satisfies the equation", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 435, + 395, + 449 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 450, + 377, + 465 + ], + "lines": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "spans": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "score": 0.92, + "content": "\\left( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\right) \\mathbf { h } ^ { k } = - \\nabla F ( \\mathbf { x } ^ { k } ) ,", + "type": "interline_equation", + "image_path": "4a076c3a0ce11ed5344c9d8696446694bae00258e95f126ea3728ffe56ebd0f5.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 233, + 450, + 377, + 465 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 461, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 462, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 203, + 483 + ], + "score": 1.0, + "content": "where the dual variable", + "type": "text" + }, + { + "bbox": [ + 204, + 469, + 229, + 480 + ], + "score": 0.9, + "content": "\\lambda \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 466, + 287, + 483 + ], + "score": 1.0, + "content": "should satisfy", + "type": "text" + }, + { + "bbox": [ + 288, + 468, + 368, + 482 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\succcurlyeq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 466, + 387, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 468, + 459, + 482 + ], + "score": 0.9, + "content": "\\lambda ( \\| \\mathbf { h } ^ { k } \\| - r ) = 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 462, + 483 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 466, + 462, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 506, + 547 + ], + "lines": [ + { + "bbox": [ + 104, + 486, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 375, + 502 + ], + "score": 1.0, + "content": "In particular, the standard QCQP solver returns both the minimizer", + "type": "text" + }, + { + "bbox": [ + 375, + 488, + 388, + 499 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 486, + 506, + 502 + ], + "score": 1.0, + "content": "as well as the corresponding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 162, + 511 + ], + "score": 1.0, + "content": "dual variable", + "type": "text" + }, + { + "bbox": [ + 162, + 500, + 170, + 510 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "of subproblem (5). In the following section, we first prove that the deterministic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 339, + 525 + ], + "score": 1.0, + "content": "trust-region update (5) and (6) converges at the rate of √", + "type": "text" + }, + { + "bbox": [ + 340, + 510, + 384, + 524 + ], + "score": 0.94, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ", much sharper than existing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 211, + 537 + ], + "score": 1.0, + "content": "provable convergence rate", + "type": "text" + }, + { + "bbox": [ + 211, + 523, + 252, + 537 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / \\sqrt { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "(Conn et al., 2000), and then develop a more efficient stochastic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 535, + 196, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 196, + 547 + ], + "score": 1.0, + "content": "trust-region approach.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 486, + 506, + 547 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 562, + 209, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 560, + 211, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 211, + 578 + ], + "score": 1.0, + "content": "3 METHODOLOGY", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 507, + 600 + ], + "score": 1.0, + "content": "Here we first introduce a general inexact trust region method which is summarized in MetaAlgorithm 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 252, + 611 + ], + "score": 1.0, + "content": "It accepts inexact gradient estimation", + "type": "text" + }, + { + "bbox": [ + 252, + 597, + 264, + 609 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 597, + 357, + 611 + ], + "score": 1.0, + "content": "and Hessian estimation", + "type": "text" + }, + { + "bbox": [ + 357, + 598, + 371, + 608 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "as input to the QCQP subproblem", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 587, + 507, + 611 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 616, + 388, + 644 + ], + "lines": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "spans": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "score": 0.94, + "content": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } , \\mathbf { h } \\rangle .", + "type": "interline_equation", + "image_path": "383fa79b49e3a62fed484af8e46b537ce0c10629f2ea7bb37f5efe898d0174e2.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 222, + 616, + 388, + 644 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 504, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Similar to (5), Lemma 2.1 characterizes the global optimum to problem (8) which can be efficiently", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 654, + 502, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 468, + 668 + ], + "score": 1.0, + "content": "solved by Lanczos method (Gould et al., 1999). Assume the dual variable of the minimizer", + "type": "text" + }, + { + "bbox": [ + 468, + 655, + 480, + 666 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 654, + 491, + 668 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 491, + 655, + 502, + 666 + ], + "score": 0.86, + "content": "\\lambda ^ { \\dot { k } }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 644, + 505, + 668 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 388, + 687 + ], + "score": 1.0, + "content": "We prove that such inexact trust region method achieves the optimal", + "type": "text" + }, + { + "bbox": [ + 388, + 673, + 432, + 686 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "convergence rate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 683, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 186, + 698 + ], + "score": 1.0, + "content": "when the estimation", + "type": "text" + }, + { + "bbox": [ + 187, + 684, + 199, + 696 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 683, + 216, + 698 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 684, + 231, + 695 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 683, + 506, + 698 + ], + "score": 1.0, + "content": "at each iteration are sufficiently close to their full (exact) counterparts", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 694, + 256, + 709 + ], + "spans": [ + { + "bbox": [ + 107, + 695, + 142, + 708 + ], + "score": 0.93, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 694, + 161, + 709 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 695, + 201, + 708 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\bar { \\mathbf { x } } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 694, + 256, + 709 + ], + "score": 1.0, + "content": "respectively:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 672, + 506, + 709 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 710, + 413, + 736 + ], + "lines": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "spans": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "score": 0.91, + "content": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\epsilon } { 6 } , \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\sqrt { \\epsilon L _ { 2 } } } { 3 } .", + "type": "interline_equation", + "image_path": "f963400f2268043dadd66165d09d23c7c2c691ca8d928a843ba29b60a2d5e794.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 198, + 710, + 413, + 736 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 185, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 185, + 97 + ], + "score": 1.0, + "content": "Algorithm 2 STR1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 108, + 98, + 342, + 212 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 98, + 342, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 98, + 342, + 212 + ], + "spans": [ + { + "bbox": [ + 108, + 98, + 342, + 212 + ], + "score": 0.517, + "html": "
1:for k= 1 to K do 2: 3: Compute hk and Xk by solving (8);Input:initial point x°,step size r,number of iterations K Construct gradient estimator gk by Estimator 4; Construct Hessian estimator Hk by Estimator 3;
", + "type": "table", + "image_path": "ef2c9b6f7a41269eb6b756ffff844c0d4332196f5ba7452e1276d9c1a2b52c00.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 98, + 342, + 112.25 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 112.25, + 342, + 126.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 126.5, + 342, + 140.75 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 140.75, + 342, + 155.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 155.0, + 342, + 169.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 169.25, + 342, + 183.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 183.5, + 342, + 197.75 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 197.75, + 342, + 212.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 220, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 231 + ], + "score": 1.0, + "content": "Such result allows us to derive stochastic trust-region variants with novel differential estimators that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 231, + 507, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 507, + 243 + ], + "score": 1.0, + "content": "are tailored to ensure the optimal convergence rate. We state our formal results in Theorem 3.1,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 241, + 362, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 362, + 254 + ], + "score": 1.0, + "content": "whose proof is deferred to Appendix B.1 due to the space limit.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 506, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "Theorem 3.1 (Main Result). Consider problem (1) under Assumption 2.1-2.3. If the differential", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 151, + 281 + ], + "score": 1.0, + "content": "estimators", + "type": "text" + }, + { + "bbox": [ + 151, + 267, + 163, + 279 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 267, + 182, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 182, + 267, + 197, + 279 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 267, + 290, + 281 + ], + "score": 1.0, + "content": "satisfy Eqn. (9) for all", + "type": "text" + }, + { + "bbox": [ + 290, + 268, + 297, + 278 + ], + "score": 0.68, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 267, + 407, + 281 + ], + "score": 1.0, + "content": ", MetaAlgorithm 1 finds an", + "type": "text" + }, + { + "bbox": [ + 407, + 268, + 428, + 280 + ], + "score": 0.82, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "-SOSP in less than", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 279, + 433, + 295 + ], + "spans": [ + { + "bbox": [ + 107, + 280, + 194, + 293 + ], + "score": 0.92, + "content": "K = \\mathcal { O } ( \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 279, + 379, + 295 + ], + "score": 1.0, + "content": "iterations by setting the trust-region radius as", + "type": "text" + }, + { + "bbox": [ + 380, + 280, + 429, + 294 + ], + "score": 0.93, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 279, + 433, + 295 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "Remark 3.1. We emphasize that MetaAlgorithm 1 degenerates to the exact trust region method by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 135, + 320 + ], + "score": 1.0, + "content": "taking", + "type": "text" + }, + { + "bbox": [ + 135, + 306, + 197, + 319 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 305, + 217, + 320 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 306, + 286, + 319 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { k } = \\nabla ^ { 2 } F ( \\mathbf { \\bar { x } } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ". Such result is of its own interest because this is the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 317, + 507, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "score": 1.0, + "content": "first proof to show that the vanilla trust region method has the optimal", + "type": "text" + }, + { + "bbox": [ + 388, + 318, + 433, + 331 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 317, + 507, + 333 + ], + "score": 1.0, + "content": "convergence rate.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "Similar rate is achieved by Curtis et al. (2017) but with a much more complicated trust region variant.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "Theorem 3.1 shows the explicit step size control of the trust region method: Since the dual variable√", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 141, + 375 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 361, + 229, + 374 + ], + "score": 0.93, + "content": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } } ^ { \\bullet } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "for all but the last iteration, we always find the solution to the trust-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 285, + 386 + ], + "score": 1.0, + "content": "region subproblem (8) in the boundary, i.e.", + "type": "text" + }, + { + "bbox": [ + 285, + 372, + 326, + 385 + ], + "score": 0.93, + "content": "\\| \\mathbf { h } ^ { k } \\| = r", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 372, + 505, + 386 + ], + "score": 1.0, + "content": ", according to the complementary condition", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "(15) in Appendix B.1. Such exact step size control property is missing in the cubic-regularization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 394, + 454, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 454, + 408 + ], + "score": 1.0, + "content": "method where the step size is implicitly decided by the cubic regularization parameter.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "More importantly, we emphasize that such explicit step size control is crucial to the sample efficiency", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "of our variance reduced differential estimators. The essence of variance reduction is to exploit the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "correlations between the differentials in consecutive iterations. Intuitively, when two neighboring", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "iterates are close, so are their differentials due to the Lipschitz continuity, and hence a smaller number", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "of samples suffice to maintain the accuracy of the estimators. On the other hand, smaller step size", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "reduces the per-iteration objective decrease which harms the convergence rate of the algorithm (see", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "proof of Theorem 3.1). Therefore, the explicit step size control in trust region method allows us to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "well trade-off the per-iteration sample complexity and convergence rate, from which we can derive", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "stochastic trust region approaches with the state-of-the-art sample efficiency. In contrast, existing trust", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "region methods change the step size at every iteration according to progress made, which requires", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "loss evaluations that can be as expensive as gradient computations (e.g. the non-convex linear model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 532, + 353, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 353, + 545 + ], + "score": 1.0, + "content": "in Section 7) and is thus prohibitive for large-scale problems.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 560, + 367, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 368, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 368, + 574 + ], + "score": 1.0, + "content": "4 STOCHASTIC TRUST REGION METHOD: TYPE I", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "Having the inexact trust region method as prototype, we now present our first sample-efficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 263, + 609 + ], + "score": 1.0, + "content": "stochastic trust region method, namely", + "type": "text" + }, + { + "bbox": [ + 264, + 596, + 288, + 608 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 596, + 505, + 609 + ], + "score": 1.0, + "content": ", in Algorithm 2 which emphasizes cheaper stochastic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "second-order oracle complexity. As Theorem 3.1 already guarantees the optimal convergence", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 327, + 631 + ], + "score": 1.0, + "content": "rate of MetaAlgorithm 1 when the gradient estimator", + "type": "text" + }, + { + "bbox": [ + 327, + 618, + 340, + 630 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 618, + 450, + 631 + ], + "score": 1.0, + "content": "and the Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 451, + 618, + 465, + 628 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "meet the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "requirement (9), here we focus on constructing such novel differential estimators. Specifically, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "first present our Hessian estimator in Estimator 3 and our first gradient estimator in Estimator 4, both", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 417, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 263, + 665 + ], + "score": 1.0, + "content": "of which exploit the trust region radius", + "type": "text" + }, + { + "bbox": [ + 264, + 651, + 313, + 665 + ], + "score": 0.94, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 653, + 417, + 665 + ], + "score": 1.0, + "content": "to reduce their variances.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 223, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 224, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 224, + 690 + ], + "score": 1.0, + "content": "4.1 HESSIAN ESTIMATOR", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 249, + 711 + ], + "score": 1.0, + "content": "Our epoch-wise Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 249, + 698, + 263, + 709 + ], + "score": 0.87, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 698, + 388, + 711 + ], + "score": 1.0, + "content": "is given in Estimator 3, where", + "type": "text" + }, + { + "bbox": [ + 388, + 701, + 399, + 711 + ], + "score": 0.8, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "controls the epoch length", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 123, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 711, + 134, + 721 + ], + "score": 0.83, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 709, + 198, + 722 + ], + "score": 1.0, + "content": "(and optionally", + "type": "text" + }, + { + "bbox": [ + 199, + 710, + 209, + 721 + ], + "score": 0.86, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ") controls the minibatch size. At the beginning of each epoch, Estimator 3", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "has two options, designed for different target accuracy: Option I is preferable for the high accuracy", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 185, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 185, + 97 + ], + "score": 1.0, + "content": "Algorithm 2 STR1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 108, + 98, + 342, + 212 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 98, + 342, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 98, + 342, + 212 + ], + "spans": [ + { + "bbox": [ + 108, + 98, + 342, + 212 + ], + "score": 0.517, + "html": "
1:for k= 1 to K do 2: 3: Compute hk and Xk by solving (8);Input:initial point x°,step size r,number of iterations K Construct gradient estimator gk by Estimator 4; Construct Hessian estimator Hk by Estimator 3;
", + "type": "table", + "image_path": "ef2c9b6f7a41269eb6b756ffff844c0d4332196f5ba7452e1276d9c1a2b52c00.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 98, + 342, + 112.25 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 112.25, + 342, + 126.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 126.5, + 342, + 140.75 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 140.75, + 342, + 155.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 155.0, + 342, + 169.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 169.25, + 342, + 183.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 183.5, + 342, + 197.75 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 197.75, + 342, + 212.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 220, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 231 + ], + "score": 1.0, + "content": "Such result allows us to derive stochastic trust-region variants with novel differential estimators that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 231, + 507, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 507, + 243 + ], + "score": 1.0, + "content": "are tailored to ensure the optimal convergence rate. We state our formal results in Theorem 3.1,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 241, + 362, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 362, + 254 + ], + "score": 1.0, + "content": "whose proof is deferred to Appendix B.1 due to the space limit.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 221, + 507, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 506, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "Theorem 3.1 (Main Result). Consider problem (1) under Assumption 2.1-2.3. If the differential", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 151, + 281 + ], + "score": 1.0, + "content": "estimators", + "type": "text" + }, + { + "bbox": [ + 151, + 267, + 163, + 279 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 267, + 182, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 182, + 267, + 197, + 279 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 267, + 290, + 281 + ], + "score": 1.0, + "content": "satisfy Eqn. (9) for all", + "type": "text" + }, + { + "bbox": [ + 290, + 268, + 297, + 278 + ], + "score": 0.68, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 267, + 407, + 281 + ], + "score": 1.0, + "content": ", MetaAlgorithm 1 finds an", + "type": "text" + }, + { + "bbox": [ + 407, + 268, + 428, + 280 + ], + "score": 0.82, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "-SOSP in less than", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 279, + 433, + 295 + ], + "spans": [ + { + "bbox": [ + 107, + 280, + 194, + 293 + ], + "score": 0.92, + "content": "K = \\mathcal { O } ( \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 279, + 379, + 295 + ], + "score": 1.0, + "content": "iterations by setting the trust-region radius as", + "type": "text" + }, + { + "bbox": [ + 380, + 280, + 429, + 294 + ], + "score": 0.93, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 279, + 433, + 295 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 256, + 506, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "Remark 3.1. We emphasize that MetaAlgorithm 1 degenerates to the exact trust region method by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 135, + 320 + ], + "score": 1.0, + "content": "taking", + "type": "text" + }, + { + "bbox": [ + 135, + 306, + 197, + 319 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 305, + 217, + 320 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 306, + 286, + 319 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { k } = \\nabla ^ { 2 } F ( \\mathbf { \\bar { x } } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ". Such result is of its own interest because this is the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 317, + 507, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "score": 1.0, + "content": "first proof to show that the vanilla trust region method has the optimal", + "type": "text" + }, + { + "bbox": [ + 388, + 318, + 433, + 331 + ], + "score": 0.93, + "content": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 317, + 507, + 333 + ], + "score": 1.0, + "content": "convergence rate.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "Similar rate is achieved by Curtis et al. (2017) but with a much more complicated trust region variant.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 295, + 507, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "Theorem 3.1 shows the explicit step size control of the trust region method: Since the dual variable√", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 141, + 375 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 361, + 229, + 374 + ], + "score": 0.93, + "content": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } } ^ { \\bullet } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "for all but the last iteration, we always find the solution to the trust-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 285, + 386 + ], + "score": 1.0, + "content": "region subproblem (8) in the boundary, i.e.", + "type": "text" + }, + { + "bbox": [ + 285, + 372, + 326, + 385 + ], + "score": 0.93, + "content": "\\| \\mathbf { h } ^ { k } \\| = r", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 372, + 505, + 386 + ], + "score": 1.0, + "content": ", according to the complementary condition", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "(15) in Appendix B.1. Such exact step size control property is missing in the cubic-regularization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 394, + 454, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 454, + 408 + ], + "score": 1.0, + "content": "method where the step size is implicitly decided by the cubic regularization parameter.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 350, + 507, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "More importantly, we emphasize that such explicit step size control is crucial to the sample efficiency", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "of our variance reduced differential estimators. The essence of variance reduction is to exploit the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "correlations between the differentials in consecutive iterations. Intuitively, when two neighboring", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "iterates are close, so are their differentials due to the Lipschitz continuity, and hence a smaller number", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "of samples suffice to maintain the accuracy of the estimators. On the other hand, smaller step size", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "reduces the per-iteration objective decrease which harms the convergence rate of the algorithm (see", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "proof of Theorem 3.1). Therefore, the explicit step size control in trust region method allows us to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "well trade-off the per-iteration sample complexity and convergence rate, from which we can derive", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "stochastic trust region approaches with the state-of-the-art sample efficiency. In contrast, existing trust", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "region methods change the step size at every iteration according to progress made, which requires", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "loss evaluations that can be as expensive as gradient computations (e.g. the non-convex linear model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 532, + 353, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 353, + 545 + ], + "score": 1.0, + "content": "in Section 7) and is thus prohibitive for large-scale problems.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 411, + 506, + 545 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 560, + 367, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 368, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 368, + 574 + ], + "score": 1.0, + "content": "4 STOCHASTIC TRUST REGION METHOD: TYPE I", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "Having the inexact trust region method as prototype, we now present our first sample-efficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 263, + 609 + ], + "score": 1.0, + "content": "stochastic trust region method, namely", + "type": "text" + }, + { + "bbox": [ + 264, + 596, + 288, + 608 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 596, + 505, + 609 + ], + "score": 1.0, + "content": ", in Algorithm 2 which emphasizes cheaper stochastic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "second-order oracle complexity. As Theorem 3.1 already guarantees the optimal convergence", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 327, + 631 + ], + "score": 1.0, + "content": "rate of MetaAlgorithm 1 when the gradient estimator", + "type": "text" + }, + { + "bbox": [ + 327, + 618, + 340, + 630 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 618, + 450, + 631 + ], + "score": 1.0, + "content": "and the Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 451, + 618, + 465, + 628 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "meet the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "requirement (9), here we focus on constructing such novel differential estimators. Specifically, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "first present our Hessian estimator in Estimator 3 and our first gradient estimator in Estimator 4, both", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 417, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 263, + 665 + ], + "score": 1.0, + "content": "of which exploit the trust region radius", + "type": "text" + }, + { + "bbox": [ + 264, + 651, + 313, + 665 + ], + "score": 0.94, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 653, + 417, + 665 + ], + "score": 1.0, + "content": "to reduce their variances.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 585, + 506, + 665 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 223, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 224, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 224, + 690 + ], + "score": 1.0, + "content": "4.1 HESSIAN ESTIMATOR", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 249, + 711 + ], + "score": 1.0, + "content": "Our epoch-wise Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 249, + 698, + 263, + 709 + ], + "score": 0.87, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 698, + 388, + 711 + ], + "score": 1.0, + "content": "is given in Estimator 3, where", + "type": "text" + }, + { + "bbox": [ + 388, + 701, + 399, + 711 + ], + "score": 0.8, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "controls the epoch length", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 123, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 711, + 134, + 721 + ], + "score": 0.83, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 709, + 198, + 722 + ], + "score": 1.0, + "content": "(and optionally", + "type": "text" + }, + { + "bbox": [ + 199, + 710, + 209, + 721 + ], + "score": 0.86, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ") controls the minibatch size. At the beginning of each epoch, Estimator 3", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "has two options, designed for different target accuracy: Option I is preferable for the high accuracy", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 234, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 235, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 235, + 94 + ], + "score": 1.0, + "content": "Estimator 3 Hessian Estimator", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 96, + 492, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 96, + 324, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 194, + 109 + ], + "score": 1.0, + "content": "Input: Epoch length", + "type": "text" + }, + { + "bbox": [ + 194, + 98, + 204, + 108 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 96, + 257, + 109 + ], + "score": 1.0, + "content": ", sample size", + "type": "text" + }, + { + "bbox": [ + 257, + 98, + 267, + 108 + ], + "score": 0.64, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 96, + 271, + 109 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 271, + 96, + 281, + 108 + ], + "score": 0.72, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 96, + 324, + 109 + ], + "score": 1.0, + "content": "(optional)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 106, + 216, + 120 + ], + "spans": [ + { + "bbox": [ + 109, + 106, + 132, + 120 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 108, + 192, + 119 + ], + "score": 0.91, + "content": "\\mod ( k , p _ { 2 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 106, + 216, + 120 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 117, + 322, + 131 + ], + "spans": [ + { + "bbox": [ + 110, + 118, + 122, + 129 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 118, + 178, + 130 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 199, + 120, + 207, + 128 + ], + "score": 0.7, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 117, + 312, + 131 + ], + "score": 1.0, + "content": "high accuracy case (small", + "type": "text" + }, + { + "bbox": [ + 312, + 120, + 317, + 128 + ], + "score": 0.3, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 117, + 322, + 131 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 126, + 209, + 142 + ], + "spans": [ + { + "bbox": [ + 110, + 129, + 122, + 141 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 128, + 204, + 141 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 126, + 209, + 142 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 140, + 336, + 152 + ], + "spans": [ + { + "bbox": [ + 110, + 140, + 122, + 152 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 140, + 181, + 152 + ], + "score": 1.0, + "content": "Option II:", + "type": "text" + }, + { + "bbox": [ + 200, + 142, + 207, + 150 + ], + "score": 0.75, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 141, + 325, + 151 + ], + "score": 1.0, + "content": "low accuracy case (moderate", + "type": "text" + }, + { + "bbox": [ + 325, + 142, + 331, + 150 + ], + "score": 0.36, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 141, + 336, + 151 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 149, + 382, + 164 + ], + "spans": [ + { + "bbox": [ + 110, + 151, + 122, + 162 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 149, + 158, + 164 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 158, + 151, + 168, + 163 + ], + "score": 0.88, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 149, + 250, + 164 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 250, + 151, + 263, + 161 + ], + "score": 0.86, + "content": "\\mathcal { H } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 149, + 293, + 164 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 294, + 150, + 378, + 163 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 149, + 382, + 164 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 162, + 143, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 162, + 124, + 173 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 120, + 162, + 143, + 174 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 172, + 490, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 172, + 122, + 185 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 136, + 172, + 163, + 184 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 175, + 173, + 184 + ], + "score": 0.82, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 172, + 255, + 184 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 173, + 265, + 183 + ], + "score": 0.75, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 172, + 295, + 184 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 295, + 172, + 486, + 185 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ) - \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { H } ) + \\mathbf { H } ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 172, + 490, + 184 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 183, + 151, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 183, + 151, + 196 + ], + "score": 1.0, + "content": "8: end if", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 109, + 204, + 276, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 277, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 277, + 218 + ], + "score": 1.0, + "content": "Estimator 4 Gradient Estimator: Case (1)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 110, + 219, + 454, + 275 + ], + "lines": [ + { + "bbox": [ + 110, + 218, + 216, + 232 + ], + "spans": [ + { + "bbox": [ + 110, + 218, + 132, + 232 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 220, + 192, + 230 + ], + "score": 0.79, + "content": "\\mod ( k , p _ { 1 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 218, + 216, + 232 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 227, + 207, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 230, + 122, + 242 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 138, + 230, + 201, + 243 + ], + "score": 0.83, + "content": "\\mathbf { g } ^ { k } : = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 227, + 207, + 244 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 109, + 240, + 143, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 240, + 143, + 254 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 250, + 455, + 266 + ], + "spans": [ + { + "bbox": [ + 110, + 253, + 123, + 264 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 135, + 250, + 163, + 266 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 255, + 173, + 263 + ], + "score": 0.79, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 250, + 255, + 266 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 253, + 263, + 263 + ], + "score": 0.8, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 250, + 281, + 266 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 251, + 451, + 264 + ], + "score": 0.91, + "content": "\\mathbf { g } ^ { k } = \\nabla f ( \\mathbf { x } ^ { k } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } ;", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 250, + 455, + 266 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 109, + 263, + 152, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 263, + 152, + 275 + ], + "score": 1.0, + "content": "5: end if", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 128, + 297 + ], + "score": 1.0, + "content": "case", + "type": "text" + }, + { + "bbox": [ + 129, + 284, + 185, + 297 + ], + "score": 0.91, + "content": "( \\epsilon < \\mathcal { O } ( 1 / n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "where we compute the full Hessian to avoid approximation error, and Option", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 295, + 308 + ], + "score": 1.0, + "content": "II is designed for the moderate accuracy case", + "type": "text" + }, + { + "bbox": [ + 295, + 295, + 352, + 307 + ], + "score": 0.9, + "content": "( \\epsilon > \\mathcal { O } ( 1 / n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "where we only need an approximate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 206, + 318 + ], + "score": 1.0, + "content": "Hessian estimator. Then,", + "type": "text" + }, + { + "bbox": [ + 206, + 308, + 217, + 318 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 306, + 304, + 318 + ], + "score": 1.0, + "content": "iterations follow with", + "type": "text" + }, + { + "bbox": [ + 305, + 306, + 320, + 317 + ], + "score": 0.86, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "defined in a recurrent manner. These recurrent", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "estimators exist for the first-order case (Nguyen et al., 2017; Fang et al., 2018), but their bound only", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 195, + 341 + ], + "score": 1.0, + "content": "holds under the vector", + "type": "text" + }, + { + "bbox": [ + 195, + 329, + 205, + 339 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "norm. Here we generalize them into Hessian estimation with matrix spectral", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 339, + 160, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 160, + 350 + ], + "score": 1.0, + "content": "norm bound.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 104, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "The following lemma analyzes the amortized stochastic second-order oracle (Hessian) complexity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "for Algorithm 3 to meet the requirement in Theorem 3.1. As we need an error bound under the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "spectral norm, we will appeal to the matrix Azuma’s inequality (Tropp, 2012). The proof is deferred", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 178, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 178, + 401 + ], + "score": 1.0, + "content": "to Appendix B.2.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 371, + 417 + ], + "score": 1.0, + "content": "Lemma 4.1. Assume Algorithm 2 takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 371, + 403, + 424, + 417 + ], + "score": 0.94, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "as in Theorem 3.1.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 141, + 429 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 142, + 417, + 171, + 428 + ], + "score": 0.89, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 416, + 309, + 429 + ], + "score": 1.0, + "content": ", Estimator 3 produces estimator", + "type": "text" + }, + { + "bbox": [ + 310, + 416, + 325, + 428 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 416, + 464, + 429 + ], + "score": 1.0, + "content": "for the second order differential", + "type": "text" + }, + { + "bbox": [ + 465, + 416, + 505, + 429 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 427, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 146, + 441 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 147, + 428, + 270, + 441 + ], + "score": 0.9, + "content": "\\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 427, + 371, + 441 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 372, + 429, + 413, + 441 + ], + "score": 0.91, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 427, + 462, + 441 + ], + "score": 1.0, + "content": "if we set (1)", + "type": "text" + }, + { + "bbox": [ + 462, + 429, + 504, + 441 + ], + "score": 0.89, + "content": "\\boldsymbol { p } _ { 2 } = \\sqrt { n }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 124, + 453 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 441, + 222, + 453 + ], + "score": 0.88, + "content": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 440, + 263, + 453 + ], + "score": 1.0, + "content": "in option", + "type": "text" + }, + { + "bbox": [ + 263, + 442, + 270, + 451 + ], + "score": 0.43, + "content": "I ,", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 440, + 298, + 453 + ], + "score": 1.0, + "content": "or (2)", + "type": "text" + }, + { + "bbox": [ + 298, + 441, + 375, + 453 + ], + "score": 0.9, + "content": "p _ { 2 } = L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 440, + 379, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 380, + 441, + 503, + 453 + ], + "score": 0.87, + "content": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 440, + 505, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 125, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 453, + 259, + 465 + ], + "score": 0.89, + "content": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 453, + 301, + 465 + ], + "score": 1.0, + "content": "in option", + "type": "text" + }, + { + "bbox": [ + 302, + 454, + 310, + 463 + ], + "score": 0.47, + "content": "\\boldsymbol { { I I } }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 453, + 338, + 465 + ], + "score": 1.0, + "content": ". Here", + "type": "text" + }, + { + "bbox": [ + 338, + 453, + 352, + 464 + ], + "score": 0.87, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 453, + 506, + 465 + ], + "score": 1.0, + "content": "is a constant to be determined later.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 463, + 504, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 488, + 476 + ], + "score": 1.0, + "content": "Consequently the amortized per-iteration stochastic second-order oracle complexity to construct", + "type": "text" + }, + { + "bbox": [ + 105, + 468, + 171, + 493 + ], + "score": 1.0, + "content": "is no more than", + "type": "text" + }, + { + "bbox": [ + 171, + 474, + 279, + 490 + ], + "score": 0.85, + "content": "\\begin{array} { r } { 2 s _ { 2 } = \\operatorname* { m i n } \\{ 6 4 \\sqrt { n } \\log \\frac { d K _ { 0 } } { \\delta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 468, + 282, + 493 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 283, + 474, + 343, + 491 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\frac { 6 4 L _ { 1 } } { \\sqrt { \\epsilon L _ { 2 } } } \\log \\frac { d K _ { 0 } } { \\delta } \\biggr \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 463, + 504, + 474 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 502, + 276, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 277, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 277, + 516 + ], + "score": 1.0, + "content": "4.2 GRADIENT ESTIMATOR: CASE (1)", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "When the stochastic second-order oracle complexity is prioritized, we directly employ the SPIDER", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 226, + 546 + ], + "score": 1.0, + "content": "gradient estimator to construct", + "type": "text" + }, + { + "bbox": [ + 226, + 533, + 238, + 546 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 534, + 434, + 546 + ], + "score": 1.0, + "content": "(Fang et al., 2018). Similar to the construction for", + "type": "text" + }, + { + "bbox": [ + 434, + 534, + 449, + 545 + ], + "score": 0.89, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 534, + 506, + 546 + ], + "score": 1.0, + "content": ", the estimator", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 118, + 557 + ], + "score": 0.87, + "content": "\\bar { \\mathbf { g } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 544, + 443, + 558 + ], + "score": 1.0, + "content": "is also constructed in an epoch-wise manner as presented in Estimator 4, where", + "type": "text" + }, + { + "bbox": [ + 443, + 547, + 453, + 556 + ], + "score": 0.86, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "controls the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 301, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 177, + 568 + ], + "score": 1.0, + "content": "epoch length and", + "type": "text" + }, + { + "bbox": [ + 177, + 557, + 187, + 567 + ], + "score": 0.85, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 556, + 301, + 568 + ], + "score": 1.0, + "content": "controls the minibatch size.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 573, + 506, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "We now analyze the stochastic first-order oracle complexity to meet the requirement in Theorem 3.1.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 373, + 601 + ], + "score": 1.0, + "content": "Lemma 4.2. Assume Algorithm 2 takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 373, + 587, + 426, + 600 + ], + "score": 0.92, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 588, + 478, + 601 + ], + "score": 1.0, + "content": ". Estimator", + "type": "text" + }, + { + "bbox": [ + 478, + 590, + 485, + 599 + ], + "score": 0.32, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "pro-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 174, + 614 + ], + "score": 1.0, + "content": "duces estimator", + "type": "text" + }, + { + "bbox": [ + 174, + 600, + 186, + 613 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 600, + 306, + 614 + ], + "score": 1.0, + "content": "of the first order differential", + "type": "text" + }, + { + "bbox": [ + 306, + 600, + 342, + 613 + ], + "score": 0.93, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 600, + 384, + 614 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 385, + 600, + 484, + 613 + ], + "score": 0.9, + "content": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 613, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 187, + 632 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 188, + 617, + 229, + 629 + ], + "score": 0.92, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 614, + 264, + 632 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 264, + 617, + 291, + 628 + ], + "score": 0.88, + "content": "k \\geq 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 614, + 332, + 632 + ], + "score": 1.0, + "content": ", if we set", + "type": "text" + }, + { + "bbox": [ + 333, + 613, + 485, + 633 + ], + "score": 0.91, + "content": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon L _ { 2 } / ( c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } ) } \\rbrace } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 614, + 506, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 272, + 646 + ], + "score": 0.91, + "content": "s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { c n L _ { 1 } ^ { 2 } \\log ( K _ { 0 } / \\delta ) / ( \\epsilon L _ { 2 } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 633, + 354, + 646 + ], + "score": 1.0, + "content": ", where the constant", + "type": "text" + }, + { + "bbox": [ + 355, + 634, + 394, + 644 + ], + "score": 0.88, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 633, + 413, + 646 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 413, + 634, + 427, + 644 + ], + "score": 0.87, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "is a constant to be", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "determined later. Consequently, the amortized per-iteration stochastic first-order oracle complexity", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 331, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 156, + 670 + ], + "score": 1.0, + "content": "to construct", + "type": "text" + }, + { + "bbox": [ + 156, + 655, + 328, + 669 + ], + "score": 0.91, + "content": "\\mathbf { g } ^ { k } i s \\operatorname* { m i n } \\{ n , \\sqrt { 4 c n L _ { 1 } ^ { 2 } \\log { ( K _ { 0 } / \\delta ) } / ( \\epsilon L _ { 2 } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 656, + 331, + 670 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "The proof of Lemma 4.2 is similar to the one of Lemma 4.1 and is deferred to Appendix B.3. These", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "two lemmas only guarantee that the differential estimators satisfy the requirement (9) in a single", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 286, + 711 + ], + "score": 1.0, + "content": "iteration and can be extended to hold for all", + "type": "text" + }, + { + "bbox": [ + 286, + 699, + 293, + 709 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 699, + 420, + 711 + ], + "score": 1.0, + "content": "by using the union bound with", + "type": "text" + }, + { + "bbox": [ + 420, + 699, + 462, + 710 + ], + "score": 0.92, + "content": "K _ { 0 } = 2 K", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 699, + 493, + 711 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 493, + 699, + 504, + 709 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "denotes the number of iterations. Combining such lifted result with Theorem 3.1, we can establish", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 300, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 300, + 732 + ], + "score": 1.0, + "content": "the computational complexity bound as follows.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 234, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 235, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 235, + 94 + ], + "score": 1.0, + "content": "Estimator 3 Hessian Estimator", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "index", + "bbox": [ + 108, + 96, + 492, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 96, + 324, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 194, + 109 + ], + "score": 1.0, + "content": "Input: Epoch length", + "type": "text" + }, + { + "bbox": [ + 194, + 98, + 204, + 108 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 96, + 257, + 109 + ], + "score": 1.0, + "content": ", sample size", + "type": "text" + }, + { + "bbox": [ + 257, + 98, + 267, + 108 + ], + "score": 0.64, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 96, + 271, + 109 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 271, + 96, + 281, + 108 + ], + "score": 0.72, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 96, + 324, + 109 + ], + "score": 1.0, + "content": "(optional)", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 106, + 216, + 120 + ], + "spans": [ + { + "bbox": [ + 109, + 106, + 132, + 120 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 108, + 192, + 119 + ], + "score": 0.91, + "content": "\\mod ( k , p _ { 2 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 106, + 216, + 120 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 117, + 322, + 131 + ], + "spans": [ + { + "bbox": [ + 110, + 118, + 122, + 129 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 118, + 178, + 130 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 199, + 120, + 207, + 128 + ], + "score": 0.7, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 117, + 312, + 131 + ], + "score": 1.0, + "content": "high accuracy case (small", + "type": "text" + }, + { + "bbox": [ + 312, + 120, + 317, + 128 + ], + "score": 0.3, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 117, + 322, + 131 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 126, + 209, + 142 + ], + "spans": [ + { + "bbox": [ + 110, + 129, + 122, + 141 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 128, + 204, + 141 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 126, + 209, + 142 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 140, + 336, + 152 + ], + "spans": [ + { + "bbox": [ + 110, + 140, + 122, + 152 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 140, + 181, + 152 + ], + "score": 1.0, + "content": "Option II:", + "type": "text" + }, + { + "bbox": [ + 200, + 142, + 207, + 150 + ], + "score": 0.75, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 141, + 325, + 151 + ], + "score": 1.0, + "content": "low accuracy case (moderate", + "type": "text" + }, + { + "bbox": [ + 325, + 142, + 331, + 150 + ], + "score": 0.36, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 141, + 336, + 151 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 149, + 382, + 164 + ], + "spans": [ + { + "bbox": [ + 110, + 151, + 122, + 162 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 149, + 158, + 164 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 158, + 151, + 168, + 163 + ], + "score": 0.88, + "content": "s _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 149, + 250, + 164 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 250, + 151, + 263, + 161 + ], + "score": 0.86, + "content": "\\mathcal { H } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 149, + 293, + 164 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 294, + 150, + 378, + 163 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 149, + 382, + 164 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 162, + 143, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 162, + 124, + 173 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 120, + 162, + 143, + 174 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 172, + 490, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 172, + 122, + 185 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 136, + 172, + 163, + 184 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 175, + 173, + 184 + ], + "score": 0.82, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 172, + 255, + 184 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 173, + 265, + 183 + ], + "score": 0.75, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 172, + 295, + 184 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 295, + 172, + 486, + 185 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ) - \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { H } ) + \\mathbf { H } ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 172, + 490, + 184 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 183, + 151, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 183, + 151, + 196 + ], + "score": 1.0, + "content": "8: end if", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + } + ], + "index": 5, + "bbox_fs": [ + 106, + 96, + 490, + 196 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 204, + 276, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 277, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 277, + 218 + ], + "score": 1.0, + "content": "Estimator 4 Gradient Estimator: Case (1)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "index", + "bbox": [ + 110, + 219, + 454, + 275 + ], + "lines": [ + { + "bbox": [ + 110, + 218, + 216, + 232 + ], + "spans": [ + { + "bbox": [ + 110, + 218, + 132, + 232 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 220, + 192, + 230 + ], + "score": 0.79, + "content": "\\mod ( k , p _ { 1 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 218, + 216, + 232 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 227, + 207, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 230, + 122, + 242 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 138, + 230, + 201, + 243 + ], + "score": 0.83, + "content": "\\mathbf { g } ^ { k } : = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 227, + 207, + 244 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 240, + 143, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 240, + 143, + 254 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 250, + 455, + 266 + ], + "spans": [ + { + "bbox": [ + 110, + 253, + 123, + 264 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 135, + 250, + 163, + 266 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 255, + 173, + 263 + ], + "score": 0.79, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 250, + 255, + 266 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 253, + 263, + 263 + ], + "score": 0.8, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 250, + 281, + 266 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 251, + 451, + 264 + ], + "score": 0.91, + "content": "\\mathbf { g } ^ { k } = \\nabla f ( \\mathbf { x } ^ { k } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } ;", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 250, + 455, + 266 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 263, + 152, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 263, + 152, + 275 + ], + "score": 1.0, + "content": "5: end if", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + } + ], + "index": 13, + "bbox_fs": [ + 109, + 218, + 455, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 128, + 297 + ], + "score": 1.0, + "content": "case", + "type": "text" + }, + { + "bbox": [ + 129, + 284, + 185, + 297 + ], + "score": 0.91, + "content": "( \\epsilon < \\mathcal { O } ( 1 / n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "where we compute the full Hessian to avoid approximation error, and Option", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 295, + 308 + ], + "score": 1.0, + "content": "II is designed for the moderate accuracy case", + "type": "text" + }, + { + "bbox": [ + 295, + 295, + 352, + 307 + ], + "score": 0.9, + "content": "( \\epsilon > \\mathcal { O } ( 1 / n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "where we only need an approximate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 206, + 318 + ], + "score": 1.0, + "content": "Hessian estimator. Then,", + "type": "text" + }, + { + "bbox": [ + 206, + 308, + 217, + 318 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 306, + 304, + 318 + ], + "score": 1.0, + "content": "iterations follow with", + "type": "text" + }, + { + "bbox": [ + 305, + 306, + 320, + 317 + ], + "score": 0.86, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "defined in a recurrent manner. These recurrent", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "estimators exist for the first-order case (Nguyen et al., 2017; Fang et al., 2018), but their bound only", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 195, + 341 + ], + "score": 1.0, + "content": "holds under the vector", + "type": "text" + }, + { + "bbox": [ + 195, + 329, + 205, + 339 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "norm. Here we generalize them into Hessian estimation with matrix spectral", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 339, + 160, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 160, + 350 + ], + "score": 1.0, + "content": "norm bound.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 284, + 506, + 350 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 104, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "The following lemma analyzes the amortized stochastic second-order oracle (Hessian) complexity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "for Algorithm 3 to meet the requirement in Theorem 3.1. As we need an error bound under the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "spectral norm, we will appeal to the matrix Azuma’s inequality (Tropp, 2012). The proof is deferred", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 178, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 178, + 401 + ], + "score": 1.0, + "content": "to Appendix B.2.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 355, + 506, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 371, + 417 + ], + "score": 1.0, + "content": "Lemma 4.1. Assume Algorithm 2 takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 371, + 403, + 424, + 417 + ], + "score": 0.94, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "as in Theorem 3.1.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 141, + 429 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 142, + 417, + 171, + 428 + ], + "score": 0.89, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 416, + 309, + 429 + ], + "score": 1.0, + "content": ", Estimator 3 produces estimator", + "type": "text" + }, + { + "bbox": [ + 310, + 416, + 325, + 428 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 416, + 464, + 429 + ], + "score": 1.0, + "content": "for the second order differential", + "type": "text" + }, + { + "bbox": [ + 465, + 416, + 505, + 429 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 427, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 146, + 441 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 147, + 428, + 270, + 441 + ], + "score": 0.9, + "content": "\\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 427, + 371, + 441 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 372, + 429, + 413, + 441 + ], + "score": 0.91, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 427, + 462, + 441 + ], + "score": 1.0, + "content": "if we set (1)", + "type": "text" + }, + { + "bbox": [ + 462, + 429, + 504, + 441 + ], + "score": 0.89, + "content": "\\boldsymbol { p } _ { 2 } = \\sqrt { n }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 124, + 453 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 441, + 222, + 453 + ], + "score": 0.88, + "content": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 440, + 263, + 453 + ], + "score": 1.0, + "content": "in option", + "type": "text" + }, + { + "bbox": [ + 263, + 442, + 270, + 451 + ], + "score": 0.43, + "content": "I ,", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 440, + 298, + 453 + ], + "score": 1.0, + "content": "or (2)", + "type": "text" + }, + { + "bbox": [ + 298, + 441, + 375, + 453 + ], + "score": 0.9, + "content": "p _ { 2 } = L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 440, + 379, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 380, + 441, + 503, + 453 + ], + "score": 0.87, + "content": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 440, + 505, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 125, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 453, + 259, + 465 + ], + "score": 0.89, + "content": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 453, + 301, + 465 + ], + "score": 1.0, + "content": "in option", + "type": "text" + }, + { + "bbox": [ + 302, + 454, + 310, + 463 + ], + "score": 0.47, + "content": "\\boldsymbol { { I I } }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 453, + 338, + 465 + ], + "score": 1.0, + "content": ". Here", + "type": "text" + }, + { + "bbox": [ + 338, + 453, + 352, + 464 + ], + "score": 0.87, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 453, + 506, + 465 + ], + "score": 1.0, + "content": "is a constant to be determined later.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 463, + 504, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 488, + 476 + ], + "score": 1.0, + "content": "Consequently the amortized per-iteration stochastic second-order oracle complexity to construct", + "type": "text" + }, + { + "bbox": [ + 105, + 468, + 171, + 493 + ], + "score": 1.0, + "content": "is no more than", + "type": "text" + }, + { + "bbox": [ + 171, + 474, + 279, + 490 + ], + "score": 0.85, + "content": "\\begin{array} { r } { 2 s _ { 2 } = \\operatorname* { m i n } \\{ 6 4 \\sqrt { n } \\log \\frac { d K _ { 0 } } { \\delta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 468, + 282, + 493 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 283, + 474, + 343, + 491 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\frac { 6 4 L _ { 1 } } { \\sqrt { \\epsilon L _ { 2 } } } \\log \\frac { d K _ { 0 } } { \\delta } \\biggr \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 463, + 504, + 474 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 403, + 506, + 493 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 502, + 276, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 277, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 277, + 516 + ], + "score": 1.0, + "content": "4.2 GRADIENT ESTIMATOR: CASE (1)", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "When the stochastic second-order oracle complexity is prioritized, we directly employ the SPIDER", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 226, + 546 + ], + "score": 1.0, + "content": "gradient estimator to construct", + "type": "text" + }, + { + "bbox": [ + 226, + 533, + 238, + 546 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 534, + 434, + 546 + ], + "score": 1.0, + "content": "(Fang et al., 2018). Similar to the construction for", + "type": "text" + }, + { + "bbox": [ + 434, + 534, + 449, + 545 + ], + "score": 0.89, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 534, + 506, + 546 + ], + "score": 1.0, + "content": ", the estimator", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 118, + 557 + ], + "score": 0.87, + "content": "\\bar { \\mathbf { g } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 544, + 443, + 558 + ], + "score": 1.0, + "content": "is also constructed in an epoch-wise manner as presented in Estimator 4, where", + "type": "text" + }, + { + "bbox": [ + 443, + 547, + 453, + 556 + ], + "score": 0.86, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "controls the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 301, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 177, + 568 + ], + "score": 1.0, + "content": "epoch length and", + "type": "text" + }, + { + "bbox": [ + 177, + 557, + 187, + 567 + ], + "score": 0.85, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 556, + 301, + 568 + ], + "score": 1.0, + "content": "controls the minibatch size.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 522, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 573, + 506, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "We now analyze the stochastic first-order oracle complexity to meet the requirement in Theorem 3.1.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 373, + 601 + ], + "score": 1.0, + "content": "Lemma 4.2. Assume Algorithm 2 takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 373, + 587, + 426, + 600 + ], + "score": 0.92, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 588, + 478, + 601 + ], + "score": 1.0, + "content": ". Estimator", + "type": "text" + }, + { + "bbox": [ + 478, + 590, + 485, + 599 + ], + "score": 0.32, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "pro-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 174, + 614 + ], + "score": 1.0, + "content": "duces estimator", + "type": "text" + }, + { + "bbox": [ + 174, + 600, + 186, + 613 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 600, + 306, + 614 + ], + "score": 1.0, + "content": "of the first order differential", + "type": "text" + }, + { + "bbox": [ + 306, + 600, + 342, + 613 + ], + "score": 0.93, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 600, + 384, + 614 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 385, + 600, + 484, + 613 + ], + "score": 0.9, + "content": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 613, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 187, + 632 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 188, + 617, + 229, + 629 + ], + "score": 0.92, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 614, + 264, + 632 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 264, + 617, + 291, + 628 + ], + "score": 0.88, + "content": "k \\geq 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 614, + 332, + 632 + ], + "score": 1.0, + "content": ", if we set", + "type": "text" + }, + { + "bbox": [ + 333, + 613, + 485, + 633 + ], + "score": 0.91, + "content": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon L _ { 2 } / ( c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } ) } \\rbrace } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 614, + 506, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 272, + 646 + ], + "score": 0.91, + "content": "s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { c n L _ { 1 } ^ { 2 } \\log ( K _ { 0 } / \\delta ) / ( \\epsilon L _ { 2 } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 633, + 354, + 646 + ], + "score": 1.0, + "content": ", where the constant", + "type": "text" + }, + { + "bbox": [ + 355, + 634, + 394, + 644 + ], + "score": 0.88, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 633, + 413, + 646 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 413, + 634, + 427, + 644 + ], + "score": 0.87, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "is a constant to be", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "determined later. Consequently, the amortized per-iteration stochastic first-order oracle complexity", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 331, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 156, + 670 + ], + "score": 1.0, + "content": "to construct", + "type": "text" + }, + { + "bbox": [ + 156, + 655, + 328, + 669 + ], + "score": 0.91, + "content": "\\mathbf { g } ^ { k } i s \\operatorname* { m i n } \\{ n , \\sqrt { 4 c n L _ { 1 } ^ { 2 } \\log { ( K _ { 0 } / \\delta ) } / ( \\epsilon L _ { 2 } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 656, + 331, + 670 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 573, + 506, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "The proof of Lemma 4.2 is similar to the one of Lemma 4.1 and is deferred to Appendix B.3. These", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "two lemmas only guarantee that the differential estimators satisfy the requirement (9) in a single", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 286, + 711 + ], + "score": 1.0, + "content": "iteration and can be extended to hold for all", + "type": "text" + }, + { + "bbox": [ + 286, + 699, + 293, + 709 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 699, + 420, + 711 + ], + "score": 1.0, + "content": "by using the union bound with", + "type": "text" + }, + { + "bbox": [ + 420, + 699, + 462, + 710 + ], + "score": 0.92, + "content": "K _ { 0 } = 2 K", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 699, + 493, + 711 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 493, + 699, + 504, + 709 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "denotes the number of iterations. Combining such lifted result with Theorem 3.1, we can establish", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 300, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 300, + 732 + ], + "score": 1.0, + "content": "the computational complexity bound as follows.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 676, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 184, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 186, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 186, + 97 + ], + "score": 1.0, + "content": "Algorithm 5 STR2", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 98, + 344, + 110 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 343, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 187, + 111 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 187, + 98, + 199, + 109 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 97, + 239, + 111 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 239, + 101, + 245, + 109 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 97, + 332, + 111 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 333, + 99, + 343, + 109 + ], + "score": 0.6, + "content": "K", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 109, + 109, + 340, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 108, + 201, + 122 + ], + "spans": [ + { + "bbox": [ + 111, + 108, + 138, + 122 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 110, + 164, + 120 + ], + "score": 0.88, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 108, + 175, + 122 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 176, + 110, + 186, + 120 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 108, + 201, + 122 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 119, + 332, + 133 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 121, + 132 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 119, + 254, + 133 + ], + "score": 1.0, + "content": "Construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 254, + 120, + 266, + 131 + ], + "score": 0.85, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 119, + 332, + 133 + ], + "score": 1.0, + "content": "by Estimator 6;", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 129, + 334, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 122, + 143 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 253, + 144 + ], + "score": 1.0, + "content": "Construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 253, + 131, + 268, + 142 + ], + "score": 0.85, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 129, + 334, + 144 + ], + "score": 1.0, + "content": "by Estimator 3;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 140, + 284, + 156 + ], + "spans": [ + { + "bbox": [ + 111, + 142, + 121, + 154 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 140, + 177, + 156 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 142, + 190, + 153 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 140, + 208, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 142, + 220, + 153 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 140, + 284, + 156 + ], + "score": 1.0, + "content": "by solving (8);", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 149, + 217, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 154, + 121, + 165 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 138, + 153, + 211, + 163 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 149, + 217, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 111, + 162, + 232, + 178 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 121, + 176 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 136, + 162, + 147, + 178 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 164, + 208, + 177 + ], + "score": 0.88, + "content": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 162, + 232, + 178 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 175, + 234, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 177, + 122, + 189 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 150, + 175, + 183, + 188 + ], + "score": 1.0, + "content": "Output", + "type": "text" + }, + { + "bbox": [ + 183, + 176, + 228, + 188 + ], + "score": 0.9, + "content": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 175, + 234, + 188 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 187, + 167, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 188, + 122, + 200 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 136, + 187, + 167, + 199 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 108, + 198, + 158, + 210 + ], + "spans": [ + { + "bbox": [ + 108, + 198, + 158, + 210 + ], + "score": 1.0, + "content": "9: end for", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 219, + 276, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 277, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 277, + 233 + ], + "score": 1.0, + "content": "Estimator 6 Gradient Estimator: Case (2)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 110, + 235, + 471, + 302 + ], + "lines": [ + { + "bbox": [ + 111, + 234, + 215, + 246 + ], + "spans": [ + { + "bbox": [ + 111, + 234, + 132, + 246 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 235, + 193, + 246 + ], + "score": 0.56, + "content": "\\mod ( k , p _ { 1 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 234, + 215, + 246 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 243, + 250, + 258 + ], + "spans": [ + { + "bbox": [ + 110, + 245, + 123, + 257 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 243, + 154, + 258 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 154, + 246, + 188, + 257 + ], + "score": 0.51, + "content": "\\widetilde \\mathbf { x } : = \\mathbf { x } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 243, + 191, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 191, + 245, + 250, + 258 + ], + "score": 0.74, + "content": "\\mathbf { g } ^ { k } : = \\nabla F ( \\tilde { \\mathbf { x } } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 109, + 255, + 143, + 269 + ], + "spans": [ + { + "bbox": [ + 109, + 255, + 143, + 269 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 267, + 267, + 279 + ], + "spans": [ + { + "bbox": [ + 110, + 267, + 122, + 279 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 267, + 163, + 279 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 270, + 173, + 278 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 267, + 255, + 279 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 268, + 263, + 278 + ], + "score": 0.76, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 267, + 267, + 279 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 277, + 469, + 291 + ], + "spans": [ + { + "bbox": [ + 110, + 278, + 122, + 290 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 137, + 277, + 469, + 291 + ], + "score": 0.79, + "content": "\\mathbf { g } ^ { k } = \\bar { \\nabla } f ( \\mathbf { x } ^ { k ^ { \\prime } } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k ^ { \\prime } - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } + [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ;", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 109, + 289, + 152, + 302 + ], + "spans": [ + { + "bbox": [ + 109, + 289, + 152, + 302 + ], + "score": 1.0, + "content": "6: end if", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 506, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 293, + 322 + ], + "score": 1.0, + "content": "Corollary 4.1 (Computational Complexity of", + "type": "text" + }, + { + "bbox": [ + 293, + 311, + 317, + 321 + ], + "score": 0.85, + "content": "\\mathrm { S T R _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 310, + 505, + 322 + ], + "score": 1.0, + "content": "). Assume Algorithm 2 will use Estimator 4 to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 289, + 334 + ], + "score": 1.0, + "content": "construct the first-order differential estimator", + "type": "text" + }, + { + "bbox": [ + 290, + 321, + 302, + 333 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 321, + 378, + 334 + ], + "score": 1.0, + "content": "and use Estimator", + "type": "text" + }, + { + "bbox": [ + 378, + 322, + 385, + 331 + ], + "score": 0.36, + "content": "^ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "to construct the second-order", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 193, + 345 + ], + "score": 1.0, + "content": "differential estimator", + "type": "text" + }, + { + "bbox": [ + 193, + 332, + 208, + 343 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 331, + 249, + 345 + ], + "score": 1.0, + "content": ". To find a", + "type": "text" + }, + { + "bbox": [ + 250, + 333, + 265, + 343 + ], + "score": 0.57, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 331, + 390, + 345 + ], + "score": 1.0, + "content": "-SOSP with probability at least", + "type": "text" + }, + { + "bbox": [ + 391, + 333, + 414, + 343 + ], + "score": 0.84, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 331, + 506, + 345 + ], + "score": 1.0, + "content": ", the overall stochastic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 102, + 341, + 509, + 379 + ], + "spans": [ + { + "bbox": [ + 102, + 342, + 298, + 360 + ], + "score": 1.0, + "content": "first-order oracle complexity is O(min{ n L2∆\u000f1.5 ,", + "type": "text" + }, + { + "bbox": [ + 229, + 343, + 369, + 358 + ], + "score": 0.7, + "content": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { n \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { \\sqrt { n } L _ { 1 } } { \\epsilon ^ { 2 } } \\log ( \\frac { L _ { 2 } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) \\} ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 341, + 509, + 379 + ], + "score": 1.0, + "content": "and the overall stochastic second-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 357, + 360, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 213, + 373 + ], + "score": 1.0, + "content": "order oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 213, + 358, + 360, + 374 + ], + "score": 0.87, + "content": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { \\sqrt { n L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { L _ { 1 } \\Delta } { \\epsilon ^ { 2 } } \\} \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 506, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 234, + 398 + ], + "score": 1.0, + "content": "From Corollary 4.1 we see that", + "type": "text" + }, + { + "bbox": [ + 234, + 383, + 333, + 397 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 382, + 506, + 398 + ], + "score": 1.0, + "content": "stochastic second-order oracle queries are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 160, + 408 + ], + "score": 1.0, + "content": "sufficient for", + "type": "text" + }, + { + "bbox": [ + 161, + 397, + 185, + 407 + ], + "score": 0.88, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 395, + 227, + 408 + ], + "score": 1.0, + "content": "to find an", + "type": "text" + }, + { + "bbox": [ + 227, + 398, + 232, + 406 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "-SOSP which is significantly better than both the subsampled cubic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 198, + 421 + ], + "score": 1.0, + "content": "regularization method", + "type": "text" + }, + { + "bbox": [ + 199, + 407, + 240, + 420 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "(Kohler & Lucchi, 2017a) and the variance reduction based ones", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 162, + 433 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } \\bar { ( } n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "(Zhou et al., 2018b; Zhang et al., 2018). Recently, Zhou & Gu (2019) developed a√", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 473, + 444 + ], + "score": 1.0, + "content": "stochastic recursive variance-reduced cubic regularization (SRVRC) method which finds an", + "type": "text" + }, + { + "bbox": [ + 473, + 432, + 502, + 444 + ], + "score": 0.91, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 244, + 457 + ], + "score": 1.0, + "content": "approximate local minimum with", + "type": "text" + }, + { + "bbox": [ + 244, + 443, + 309, + 457 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 443, + 349, + 457 + ], + "score": 1.0, + "content": "SFO and", + "type": "text" + }, + { + "bbox": [ + 350, + 443, + 423, + 456 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 443, + 507, + 457 + ], + "score": 1.0, + "content": "SSO. But the result", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 376, + 468 + ], + "score": 1.0, + "content": "of SRVRC needs to assume stochastic gradient to be bounded, i.e.,", + "type": "text" + }, + { + "bbox": [ + 376, + 456, + 479, + 467 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 455, + 506, + 468 + ], + "score": 1.0, + "content": ". With", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 253, + 481 + ], + "score": 1.0, + "content": "this extra assumption, STR1 enjoys", + "type": "text" + }, + { + "bbox": [ + 253, + 466, + 342, + 480 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , n / \\epsilon ^ { 2 } , 1 / \\epsilon ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 466, + 383, + 481 + ], + "score": 1.0, + "content": "SFO and", + "type": "text" + }, + { + "bbox": [ + 383, + 468, + 456, + 480 + ], + "score": 0.89, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 466, + 507, + 481 + ], + "score": 1.0, + "content": "SSO. Thus,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 478, + 475, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 115, + 492 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 115, + 479, + 181, + 491 + ], + "score": 0.94, + "content": "1 / { \\epsilon } \\le n \\le 1 / \\bar { \\epsilon } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 478, + 475, + 492 + ], + "score": 1.0, + "content": ", STR1 outperforms SRVRC; otherwise they have the same complexities.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 107, + 507, + 372, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 372, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 372, + 522 + ], + "score": 1.0, + "content": "5 STOCHASTIC TRUST REGION METHOD: TYPE II", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "In the above section, we focus on the setting where the stochastic second-order oracle complexity is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 406, + 558 + ], + "score": 1.0, + "content": "prioritized over the stochastic first-order oracle complexity. In this setting,", + "type": "text" + }, + { + "bbox": [ + 406, + 546, + 430, + 557 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "achieves the state-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "of-the-art efficiency. In this section, we consider a different complexity measure where first-order", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "and second-order oracle complexities are treated equally and our goal is to minimize the maximum", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 578, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 309, + 593 + ], + "score": 1.0, + "content": "of them. We note that, currently the best result is", + "type": "text" + }, + { + "bbox": [ + 309, + 578, + 364, + 592 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 578, + 507, + 593 + ], + "score": 1.0, + "content": "of the SVRC method (Zhou et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 589, + 140, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 140, + 604 + ], + "score": 1.0, + "content": "2018c).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 216, + 621 + ], + "score": 1.0, + "content": "Since the Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 216, + 607, + 231, + 618 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 605, + 242, + 621 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 243, + 608, + 266, + 619 + ], + "score": 0.89, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 605, + 379, + 621 + ], + "score": 1.0, + "content": "already delivers the superior", + "type": "text" + }, + { + "bbox": [ + 379, + 606, + 430, + 620 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 605, + 505, + 621 + ], + "score": 1.0, + "content": "stochastic Hessian", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 164, + 631 + ], + "score": 1.0, + "content": "complexity, in", + "type": "text" + }, + { + "bbox": [ + 164, + 619, + 188, + 630 + ], + "score": 0.89, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "(see Algorithm 5), we retain Estimator 3 for second-order differential estimation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 397, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 397, + 642 + ], + "score": 1.0, + "content": "and use Estimator 6 to further reduce the stochastic gradient complexity.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 276, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 277, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 277, + 671 + ], + "score": 1.0, + "content": "5.1 GRADIENT ESTIMATOR: CASE (2)", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "When stochastic gradient and Hessian complexities are equally important, we use Hessian to improve", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 464, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 234, + 702 + ], + "score": 1.0, + "content": "the gradient estimation. Denote", + "type": "text" + }, + { + "bbox": [ + 235, + 689, + 331, + 701 + ], + "score": 0.94, + "content": "\\mathbf { x } ( a ) = a \\bar { \\mathbf { x } } ^ { t } + ( 1 - a ) \\tilde { \\mathbf { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 687, + 464, + 702 + ], + "score": 1.0, + "content": ". From Assumption 2.3, we have", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 707, + 514, + 736 + ], + "lines": [ + { + "bbox": [ + 111, + 707, + 514, + 736 + ], + "spans": [ + { + "bbox": [ + 111, + 707, + 514, + 736 + ], + "score": 0.89, + "content": "\\nabla f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla f _ { i } ( \\widetilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\| = \\| \\int _ { 0 } ^ { 1 } [ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ( a ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ] ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\mathbf { d } a \\| \\leq \\frac { L _ { 2 } } { 2 } \\| \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } \\| ^ { 2 }", + "type": "interline_equation", + "image_path": "ebcb777e8d807878d2f376a9a1ef58e3733ab936c83c3451ca41ba983bd3a78b.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 111, + 707, + 514, + 716.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 111, + 716.6666666666666, + 514, + 726.3333333333333 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 111, + 726.3333333333333, + 514, + 735.9999999999999 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 184, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 186, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 186, + 97 + ], + "score": 1.0, + "content": "Algorithm 5 STR2", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 98, + 344, + 110 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 343, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 187, + 111 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 187, + 98, + 199, + 109 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 97, + 239, + 111 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 239, + 101, + 245, + 109 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 97, + 332, + 111 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 333, + 99, + 343, + 109 + ], + "score": 0.6, + "content": "K", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 97, + 343, + 111 + ] + }, + { + "type": "index", + "bbox": [ + 109, + 109, + 340, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 108, + 201, + 122 + ], + "spans": [ + { + "bbox": [ + 111, + 108, + 138, + 122 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 110, + 164, + 120 + ], + "score": 0.88, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 108, + 175, + 122 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 176, + 110, + 186, + 120 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 108, + 201, + 122 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 119, + 332, + 133 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 121, + 132 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 119, + 254, + 133 + ], + "score": 1.0, + "content": "Construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 254, + 120, + 266, + 131 + ], + "score": 0.85, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 119, + 332, + 133 + ], + "score": 1.0, + "content": "by Estimator 6;", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 129, + 334, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 122, + 143 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 253, + 144 + ], + "score": 1.0, + "content": "Construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 253, + 131, + 268, + 142 + ], + "score": 0.85, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 129, + 334, + 144 + ], + "score": 1.0, + "content": "by Estimator 3;", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 140, + 284, + 156 + ], + "spans": [ + { + "bbox": [ + 111, + 142, + 121, + 154 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 140, + 177, + 156 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 142, + 190, + 153 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 140, + 208, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 142, + 220, + 153 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 140, + 284, + 156 + ], + "score": 1.0, + "content": "by solving (8);", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 149, + 217, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 154, + 121, + 165 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 138, + 153, + 211, + 163 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 149, + 217, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 162, + 232, + 178 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 121, + 176 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 136, + 162, + 147, + 178 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 164, + 208, + 177 + ], + "score": 0.88, + "content": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 162, + 232, + 178 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 175, + 234, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 177, + 122, + 189 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 150, + 175, + 183, + 188 + ], + "score": 1.0, + "content": "Output", + "type": "text" + }, + { + "bbox": [ + 183, + 176, + 228, + 188 + ], + "score": 0.9, + "content": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 175, + 234, + 188 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 187, + 167, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 188, + 122, + 200 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 136, + 187, + 167, + 199 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 198, + 158, + 210 + ], + "spans": [ + { + "bbox": [ + 108, + 198, + 158, + 210 + ], + "score": 1.0, + "content": "9: end for", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + } + ], + "index": 6, + "bbox_fs": [ + 108, + 108, + 334, + 210 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 219, + 276, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 277, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 277, + 233 + ], + "score": 1.0, + "content": "Estimator 6 Gradient Estimator: Case (2)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "index", + "bbox": [ + 110, + 235, + 471, + 302 + ], + "lines": [ + { + "bbox": [ + 111, + 234, + 215, + 246 + ], + "spans": [ + { + "bbox": [ + 111, + 234, + 132, + 246 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 235, + 193, + 246 + ], + "score": 0.56, + "content": "\\mod ( k , p _ { 1 } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 234, + 215, + 246 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 243, + 250, + 258 + ], + "spans": [ + { + "bbox": [ + 110, + 245, + 123, + 257 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 136, + 243, + 154, + 258 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 154, + 246, + 188, + 257 + ], + "score": 0.51, + "content": "\\widetilde \\mathbf { x } : = \\mathbf { x } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 243, + 191, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 191, + 245, + 250, + 258 + ], + "score": 0.74, + "content": "\\mathbf { g } ^ { k } : = \\nabla F ( \\tilde { \\mathbf { x } } )", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 255, + 143, + 269 + ], + "spans": [ + { + "bbox": [ + 109, + 255, + 143, + 269 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 267, + 267, + 279 + ], + "spans": [ + { + "bbox": [ + 110, + 267, + 122, + 279 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 267, + 163, + 279 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 163, + 270, + 173, + 278 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 267, + 255, + 279 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 255, + 268, + 263, + 278 + ], + "score": 0.76, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 267, + 267, + 279 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 277, + 469, + 291 + ], + "spans": [ + { + "bbox": [ + 110, + 278, + 122, + 290 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 137, + 277, + 469, + 291 + ], + "score": 0.79, + "content": "\\mathbf { g } ^ { k } = \\bar { \\nabla } f ( \\mathbf { x } ^ { k ^ { \\prime } } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k ^ { \\prime } - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } + [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ;", + "type": "inline_equation" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 289, + 152, + 302 + ], + "spans": [ + { + "bbox": [ + 109, + 289, + 152, + 302 + ], + "score": 1.0, + "content": "6: end if", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + } + ], + "index": 14.5, + "bbox_fs": [ + 109, + 234, + 469, + 302 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 506, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 293, + 322 + ], + "score": 1.0, + "content": "Corollary 4.1 (Computational Complexity of", + "type": "text" + }, + { + "bbox": [ + 293, + 311, + 317, + 321 + ], + "score": 0.85, + "content": "\\mathrm { S T R _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 310, + 505, + 322 + ], + "score": 1.0, + "content": "). Assume Algorithm 2 will use Estimator 4 to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 289, + 334 + ], + "score": 1.0, + "content": "construct the first-order differential estimator", + "type": "text" + }, + { + "bbox": [ + 290, + 321, + 302, + 333 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 321, + 378, + 334 + ], + "score": 1.0, + "content": "and use Estimator", + "type": "text" + }, + { + "bbox": [ + 378, + 322, + 385, + 331 + ], + "score": 0.36, + "content": "^ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "to construct the second-order", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 193, + 345 + ], + "score": 1.0, + "content": "differential estimator", + "type": "text" + }, + { + "bbox": [ + 193, + 332, + 208, + 343 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 331, + 249, + 345 + ], + "score": 1.0, + "content": ". To find a", + "type": "text" + }, + { + "bbox": [ + 250, + 333, + 265, + 343 + ], + "score": 0.57, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 331, + 390, + 345 + ], + "score": 1.0, + "content": "-SOSP with probability at least", + "type": "text" + }, + { + "bbox": [ + 391, + 333, + 414, + 343 + ], + "score": 0.84, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 331, + 506, + 345 + ], + "score": 1.0, + "content": ", the overall stochastic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 102, + 341, + 509, + 379 + ], + "spans": [ + { + "bbox": [ + 102, + 342, + 298, + 360 + ], + "score": 1.0, + "content": "first-order oracle complexity is O(min{ n L2∆\u000f1.5 ,", + "type": "text" + }, + { + "bbox": [ + 229, + 343, + 369, + 358 + ], + "score": 0.7, + "content": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { n \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { \\sqrt { n } L _ { 1 } } { \\epsilon ^ { 2 } } \\log ( \\frac { L _ { 2 } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) \\} ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 341, + 509, + 379 + ], + "score": 1.0, + "content": "and the overall stochastic second-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 357, + 360, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 213, + 373 + ], + "score": 1.0, + "content": "order oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 213, + 358, + 360, + 374 + ], + "score": 0.87, + "content": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { \\sqrt { n L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { L _ { 1 } \\Delta } { \\epsilon ^ { 2 } } \\} \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 102, + 310, + 509, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 506, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 234, + 398 + ], + "score": 1.0, + "content": "From Corollary 4.1 we see that", + "type": "text" + }, + { + "bbox": [ + 234, + 383, + 333, + 397 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 382, + 506, + 398 + ], + "score": 1.0, + "content": "stochastic second-order oracle queries are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 160, + 408 + ], + "score": 1.0, + "content": "sufficient for", + "type": "text" + }, + { + "bbox": [ + 161, + 397, + 185, + 407 + ], + "score": 0.88, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 395, + 227, + 408 + ], + "score": 1.0, + "content": "to find an", + "type": "text" + }, + { + "bbox": [ + 227, + 398, + 232, + 406 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "-SOSP which is significantly better than both the subsampled cubic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 198, + 421 + ], + "score": 1.0, + "content": "regularization method", + "type": "text" + }, + { + "bbox": [ + 199, + 407, + 240, + 420 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "(Kohler & Lucchi, 2017a) and the variance reduction based ones", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 162, + 433 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } \\bar { ( } n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "(Zhou et al., 2018b; Zhang et al., 2018). Recently, Zhou & Gu (2019) developed a√", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 473, + 444 + ], + "score": 1.0, + "content": "stochastic recursive variance-reduced cubic regularization (SRVRC) method which finds an", + "type": "text" + }, + { + "bbox": [ + 473, + 432, + 502, + 444 + ], + "score": 0.91, + "content": "( \\epsilon , \\sqrt { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 244, + 457 + ], + "score": 1.0, + "content": "approximate local minimum with", + "type": "text" + }, + { + "bbox": [ + 244, + 443, + 309, + 457 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 443, + 349, + 457 + ], + "score": 1.0, + "content": "SFO and", + "type": "text" + }, + { + "bbox": [ + 350, + 443, + 423, + 456 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 443, + 507, + 457 + ], + "score": 1.0, + "content": "SSO. But the result", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 376, + 468 + ], + "score": 1.0, + "content": "of SRVRC needs to assume stochastic gradient to be bounded, i.e.,", + "type": "text" + }, + { + "bbox": [ + 376, + 456, + 479, + 467 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 455, + 506, + 468 + ], + "score": 1.0, + "content": ". With", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 253, + 481 + ], + "score": 1.0, + "content": "this extra assumption, STR1 enjoys", + "type": "text" + }, + { + "bbox": [ + 253, + 466, + 342, + 480 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , n / \\epsilon ^ { 2 } , 1 / \\epsilon ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 466, + 383, + 481 + ], + "score": 1.0, + "content": "SFO and", + "type": "text" + }, + { + "bbox": [ + 383, + 468, + 456, + 480 + ], + "score": 0.89, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 466, + 507, + 481 + ], + "score": 1.0, + "content": "SSO. Thus,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 478, + 475, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 115, + 492 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 115, + 479, + 181, + 491 + ], + "score": 0.94, + "content": "1 / { \\epsilon } \\le n \\le 1 / \\bar { \\epsilon } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 478, + 475, + 492 + ], + "score": 1.0, + "content": ", STR1 outperforms SRVRC; otherwise they have the same complexities.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 382, + 507, + 492 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 507, + 372, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 372, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 372, + 522 + ], + "score": 1.0, + "content": "5 STOCHASTIC TRUST REGION METHOD: TYPE II", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "In the above section, we focus on the setting where the stochastic second-order oracle complexity is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 406, + 558 + ], + "score": 1.0, + "content": "prioritized over the stochastic first-order oracle complexity. In this setting,", + "type": "text" + }, + { + "bbox": [ + 406, + 546, + 430, + 557 + ], + "score": 0.89, + "content": "\\mathrm { { S T R } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "achieves the state-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "of-the-art efficiency. In this section, we consider a different complexity measure where first-order", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "and second-order oracle complexities are treated equally and our goal is to minimize the maximum", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 578, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 309, + 593 + ], + "score": 1.0, + "content": "of them. We note that, currently the best result is", + "type": "text" + }, + { + "bbox": [ + 309, + 578, + 364, + 592 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 578, + 507, + 593 + ], + "score": 1.0, + "content": "of the SVRC method (Zhou et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 589, + 140, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 140, + 604 + ], + "score": 1.0, + "content": "2018c).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 535, + 507, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 216, + 621 + ], + "score": 1.0, + "content": "Since the Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 216, + 607, + 231, + 618 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 605, + 242, + 621 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 243, + 608, + 266, + 619 + ], + "score": 0.89, + "content": "\\operatorname { S T R } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 605, + 379, + 621 + ], + "score": 1.0, + "content": "already delivers the superior", + "type": "text" + }, + { + "bbox": [ + 379, + 606, + 430, + 620 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 605, + 505, + 621 + ], + "score": 1.0, + "content": "stochastic Hessian", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 164, + 631 + ], + "score": 1.0, + "content": "complexity, in", + "type": "text" + }, + { + "bbox": [ + 164, + 619, + 188, + 630 + ], + "score": 0.89, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "(see Algorithm 5), we retain Estimator 3 for second-order differential estimation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 397, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 397, + 642 + ], + "score": 1.0, + "content": "and use Estimator 6 to further reduce the stochastic gradient complexity.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 605, + 505, + 642 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 276, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 277, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 277, + 671 + ], + "score": 1.0, + "content": "5.1 GRADIENT ESTIMATOR: CASE (2)", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "When stochastic gradient and Hessian complexities are equally important, we use Hessian to improve", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 464, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 234, + 702 + ], + "score": 1.0, + "content": "the gradient estimation. Denote", + "type": "text" + }, + { + "bbox": [ + 235, + 689, + 331, + 701 + ], + "score": 0.94, + "content": "\\mathbf { x } ( a ) = a \\bar { \\mathbf { x } } ^ { t } + ( 1 - a ) \\tilde { \\mathbf { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 687, + 464, + 702 + ], + "score": 1.0, + "content": ". From Assumption 2.3, we have", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 677, + 505, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 707, + 514, + 736 + ], + "lines": [ + { + "bbox": [ + 111, + 707, + 514, + 736 + ], + "spans": [ + { + "bbox": [ + 111, + 707, + 514, + 736 + ], + "score": 0.89, + "content": "\\nabla f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla f _ { i } ( \\widetilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\| = \\| \\int _ { 0 } ^ { 1 } [ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ( a ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ] ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\mathbf { d } a \\| \\leq \\frac { L _ { 2 } } { 2 } \\| \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } \\| ^ { 2 }", + "type": "interline_equation", + "image_path": "ebcb777e8d807878d2f376a9a1ef58e3733ab936c83c3451ca41ba983bd3a78b.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 111, + 707, + 514, + 716.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 111, + 716.6666666666666, + 514, + 726.3333333333333 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 111, + 726.3333333333333, + 514, + 735.9999999999999 + ], + "spans": [], + "index": 47 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Such property can be used to improve Lemma 4.2 of Estimator 4. Specifically, define the correction", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 99, + 393, + 114 + ], + "lines": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "spans": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "score": 0.91, + "content": "\\mathbf { c } ^ { k } = [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ,", + "type": "interline_equation", + "image_path": "374f1a04ace9edfc2eff14647f0696751e7030cb0adc31d0cd8e315d6054623a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 134, + 131 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 120, + 142, + 129 + ], + "score": 0.64, + "content": "\\tilde { \\bf x }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 118, + 465, + 131 + ], + "score": 1.0, + "content": "is some reference point updated in an epoch-wise manner. Estimator 6 adds", + "type": "text" + }, + { + "bbox": [ + 465, + 118, + 477, + 129 + ], + "score": 0.87, + "content": "\\mathbf { c } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 118, + 505, + 131 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "estimator in Estimator 4. Note that in Estimator 6, the first- and second-order oracle complexities are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "the same. We now analyze the first-order (and second-order) oracle complexity to meet requirement", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 151, + 124, + 165 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 124, + 165 + ], + "score": 1.0, + "content": "(9).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 237, + 180 + ], + "score": 1.0, + "content": "Lemma 5.1. Assume Algorithm", + "type": "text" + }, + { + "bbox": [ + 238, + 169, + 245, + 178 + ], + "score": 0.43, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 167, + 360, + 180 + ], + "score": 1.0, + "content": "takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 360, + 167, + 409, + 181 + ], + "score": 0.93, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "as in Theorem 3.1. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 123, + 192 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 123, + 180, + 148, + 191 + ], + "score": 0.88, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 179, + 276, + 192 + ], + "score": 1.0, + "content": ", Estimator 6 produces estimator", + "type": "text" + }, + { + "bbox": [ + 276, + 180, + 288, + 192 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 179, + 403, + 192 + ], + "score": 1.0, + "content": "for the first order differential", + "type": "text" + }, + { + "bbox": [ + 403, + 180, + 439, + 192 + ], + "score": 0.91, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 179, + 478, + 192 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 478, + 180, + 505, + 192 + ], + "score": 0.88, + "content": "\\| \\mathbf { g } ^ { k } - \\mathbf { \\mu }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 189, + 503, + 205 + ], + "spans": [ + { + "bbox": [ + 107, + 191, + 175, + 203 + ], + "score": 0.91, + "content": "\\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 189, + 271, + 205 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 271, + 192, + 309, + 204 + ], + "score": 0.92, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 189, + 346, + 205 + ], + "score": 1.0, + "content": ", if we set", + "type": "text" + }, + { + "bbox": [ + 347, + 191, + 391, + 203 + ], + "score": 0.91, + "content": "p _ { 1 } = n ^ { 0 . 2 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 189, + 410, + 205 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 410, + 191, + 503, + 203 + ], + "score": 0.88, + "content": "s _ { 1 } \\doteq \\dot { n } ^ { 0 . 7 5 } c \\log ( \\ddot { K _ { 0 } } / \\delta )", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 203, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 133, + 214 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 204, + 173, + 213 + ], + "score": 0.83, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 203, + 191, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 203, + 205, + 214 + ], + "score": 0.89, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 203, + 506, + 214 + ], + "score": 1.0, + "content": "is a constant to be determined. Consequently, the amortized per-iteration", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 445, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 315, + 227 + ], + "score": 1.0, + "content": "stochastic first-order oracle complexity to construct", + "type": "text" + }, + { + "bbox": [ + 315, + 213, + 327, + 225 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 212, + 337, + 227 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 337, + 213, + 441, + 226 + ], + "score": 0.92, + "content": "2 s _ { 1 } = 2 n ^ { 0 . \\dot { 7 } 5 } c \\log ( K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 212, + 445, + 227 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "The proof of Lemma 5.1 is similar to the one of Lemma 4.1 and is deferred to Appendix B.4.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Similar to the previous section, Lemma 5.1 only guarantees that the gradient estimator satisfies the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 421, + 268 + ], + "score": 1.0, + "content": "requirement (9) in a single iteration. Such result can be extended to hold for all", + "type": "text" + }, + { + "bbox": [ + 421, + 257, + 428, + 266 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "by using the union", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 454, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 154, + 280 + ], + "score": 1.0, + "content": "bound with", + "type": "text" + }, + { + "bbox": [ + 154, + 267, + 195, + 279 + ], + "score": 0.91, + "content": "K _ { 0 } = 2 K", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 266, + 454, + 280 + ], + "score": 1.0, + "content": ", which together with Theorem 3.1 gives the following corollary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 288, + 293 + ], + "score": 1.0, + "content": "Corollary 5.1 (Computational Complexity of", + "type": "text" + }, + { + "bbox": [ + 288, + 282, + 311, + 293 + ], + "score": 0.83, + "content": "\\mathrm { { S T R } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 281, + 398, + 293 + ], + "score": 1.0, + "content": "). Algorithm 5 finds a", + "type": "text" + }, + { + "bbox": [ + 398, + 282, + 413, + 292 + ], + "score": 0.71, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "-SOSP with probability", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 140, + 311 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 140, + 295, + 164, + 307 + ], + "score": 0.8, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 288, + 198, + 311 + ], + "score": 1.0, + "content": ", within", + "type": "text" + }, + { + "bbox": [ + 198, + 293, + 302, + 309 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 288, + 507, + 311 + ], + "score": 1.0, + "content": ") overall stochastic first-order oracle queries and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 408, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 217, + 324 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 300, + 408, + 329 + ], + "score": 1.0, + "content": "\u000f1.5 δ\u000f1.5 overall stochastic second-order oracle queries.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 251, + 347 + ], + "score": 1.0, + "content": "Corollary 5.1 shows that to find an", + "type": "text" + }, + { + "bbox": [ + 252, + 336, + 257, + 344 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 331, + 379, + 347 + ], + "score": 1.0, + "content": "-SOSP, both SFO and SSO of", + "type": "text" + }, + { + "bbox": [ + 380, + 334, + 404, + 345 + ], + "score": 0.87, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 331, + 421, + 347 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 421, + 332, + 476, + 347 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 382, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 231, + 360 + ], + "score": 1.0, + "content": "surpasses the best existing one", + "type": "text" + }, + { + "bbox": [ + 231, + 345, + 286, + 359 + ], + "score": 0.93, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 345, + 382, + 360 + ], + "score": 1.0, + "content": "in (Zhou et al., 2018c).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 393, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 394, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 394, + 389 + ], + "score": 1.0, + "content": "6 PRACTICAL STOCHASTIC TRUST REGION VARIANTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 304, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 306, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 306, + 412 + ], + "score": 1.0, + "content": "6.1 HANDLING INEXACT QCQP SOLUTIONS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "One drawback of MetaAlgorithm 1 is that it requires the exact solution to the QCQP subproblem (8)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "and uses the dual variable as stopping criterion. We address this problem by developing a practical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "variant, MetaAlgorithm 7, which admits inexact QCQP solutions without access to the dual variable.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 384, + 466 + ], + "score": 1.0, + "content": "This algorithm repeatedly invokes a procedure called INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 384, + 453, + 403, + 464 + ], + "score": 0.26, + "content": "\\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 452, + 507, + 466 + ], + "score": 1.0, + "content": ", which, as we shall see,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 152, + 477 + ], + "score": 1.0, + "content": "outputs an", + "type": "text" + }, + { + "bbox": [ + 153, + 464, + 173, + 476 + ], + "score": 0.86, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 462, + 327, + 477 + ], + "score": 1.0, + "content": "-SOSP with a constant probability of", + "type": "text" + }, + { + "bbox": [ + 328, + 464, + 344, + 476 + ], + "score": 0.5, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 462, + 357, + 477 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 357, + 464, + 398, + 476 + ], + "score": 0.91, + "content": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "iterations. By repeatedly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 194, + 488 + ], + "score": 1.0, + "content": "invoking INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 195, + 475, + 214, + 486 + ], + "score": 0.4, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 474, + 229, + 488 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 230, + 474, + 280, + 487 + ], + "score": 0.91, + "content": "\\Theta ( \\log ( 1 / \\bar { \\delta } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 474, + 475, + 488 + ], + "score": 1.0, + "content": "times, MetaAlgorithm 7 boosts the probability to", + "type": "text" + }, + { + "bbox": [ + 476, + 475, + 505, + 487 + ], + "score": 0.9, + "content": "( 1 - \\delta )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 168, + 499 + ], + "score": 1.0, + "content": "for any desired", + "type": "text" + }, + { + "bbox": [ + 169, + 486, + 175, + 496 + ], + "score": 0.71, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 484, + 505, + 499 + ], + "score": 1.0, + "content": ". This repeating technique has been studied by, e.g., (Allen-Zhu & Li, 2018; Allen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 244, + 510 + ], + "score": 1.0, + "content": "Zhu, 2018b). To test whether the", + "type": "text" + }, + { + "bbox": [ + 244, + 497, + 249, + 506 + ], + "score": 0.8, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 495, + 322, + 510 + ], + "score": 1.0, + "content": "-th run outputs an", + "type": "text" + }, + { + "bbox": [ + 323, + 496, + 344, + 509 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 495, + 460, + 510 + ], + "score": 1.0, + "content": "-SOSP, we need to compute", + "type": "text" + }, + { + "bbox": [ + 460, + 497, + 504, + 509 + ], + "score": 0.92, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\|", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 507, + 502, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 228, + 520 + ], + "score": 1.0, + "content": "and the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 229, + 507, + 267, + 520 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 507, + 502, + 520 + ], + "score": 1.0, + "content": ". The latter one can be approximated by solving the QCQP", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 523, + 374, + 546 + ], + "lines": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "spans": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "score": 0.94, + "content": "\\mathbf { v } ^ { t } : = \\operatorname * { a r g m i n } _ { \\| \\mathbf { v } \\| \\leq 1 } \\psi _ { t } ( \\mathbf { v } ) = \\langle \\mathbf { H } ^ { t } \\mathbf { v } , \\mathbf { v } \\rangle ,", + "type": "interline_equation", + "image_path": "fecab025599a069ccd8344e4f1adcf4e617058a069250ece8202a60bfb7555b8.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 132, + 565 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 552, + 146, + 563 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 552, + 219, + 565 + ], + "score": 1.0, + "content": "is the full Hessian", + "type": "text" + }, + { + "bbox": [ + 219, + 552, + 258, + 564 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "or its estimation. One can show that MetaAlgorithm 7 finds an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 563, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 107, + 565, + 127, + 578 + ], + "score": 0.87, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 563, + 203, + 580 + ], + "score": 1.0, + "content": "-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 204, + 565, + 231, + 578 + ], + "score": 0.92, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 563, + 243, + 580 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 243, + 564, + 284, + 578 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 563, + 507, + 580 + ], + "score": 1.0, + "content": "iterations. We defer the detailed analysis to Appendix C.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 108, + 590, + 277, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 278, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 278, + 603 + ], + "score": 1.0, + "content": "6.2 HESSIAN-FREE IMPLEMENTATION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 385, + 624 + ], + "score": 1.0, + "content": "Based on MetaAlgorithm 7, we propose a Hessian-free method named", + "type": "text" + }, + { + "bbox": [ + 385, + 611, + 415, + 622 + ], + "score": 0.87, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 610, + 506, + 624 + ], + "score": 1.0, + "content": ", which is summarized", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 620, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 104, + 620, + 170, + 634 + ], + "score": 1.0, + "content": "in Algorithm 8.", + "type": "text" + }, + { + "bbox": [ + 170, + 622, + 200, + 633 + ], + "score": 0.87, + "content": "\\mathrm { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 620, + 457, + 634 + ], + "score": 1.0, + "content": "leverages the full/stochastic Hessian and Estimator 4 to construct", + "type": "text" + }, + { + "bbox": [ + 458, + 621, + 473, + 632 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 620, + 490, + 634 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 490, + 621, + 502, + 633 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 620, + 506, + 634 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "respectively. Besides, it uses Lanczos method (Gould et al., 1999; Carmon & Duchi, 2018) as the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "QCQP solver, which can be implemented in a Hessian-free manner (i.e., using only Hessian-vector", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 351, + 667 + ], + "score": 1.0, + "content": "products without explicit Hessian matrix evaluations). Thus,", + "type": "text" + }, + { + "bbox": [ + 352, + 654, + 367, + 665 + ], + "score": 0.87, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "is only accessed through Hessian-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "vector products and is never explicitly constructed. Since Hessian-vector products can be computed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 268, + 689 + ], + "score": 1.0, + "content": "in linear time (in terms of the dimension", + "type": "text" + }, + { + "bbox": [ + 268, + 677, + 275, + 687 + ], + "score": 0.66, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 677, + 506, + 689 + ], + "score": 1.0, + "content": ") for many machine learning problems (Allen-Zhu, 2018b;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Agarwal et al., 2017), Hessian-free methods are usually more practical than Hessian based ones", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "for high dimensional problems. The following theorem, whose proof can be found in Appendix D,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "establishes the runtime complexity (i.e., the total complexity of stochastic gradient and Hessian-vector", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 717, + 316, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 281, + 735 + ], + "score": 1.0, + "content": "product evaluations (Zhou & Gu, 2019)) of", + "type": "text" + }, + { + "bbox": [ + 281, + 721, + 311, + 732 + ], + "score": 0.87, + "content": "{ \\bf S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 717, + 316, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Such property can be used to improve Lemma 4.2 of Estimator 4. Specifically, define the correction", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 505, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 99, + 393, + 114 + ], + "lines": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "spans": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "score": 0.91, + "content": "\\mathbf { c } ^ { k } = [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ,", + "type": "interline_equation", + "image_path": "374f1a04ace9edfc2eff14647f0696751e7030cb0adc31d0cd8e315d6054623a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 217, + 99, + 393, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 134, + 131 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 120, + 142, + 129 + ], + "score": 0.64, + "content": "\\tilde { \\bf x }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 118, + 465, + 131 + ], + "score": 1.0, + "content": "is some reference point updated in an epoch-wise manner. Estimator 6 adds", + "type": "text" + }, + { + "bbox": [ + 465, + 118, + 477, + 129 + ], + "score": 0.87, + "content": "\\mathbf { c } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 118, + 505, + 131 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "estimator in Estimator 4. Note that in Estimator 6, the first- and second-order oracle complexities are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "the same. We now analyze the first-order (and second-order) oracle complexity to meet requirement", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 151, + 124, + 165 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 124, + 165 + ], + "score": 1.0, + "content": "(9).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 118, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 237, + 180 + ], + "score": 1.0, + "content": "Lemma 5.1. Assume Algorithm", + "type": "text" + }, + { + "bbox": [ + 238, + 169, + 245, + 178 + ], + "score": 0.43, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 167, + 360, + 180 + ], + "score": 1.0, + "content": "takes the trust region radius", + "type": "text" + }, + { + "bbox": [ + 360, + 167, + 409, + 181 + ], + "score": 0.93, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "as in Theorem 3.1. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 123, + 192 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 123, + 180, + 148, + 191 + ], + "score": 0.88, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 179, + 276, + 192 + ], + "score": 1.0, + "content": ", Estimator 6 produces estimator", + "type": "text" + }, + { + "bbox": [ + 276, + 180, + 288, + 192 + ], + "score": 0.87, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 179, + 403, + 192 + ], + "score": 1.0, + "content": "for the first order differential", + "type": "text" + }, + { + "bbox": [ + 403, + 180, + 439, + 192 + ], + "score": 0.91, + "content": "\\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 179, + 478, + 192 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 478, + 180, + 505, + 192 + ], + "score": 0.88, + "content": "\\| \\mathbf { g } ^ { k } - \\mathbf { \\mu }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 189, + 503, + 205 + ], + "spans": [ + { + "bbox": [ + 107, + 191, + 175, + 203 + ], + "score": 0.91, + "content": "\\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 189, + 271, + 205 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 271, + 192, + 309, + 204 + ], + "score": 0.92, + "content": "1 - \\delta / K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 189, + 346, + 205 + ], + "score": 1.0, + "content": ", if we set", + "type": "text" + }, + { + "bbox": [ + 347, + 191, + 391, + 203 + ], + "score": 0.91, + "content": "p _ { 1 } = n ^ { 0 . 2 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 189, + 410, + 205 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 410, + 191, + 503, + 203 + ], + "score": 0.88, + "content": "s _ { 1 } \\doteq \\dot { n } ^ { 0 . 7 5 } c \\log ( \\ddot { K _ { 0 } } / \\delta )", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 203, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 133, + 214 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 204, + 173, + 213 + ], + "score": 0.83, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 203, + 191, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 203, + 205, + 214 + ], + "score": 0.89, + "content": "K _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 203, + 506, + 214 + ], + "score": 1.0, + "content": "is a constant to be determined. Consequently, the amortized per-iteration", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 445, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 315, + 227 + ], + "score": 1.0, + "content": "stochastic first-order oracle complexity to construct", + "type": "text" + }, + { + "bbox": [ + 315, + 213, + 327, + 225 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 212, + 337, + 227 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 337, + 213, + 441, + 226 + ], + "score": 0.92, + "content": "2 s _ { 1 } = 2 n ^ { 0 . \\dot { 7 } 5 } c \\log ( K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 212, + 445, + 227 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 167, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "The proof of Lemma 5.1 is similar to the one of Lemma 4.1 and is deferred to Appendix B.4.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Similar to the previous section, Lemma 5.1 only guarantees that the gradient estimator satisfies the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 421, + 268 + ], + "score": 1.0, + "content": "requirement (9) in a single iteration. Such result can be extended to hold for all", + "type": "text" + }, + { + "bbox": [ + 421, + 257, + 428, + 266 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "by using the union", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 454, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 154, + 280 + ], + "score": 1.0, + "content": "bound with", + "type": "text" + }, + { + "bbox": [ + 154, + 267, + 195, + 279 + ], + "score": 0.91, + "content": "K _ { 0 } = 2 K", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 266, + 454, + 280 + ], + "score": 1.0, + "content": ", which together with Theorem 3.1 gives the following corollary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 234, + 506, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 288, + 293 + ], + "score": 1.0, + "content": "Corollary 5.1 (Computational Complexity of", + "type": "text" + }, + { + "bbox": [ + 288, + 282, + 311, + 293 + ], + "score": 0.83, + "content": "\\mathrm { { S T R } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 281, + 398, + 293 + ], + "score": 1.0, + "content": "). Algorithm 5 finds a", + "type": "text" + }, + { + "bbox": [ + 398, + 282, + 413, + 292 + ], + "score": 0.71, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "-SOSP with probability", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 140, + 311 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 140, + 295, + 164, + 307 + ], + "score": 0.8, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 288, + 198, + 311 + ], + "score": 1.0, + "content": ", within", + "type": "text" + }, + { + "bbox": [ + 198, + 293, + 302, + 309 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 288, + 507, + 311 + ], + "score": 1.0, + "content": ") overall stochastic first-order oracle queries and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 408, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 217, + 324 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 300, + 408, + 329 + ], + "score": 1.0, + "content": "\u000f1.5 δ\u000f1.5 overall stochastic second-order oracle queries.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 281, + 507, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 251, + 347 + ], + "score": 1.0, + "content": "Corollary 5.1 shows that to find an", + "type": "text" + }, + { + "bbox": [ + 252, + 336, + 257, + 344 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 331, + 379, + 347 + ], + "score": 1.0, + "content": "-SOSP, both SFO and SSO of", + "type": "text" + }, + { + "bbox": [ + 380, + 334, + 404, + 345 + ], + "score": 0.87, + "content": "\\mathrm { { S T R _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 331, + 421, + 347 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 421, + 332, + 476, + 347 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 382, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 231, + 360 + ], + "score": 1.0, + "content": "surpasses the best existing one", + "type": "text" + }, + { + "bbox": [ + 231, + 345, + 286, + 359 + ], + "score": 0.93, + "content": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 345, + 382, + 360 + ], + "score": 1.0, + "content": "in (Zhou et al., 2018c).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 331, + 506, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 393, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 394, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 394, + 389 + ], + "score": 1.0, + "content": "6 PRACTICAL STOCHASTIC TRUST REGION VARIANTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 304, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 306, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 306, + 412 + ], + "score": 1.0, + "content": "6.1 HANDLING INEXACT QCQP SOLUTIONS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "One drawback of MetaAlgorithm 1 is that it requires the exact solution to the QCQP subproblem (8)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "and uses the dual variable as stopping criterion. We address this problem by developing a practical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "variant, MetaAlgorithm 7, which admits inexact QCQP solutions without access to the dual variable.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 384, + 466 + ], + "score": 1.0, + "content": "This algorithm repeatedly invokes a procedure called INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 384, + 453, + 403, + 464 + ], + "score": 0.26, + "content": "\\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 452, + 507, + 466 + ], + "score": 1.0, + "content": ", which, as we shall see,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 152, + 477 + ], + "score": 1.0, + "content": "outputs an", + "type": "text" + }, + { + "bbox": [ + 153, + 464, + 173, + 476 + ], + "score": 0.86, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 462, + 327, + 477 + ], + "score": 1.0, + "content": "-SOSP with a constant probability of", + "type": "text" + }, + { + "bbox": [ + 328, + 464, + 344, + 476 + ], + "score": 0.5, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 462, + 357, + 477 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 357, + 464, + 398, + 476 + ], + "score": 0.91, + "content": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "iterations. By repeatedly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 194, + 488 + ], + "score": 1.0, + "content": "invoking INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 195, + 475, + 214, + 486 + ], + "score": 0.4, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 474, + 229, + 488 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 230, + 474, + 280, + 487 + ], + "score": 0.91, + "content": "\\Theta ( \\log ( 1 / \\bar { \\delta } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 474, + 475, + 488 + ], + "score": 1.0, + "content": "times, MetaAlgorithm 7 boosts the probability to", + "type": "text" + }, + { + "bbox": [ + 476, + 475, + 505, + 487 + ], + "score": 0.9, + "content": "( 1 - \\delta )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 168, + 499 + ], + "score": 1.0, + "content": "for any desired", + "type": "text" + }, + { + "bbox": [ + 169, + 486, + 175, + 496 + ], + "score": 0.71, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 484, + 505, + 499 + ], + "score": 1.0, + "content": ". This repeating technique has been studied by, e.g., (Allen-Zhu & Li, 2018; Allen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 244, + 510 + ], + "score": 1.0, + "content": "Zhu, 2018b). To test whether the", + "type": "text" + }, + { + "bbox": [ + 244, + 497, + 249, + 506 + ], + "score": 0.8, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 495, + 322, + 510 + ], + "score": 1.0, + "content": "-th run outputs an", + "type": "text" + }, + { + "bbox": [ + 323, + 496, + 344, + 509 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 495, + 460, + 510 + ], + "score": 1.0, + "content": "-SOSP, we need to compute", + "type": "text" + }, + { + "bbox": [ + 460, + 497, + 504, + 509 + ], + "score": 0.92, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\|", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 507, + 502, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 228, + 520 + ], + "score": 1.0, + "content": "and the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 229, + 507, + 267, + 520 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 507, + 502, + 520 + ], + "score": 1.0, + "content": ". The latter one can be approximated by solving the QCQP", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 419, + 507, + 520 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 523, + 374, + 546 + ], + "lines": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "spans": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "score": 0.94, + "content": "\\mathbf { v } ^ { t } : = \\operatorname * { a r g m i n } _ { \\| \\mathbf { v } \\| \\leq 1 } \\psi _ { t } ( \\mathbf { v } ) = \\langle \\mathbf { H } ^ { t } \\mathbf { v } , \\mathbf { v } \\rangle ,", + "type": "interline_equation", + "image_path": "fecab025599a069ccd8344e4f1adcf4e617058a069250ece8202a60bfb7555b8.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 236, + 523, + 374, + 546 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 132, + 565 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 552, + 146, + 563 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 552, + 219, + 565 + ], + "score": 1.0, + "content": "is the full Hessian", + "type": "text" + }, + { + "bbox": [ + 219, + 552, + 258, + 564 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "or its estimation. One can show that MetaAlgorithm 7 finds an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 563, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 107, + 565, + 127, + 578 + ], + "score": 0.87, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 563, + 203, + 580 + ], + "score": 1.0, + "content": "-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 204, + 565, + 231, + 578 + ], + "score": 0.92, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 563, + 243, + 580 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 243, + 564, + 284, + 578 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 563, + 507, + 580 + ], + "score": 1.0, + "content": "iterations. We defer the detailed analysis to Appendix C.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 552, + 507, + 580 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 590, + 277, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 278, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 278, + 603 + ], + "score": 1.0, + "content": "6.2 HESSIAN-FREE IMPLEMENTATION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 385, + 624 + ], + "score": 1.0, + "content": "Based on MetaAlgorithm 7, we propose a Hessian-free method named", + "type": "text" + }, + { + "bbox": [ + 385, + 611, + 415, + 622 + ], + "score": 0.87, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 610, + 506, + 624 + ], + "score": 1.0, + "content": ", which is summarized", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 620, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 104, + 620, + 170, + 634 + ], + "score": 1.0, + "content": "in Algorithm 8.", + "type": "text" + }, + { + "bbox": [ + 170, + 622, + 200, + 633 + ], + "score": 0.87, + "content": "\\mathrm { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 620, + 457, + 634 + ], + "score": 1.0, + "content": "leverages the full/stochastic Hessian and Estimator 4 to construct", + "type": "text" + }, + { + "bbox": [ + 458, + 621, + 473, + 632 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 620, + 490, + 634 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 490, + 621, + 502, + 633 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 620, + 506, + 634 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "respectively. Besides, it uses Lanczos method (Gould et al., 1999; Carmon & Duchi, 2018) as the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "QCQP solver, which can be implemented in a Hessian-free manner (i.e., using only Hessian-vector", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 351, + 667 + ], + "score": 1.0, + "content": "products without explicit Hessian matrix evaluations). Thus,", + "type": "text" + }, + { + "bbox": [ + 352, + 654, + 367, + 665 + ], + "score": 0.87, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "is only accessed through Hessian-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "vector products and is never explicitly constructed. Since Hessian-vector products can be computed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 268, + 689 + ], + "score": 1.0, + "content": "in linear time (in terms of the dimension", + "type": "text" + }, + { + "bbox": [ + 268, + 677, + 275, + 687 + ], + "score": 0.66, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 677, + 506, + 689 + ], + "score": 1.0, + "content": ") for many machine learning problems (Allen-Zhu, 2018b;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Agarwal et al., 2017), Hessian-free methods are usually more practical than Hessian based ones", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "for high dimensional problems. The following theorem, whose proof can be found in Appendix D,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "establishes the runtime complexity (i.e., the total complexity of stochastic gradient and Hessian-vector", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 717, + 316, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 281, + 735 + ], + "score": 1.0, + "content": "product evaluations (Zhou & Gu, 2019)) of", + "type": "text" + }, + { + "bbox": [ + 281, + 721, + 311, + 732 + ], + "score": 0.87, + "content": "{ \\bf S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 717, + 316, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 610, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 311, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 312, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 312, + 96 + ], + "score": 1.0, + "content": "MetaAlgorithm 7 Inexact Trust Region Method II", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 98, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 104, + 95, + 507, + 113 + ], + "spans": [ + { + "bbox": [ + 104, + 95, + 189, + 113 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 189, + 98, + 201, + 109 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 95, + 244, + 113 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 244, + 101, + 250, + 109 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 95, + 365, + 113 + ], + "score": 1.0, + "content": ", number of inner iterations", + "type": "text" + }, + { + "bbox": [ + 366, + 99, + 376, + 109 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 95, + 421, + 113 + ], + "score": 1.0, + "content": ", constants", + "type": "text" + }, + { + "bbox": [ + 422, + 99, + 473, + 111 + ], + "score": 0.59, + "content": "\\delta , \\zeta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 95, + 507, + 113 + ], + "score": 1.0, + "content": ", c1, c2,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 122, + 110, + 404, + 122 + ], + "spans": [ + { + "bbox": [ + 122, + 110, + 230, + 122 + ], + "score": 1.0, + "content": "number of outer iterations", + "type": "text" + }, + { + "bbox": [ + 230, + 110, + 301, + 122 + ], + "score": 0.92, + "content": "T = \\Theta ( \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 110, + 354, + 122 + ], + "score": 1.0, + "content": ", sample size", + "type": "text" + }, + { + "bbox": [ + 355, + 112, + 361, + 120 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 110, + 404, + 122 + ], + "score": 1.0, + "content": "(optional)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 120, + 197, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 138, + 132 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 121, + 162, + 131 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 120, + 173, + 132 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 121, + 182, + 131 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 120, + 197, + 132 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 130, + 290, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 122, + 143 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 138, + 131, + 286, + 144 + ], + "score": 0.58, + "content": "\\mathbf { x } ^ { t } \\gets \\mathrm { I N E X A C T T R } _ { \\mathrm { W E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 130, + 290, + 145 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 141, + 322, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 143, + 122, + 154 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 137, + 142, + 177, + 154 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 199, + 144, + 207, + 152 + ], + "score": 0.7, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 141, + 312, + 155 + ], + "score": 1.0, + "content": "high accuracy case (small", + "type": "text" + }, + { + "bbox": [ + 312, + 145, + 317, + 153 + ], + "score": 0.39, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 141, + 322, + 155 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 150, + 206, + 167 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 133, + 153, + 201, + 165 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 150, + 206, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 164, + 336, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 165, + 122, + 176 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 164, + 182, + 177 + ], + "score": 1.0, + "content": "Option II:", + "type": "text" + }, + { + "bbox": [ + 200, + 167, + 207, + 174 + ], + "score": 0.74, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 164, + 325, + 177 + ], + "score": 1.0, + "content": "low accuracy case (moderate", + "type": "text" + }, + { + "bbox": [ + 325, + 166, + 331, + 174 + ], + "score": 0.53, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 164, + 336, + 177 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 174, + 370, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 176, + 122, + 188 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 132, + 174, + 158, + 189 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 158, + 178, + 164, + 186 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 174, + 245, + 189 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 246, + 176, + 255, + 186 + ], + "score": 0.8, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 174, + 286, + 189 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 286, + 175, + 365, + 187 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { t } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 174, + 370, + 189 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 186, + 444, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 186, + 122, + 200 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 137, + 187, + 177, + 200 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 187, + 188, + 198 + ], + "score": 0.86, + "content": "\\tilde { \\mathbf { v } } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 187, + 314, + 200 + ], + "score": 1.0, + "content": "by solving (10) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 314, + 187, + 338, + 199 + ], + "score": 0.9, + "content": "\\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 187, + 406, + 200 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 406, + 187, + 439, + 200 + ], + "score": 0.9, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 187, + 444, + 200 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 110, + 198, + 340, + 212 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 122, + 211 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 198, + 147, + 212 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 148, + 199, + 218, + 212 + ], + "score": 0.9, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\| \\leq c _ { 1 } \\epsilon _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 198, + 236, + 212 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 199, + 318, + 212 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 198, + 340, + 212 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 210, + 224, + 222 + ], + "spans": [ + { + "bbox": [ + 110, + 211, + 122, + 222 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 152, + 210, + 183, + 222 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 183, + 211, + 219, + 222 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { \\epsilon } : = \\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 210, + 224, + 222 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 167, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 122, + 233 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 136, + 220, + 167, + 232 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 232, + 157, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 157, + 245 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 252, + 293, + 267 + ], + "spans": [ + { + "bbox": [ + 108, + 252, + 222, + 267 + ], + "score": 1.0, + "content": "12: procedure INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 222, + 254, + 293, + 266 + ], + "score": 0.83, + "content": "\\mathbf { w } _ { \\mathrm { E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 265, + 233, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 122, + 277 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 138, + 265, + 153, + 276 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 266, + 178, + 276 + ], + "score": 0.89, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 265, + 190, + 276 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 191, + 266, + 218, + 276 + ], + "score": 0.83, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 265, + 233, + 276 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 275, + 413, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 122, + 289 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 152, + 275, + 192, + 289 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 192, + 276, + 204, + 288 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 275, + 222, + 289 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 222, + 276, + 237, + 287 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 275, + 381, + 289 + ], + "score": 1.0, + "content": "such that (9) holds with probability", + "type": "text" + }, + { + "bbox": [ + 382, + 275, + 413, + 289 + ], + "score": 0.92, + "content": "\\textstyle { 1 - \\frac { \\zeta } { 4 K } }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 282, + 471, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 122, + 302 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 150, + 282, + 192, + 307 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 192, + 288, + 205, + 300 + ], + "score": 0.86, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 282, + 325, + 307 + ], + "score": 1.0, + "content": "by solving (8) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 325, + 289, + 366, + 302 + ], + "score": 0.93, + "content": "\\epsilon ^ { 1 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 282, + 433, + 307 + ], + "score": 1.0, + "content": "4Kwith probability", + "type": "text" + }, + { + "bbox": [ + 433, + 288, + 465, + 303 + ], + "score": 0.91, + "content": "\\textstyle 1 - { \\frac { \\zeta } { 4 K } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 282, + 471, + 307 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 300, + 231, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 122, + 315 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 153, + 302, + 226, + 315 + ], + "score": 0.54, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation", + "image_path": "1a9fb50e5d64bf28bc67a52a2b2865fe8ae21e8dc6840cd24e63963c0e94a41b.jpg" + }, + { + "bbox": [ + 227, + 300, + 231, + 316 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 315, + 172, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 122, + 326 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 138, + 315, + 172, + 326 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 324, + 307, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 122, + 338 + ], + "score": 1.0, + "content": "18:", + "type": "text" + }, + { + "bbox": [ + 136, + 324, + 207, + 339 + ], + "score": 1.0, + "content": "Randomly select", + "type": "text" + }, + { + "bbox": [ + 208, + 325, + 214, + 335 + ], + "score": 0.79, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 324, + 237, + 339 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 238, + 325, + 302, + 338 + ], + "score": 0.89, + "content": "\\{ 0 , \\ldots , K - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 324, + 307, + 339 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 337, + 195, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 122, + 351 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 136, + 337, + 195, + 350 + ], + "score": 1.0, + "content": "return xk¯+1;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 188, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 188, + 362 + ], + "score": 1.0, + "content": "20: end procedure", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 372, + 191, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 194, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 194, + 388 + ], + "score": 1.0, + "content": "Algorithm 8 STRfree", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 109, + 387, + 424, + 455 + ], + "lines": [ + { + "bbox": [ + 111, + 387, + 286, + 399 + ], + "spans": [ + { + "bbox": [ + 111, + 387, + 286, + 399 + ], + "score": 1.0, + "content": "1: In the same setting as MetaAlgorithm 7,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 111, + 397, + 325, + 411 + ], + "spans": [ + { + "bbox": [ + 111, + 398, + 121, + 410 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 132, + 397, + 247, + 411 + ], + "score": 1.0, + "content": "construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 247, + 398, + 259, + 409 + ], + "score": 0.86, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 397, + 325, + 411 + ], + "score": 1.0, + "content": "by Estimator 4;", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 110, + 406, + 276, + 422 + ], + "spans": [ + { + "bbox": [ + 110, + 410, + 121, + 421 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 406, + 246, + 422 + ], + "score": 1.0, + "content": "construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 246, + 409, + 261, + 419 + ], + "score": 0.86, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 406, + 276, + 422 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 111, + 418, + 257, + 433 + ], + "spans": [ + { + "bbox": [ + 111, + 420, + 121, + 432 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 142, + 418, + 182, + 433 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 182, + 419, + 252, + 432 + ], + "score": 0.92, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 418, + 257, + 433 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 110, + 429, + 424, + 444 + ], + "spans": [ + { + "bbox": [ + 110, + 431, + 121, + 442 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 429, + 209, + 444 + ], + "score": 1.0, + "content": "Option II: Draw", + "type": "text" + }, + { + "bbox": [ + 210, + 434, + 216, + 441 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 429, + 298, + 444 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 298, + 431, + 308, + 441 + ], + "score": 0.82, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 429, + 338, + 444 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 338, + 430, + 420, + 443 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 429, + 424, + 444 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 111, + 442, + 336, + 454 + ], + "spans": [ + { + "bbox": [ + 111, + 443, + 122, + 453 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 442, + 336, + 454 + ], + "score": 1.0, + "content": "use Lanczos method to solve QCQP subproblems.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 506, + 530 + ], + "lines": [ + { + "bbox": [ + 104, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 463, + 382, + 478 + ], + "score": 1.0, + "content": "Theorem 6.1. Consider Algorithm 8 for solving problem (1). Let", + "type": "text" + }, + { + "bbox": [ + 382, + 465, + 419, + 477 + ], + "score": 0.87, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 463, + 424, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 424, + 463, + 476, + 478 + ], + "score": 0.82, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 463, + 481, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 481, + 464, + 505, + 477 + ], + "score": 0.76, + "content": "K =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 474, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 159, + 492 + ], + "score": 0.88, + "content": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 478, + 163, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 479, + 227, + 493 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } ( 2 / \\delta ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 478, + 230, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 480, + 269, + 492 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 478, + 272, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 480, + 311, + 492 + ], + "score": 0.84, + "content": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 478, + 332, + 494 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 347, + 474, + 507, + 498 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). The hyper-parameters", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 157, + 504 + ], + "score": 1.0, + "content": "in Estimator", + "type": "text" + }, + { + "bbox": [ + 158, + 494, + 164, + 502 + ], + "score": 0.3, + "content": "^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "are set to the same values as those in Lemma 4.2. The number of iterations of Lanczos", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 170, + 518 + ], + "score": 1.0, + "content": "method is set to", + "type": "text" + }, + { + "bbox": [ + 170, + 503, + 234, + 517 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 503, + 280, + 518 + ], + "score": 1.0, + "content": ". To find an", + "type": "text" + }, + { + "bbox": [ + 281, + 505, + 301, + 517 + ], + "score": 0.58, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 503, + 378, + 518 + ], + "score": 1.0, + "content": "-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 378, + 505, + 401, + 515 + ], + "score": 0.82, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 503, + 506, + 518 + ], + "score": 1.0, + "content": ", the runtime complexity is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 514, + 300, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 294, + 530 + ], + "score": 0.89, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 514, + 300, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "To solve the QCQP more efficiently, here we develop a faster solver which is based on the AppxPCA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 544, + 507, + 561 + ], + "spans": [ + { + "bbox": [ + 104, + 544, + 507, + 561 + ], + "score": 1.0, + "content": "method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a). See details in Appendix E. By", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 292, + 572 + ], + "score": 1.0, + "content": "replacing Lanczos method with this solver in", + "type": "text" + }, + { + "bbox": [ + 292, + 559, + 323, + 570 + ], + "score": 0.89, + "content": "{ \\bf S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 557, + 505, + 572 + ], + "score": 1.0, + "content": ", we further improve the runtime complexity", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 568, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 117, + 585 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 570, + 316, + 583 + ], + "score": 0.77, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 568, + 438, + 585 + ], + "score": 1.0, + "content": "). We call this new algorithm", + "type": "text" + }, + { + "bbox": [ + 438, + 571, + 475, + 582 + ], + "score": 0.88, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 568, + 506, + 585 + ], + "score": 1.0, + "content": "whose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 580, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 472, + 596 + ], + "score": 1.0, + "content": "details can be found in Appendix E. Table 2 shows that for the runtime complexities, both", + "type": "text" + }, + { + "bbox": [ + 473, + 582, + 504, + 593 + ], + "score": 0.7, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 592, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 123, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 593, + 160, + 604 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 592, + 502, + 605 + ], + "score": 1.0, + "content": "outperform existing methods. See more comparison and discussion in Appendix E.4.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 108, + 620, + 200, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 201, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 201, + 635 + ], + "score": 1.0, + "content": "7 EXPERIMENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "score": 1.0, + "content": "Here we compare the proposed STR with several state-of-the-art (stochastic) cubic regularized algo-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "rithms and trust region approaches, including trust region (TR) algorithm (Conn et al., 2000), adaptive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "cubic regularization (ARC) (Cartis et al., 2011), sub-sampled cubic regularization (SCR) (Kohler &", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Lucchi, 2017a), stochastic variance-reduced cubic (SVRC) (Zhou et al., 2018c), Lite-SVRC (Zhou", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al., 2018b), and SRVRC (Zhou & Gu, 2019). For STR, we estimate the gradient as the way in case", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "(1). This is because such a method enjoys lower Hessian computational complexity over the way in", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "case (2) and for most problems, computing their Hessian matrices is much more time-consuming", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "than computing their gradients. For the subproblems in these compared methods, we use Lanczos", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 311, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 312, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 312, + 96 + ], + "score": 1.0, + "content": "MetaAlgorithm 7 Inexact Trust Region Method II", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "index", + "bbox": [ + 106, + 98, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 104, + 95, + 507, + 113 + ], + "spans": [ + { + "bbox": [ + 104, + 95, + 189, + 113 + ], + "score": 1.0, + "content": "Input: initial point", + "type": "text" + }, + { + "bbox": [ + 189, + 98, + 201, + 109 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 95, + 244, + 113 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 244, + 101, + 250, + 109 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 95, + 365, + 113 + ], + "score": 1.0, + "content": ", number of inner iterations", + "type": "text" + }, + { + "bbox": [ + 366, + 99, + 376, + 109 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 95, + 421, + 113 + ], + "score": 1.0, + "content": ", constants", + "type": "text" + }, + { + "bbox": [ + 422, + 99, + 473, + 111 + ], + "score": 0.59, + "content": "\\delta , \\zeta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 95, + 507, + 113 + ], + "score": 1.0, + "content": ", c1, c2,", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 110, + 404, + 122 + ], + "spans": [ + { + "bbox": [ + 122, + 110, + 230, + 122 + ], + "score": 1.0, + "content": "number of outer iterations", + "type": "text" + }, + { + "bbox": [ + 230, + 110, + 301, + 122 + ], + "score": 0.92, + "content": "T = \\Theta ( \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 110, + 354, + 122 + ], + "score": 1.0, + "content": ", sample size", + "type": "text" + }, + { + "bbox": [ + 355, + 112, + 361, + 120 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 110, + 404, + 122 + ], + "score": 1.0, + "content": "(optional)", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 120, + 197, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 138, + 132 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 121, + 162, + 131 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 120, + 173, + 132 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 121, + 182, + 131 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 120, + 197, + 132 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 130, + 290, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 122, + 143 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 138, + 131, + 286, + 144 + ], + "score": 0.58, + "content": "\\mathbf { x } ^ { t } \\gets \\mathrm { I N E X A C T T R } _ { \\mathrm { W E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 130, + 290, + 145 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 141, + 322, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 143, + 122, + 154 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 137, + 142, + 177, + 154 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 199, + 144, + 207, + 152 + ], + "score": 0.7, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 141, + 312, + 155 + ], + "score": 1.0, + "content": "high accuracy case (small", + "type": "text" + }, + { + "bbox": [ + 312, + 145, + 317, + 153 + ], + "score": 0.39, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 141, + 322, + 155 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 150, + 206, + 167 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 133, + 153, + 201, + 165 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 150, + 206, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 164, + 336, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 165, + 122, + 176 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 164, + 182, + 177 + ], + "score": 1.0, + "content": "Option II:", + "type": "text" + }, + { + "bbox": [ + 200, + 167, + 207, + 174 + ], + "score": 0.74, + "content": "\\diamond", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 164, + 325, + 177 + ], + "score": 1.0, + "content": "low accuracy case (moderate", + "type": "text" + }, + { + "bbox": [ + 325, + 166, + 331, + 174 + ], + "score": 0.53, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 164, + 336, + 177 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 174, + 370, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 176, + 122, + 188 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 132, + 174, + 158, + 189 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 158, + 178, + 164, + 186 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 174, + 245, + 189 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 246, + 176, + 255, + 186 + ], + "score": 0.8, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 174, + 286, + 189 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 286, + 175, + 365, + 187 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { t } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 174, + 370, + 189 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 186, + 444, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 186, + 122, + 200 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 137, + 187, + 177, + 200 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 187, + 188, + 198 + ], + "score": 0.86, + "content": "\\tilde { \\mathbf { v } } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 187, + 314, + 200 + ], + "score": 1.0, + "content": "by solving (10) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 314, + 187, + 338, + 199 + ], + "score": 0.9, + "content": "\\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 187, + 406, + 200 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 406, + 187, + 439, + 200 + ], + "score": 0.9, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 187, + 444, + 200 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 198, + 340, + 212 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 122, + 211 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 198, + 147, + 212 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 148, + 199, + 218, + 212 + ], + "score": 0.9, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\| \\leq c _ { 1 } \\epsilon _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 198, + 236, + 212 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 199, + 318, + 212 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 198, + 340, + 212 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 210, + 224, + 222 + ], + "spans": [ + { + "bbox": [ + 110, + 211, + 122, + 222 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 152, + 210, + 183, + 222 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 183, + 211, + 219, + 222 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { \\epsilon } : = \\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 210, + 224, + 222 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 220, + 167, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 122, + 233 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 136, + 220, + 167, + 232 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 232, + 157, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 157, + 245 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 252, + 293, + 267 + ], + "spans": [ + { + "bbox": [ + 108, + 252, + 222, + 267 + ], + "score": 1.0, + "content": "12: procedure INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 222, + 254, + 293, + 266 + ], + "score": 0.83, + "content": "\\mathbf { w } _ { \\mathrm { E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )", + "type": "inline_equation" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 265, + 233, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 122, + 277 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 138, + 265, + 153, + 276 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 266, + 178, + 276 + ], + "score": 0.89, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 265, + 190, + 276 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 191, + 266, + 218, + 276 + ], + "score": 0.83, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 265, + 233, + 276 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 275, + 413, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 122, + 289 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 152, + 275, + 192, + 289 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 192, + 276, + 204, + 288 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 275, + 222, + 289 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 222, + 276, + 237, + 287 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 275, + 381, + 289 + ], + "score": 1.0, + "content": "such that (9) holds with probability", + "type": "text" + }, + { + "bbox": [ + 382, + 275, + 413, + 289 + ], + "score": 0.92, + "content": "\\textstyle { 1 - \\frac { \\zeta } { 4 K } }", + "type": "inline_equation" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 282, + 471, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 122, + 302 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 150, + 282, + 192, + 307 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 192, + 288, + 205, + 300 + ], + "score": 0.86, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 282, + 325, + 307 + ], + "score": 1.0, + "content": "by solving (8) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 325, + 289, + 366, + 302 + ], + "score": 0.93, + "content": "\\epsilon ^ { 1 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 282, + 433, + 307 + ], + "score": 1.0, + "content": "4Kwith probability", + "type": "text" + }, + { + "bbox": [ + 433, + 288, + 465, + 303 + ], + "score": 0.91, + "content": "\\textstyle 1 - { \\frac { \\zeta } { 4 K } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 282, + 471, + 307 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 300, + 231, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 122, + 315 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 153, + 302, + 226, + 315 + ], + "score": 0.54, + "content": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation", + "image_path": "1a9fb50e5d64bf28bc67a52a2b2865fe8ae21e8dc6840cd24e63963c0e94a41b.jpg" + }, + { + "bbox": [ + 227, + 300, + 231, + 316 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 315, + 172, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 122, + 326 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 138, + 315, + 172, + 326 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 324, + 307, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 122, + 338 + ], + "score": 1.0, + "content": "18:", + "type": "text" + }, + { + "bbox": [ + 136, + 324, + 207, + 339 + ], + "score": 1.0, + "content": "Randomly select", + "type": "text" + }, + { + "bbox": [ + 208, + 325, + 214, + 335 + ], + "score": 0.79, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 324, + 237, + 339 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 238, + 325, + 302, + 338 + ], + "score": 0.89, + "content": "\\{ 0 , \\ldots , K - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 324, + 307, + 339 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 337, + 195, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 122, + 351 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 136, + 337, + 195, + 350 + ], + "score": 1.0, + "content": "return xk¯+1;", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 349, + 188, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 188, + 362 + ], + "score": 1.0, + "content": "20: end procedure", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 95, + 507, + 362 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 372, + 191, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 194, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 194, + 388 + ], + "score": 1.0, + "content": "Algorithm 8 STRfree", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "index", + "bbox": [ + 109, + 387, + 424, + 455 + ], + "lines": [ + { + "bbox": [ + 111, + 387, + 286, + 399 + ], + "spans": [ + { + "bbox": [ + 111, + 387, + 286, + 399 + ], + "score": 1.0, + "content": "1: In the same setting as MetaAlgorithm 7,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 397, + 325, + 411 + ], + "spans": [ + { + "bbox": [ + 111, + 398, + 121, + 410 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 132, + 397, + 247, + 411 + ], + "score": 1.0, + "content": "construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 247, + 398, + 259, + 409 + ], + "score": 0.86, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 397, + 325, + 411 + ], + "score": 1.0, + "content": "by Estimator 4;", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 406, + 276, + 422 + ], + "spans": [ + { + "bbox": [ + 110, + 410, + 121, + 421 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 406, + 246, + 422 + ], + "score": 1.0, + "content": "construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 246, + 409, + 261, + 419 + ], + "score": 0.86, + "content": "\\bar { \\mathbf { H } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 406, + 276, + 422 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 418, + 257, + 433 + ], + "spans": [ + { + "bbox": [ + 111, + 420, + 121, + 432 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 142, + 418, + 182, + 433 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 182, + 419, + 252, + 432 + ], + "score": 0.92, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 418, + 257, + 433 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 429, + 424, + 444 + ], + "spans": [ + { + "bbox": [ + 110, + 431, + 121, + 442 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 429, + 209, + 444 + ], + "score": 1.0, + "content": "Option II: Draw", + "type": "text" + }, + { + "bbox": [ + 210, + 434, + 216, + 441 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 429, + 298, + 444 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 298, + 431, + 308, + 441 + ], + "score": 0.82, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 429, + 338, + 444 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 338, + 430, + 420, + 443 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 429, + 424, + 444 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 442, + 336, + 454 + ], + "spans": [ + { + "bbox": [ + 111, + 443, + 122, + 453 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 442, + 336, + 454 + ], + "score": 1.0, + "content": "use Lanczos method to solve QCQP subproblems.", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + } + ], + "index": 26.5, + "bbox_fs": [ + 110, + 387, + 424, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 506, + 530 + ], + "lines": [ + { + "bbox": [ + 104, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 463, + 382, + 478 + ], + "score": 1.0, + "content": "Theorem 6.1. Consider Algorithm 8 for solving problem (1). Let", + "type": "text" + }, + { + "bbox": [ + 382, + 465, + 419, + 477 + ], + "score": 0.87, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 463, + 424, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 424, + 463, + 476, + 478 + ], + "score": 0.82, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 463, + 481, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 481, + 464, + 505, + 477 + ], + "score": 0.76, + "content": "K =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 474, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 159, + 492 + ], + "score": 0.88, + "content": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 478, + 163, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 479, + 227, + 493 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } ( 2 / \\delta ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 478, + 230, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 480, + 269, + 492 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 478, + 272, + 494 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 480, + 311, + 492 + ], + "score": 0.84, + "content": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 478, + 332, + 494 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 347, + 474, + 507, + 498 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). The hyper-parameters", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 157, + 504 + ], + "score": 1.0, + "content": "in Estimator", + "type": "text" + }, + { + "bbox": [ + 158, + 494, + 164, + 502 + ], + "score": 0.3, + "content": "^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "are set to the same values as those in Lemma 4.2. The number of iterations of Lanczos", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 170, + 518 + ], + "score": 1.0, + "content": "method is set to", + "type": "text" + }, + { + "bbox": [ + 170, + 503, + 234, + 517 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 503, + 280, + 518 + ], + "score": 1.0, + "content": ". To find an", + "type": "text" + }, + { + "bbox": [ + 281, + 505, + 301, + 517 + ], + "score": 0.58, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 503, + 378, + 518 + ], + "score": 1.0, + "content": "-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 378, + 505, + 401, + 515 + ], + "score": 0.82, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 503, + 506, + 518 + ], + "score": 1.0, + "content": ", the runtime complexity is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 514, + 300, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 294, + 530 + ], + "score": 0.89, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 514, + 300, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 463, + 507, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "To solve the QCQP more efficiently, here we develop a faster solver which is based on the AppxPCA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 544, + 507, + 561 + ], + "spans": [ + { + "bbox": [ + 104, + 544, + 507, + 561 + ], + "score": 1.0, + "content": "method (Allen-Zhu & Li, 2016) and KatyushaXW (Allen-Zhu, 2018a). See details in Appendix E. By", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 292, + 572 + ], + "score": 1.0, + "content": "replacing Lanczos method with this solver in", + "type": "text" + }, + { + "bbox": [ + 292, + 559, + 323, + 570 + ], + "score": 0.89, + "content": "{ \\bf S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 557, + 505, + 572 + ], + "score": 1.0, + "content": ", we further improve the runtime complexity", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 568, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 117, + 585 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 570, + 316, + 583 + ], + "score": 0.77, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 568, + 438, + 585 + ], + "score": 1.0, + "content": "). We call this new algorithm", + "type": "text" + }, + { + "bbox": [ + 438, + 571, + 475, + 582 + ], + "score": 0.88, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 568, + 506, + 585 + ], + "score": 1.0, + "content": "whose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 580, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 472, + 596 + ], + "score": 1.0, + "content": "details can be found in Appendix E. Table 2 shows that for the runtime complexities, both", + "type": "text" + }, + { + "bbox": [ + 473, + 582, + 504, + 593 + ], + "score": 0.7, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 592, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 123, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 593, + 160, + 604 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 592, + 502, + 605 + ], + "score": 1.0, + "content": "outperform existing methods. See more comparison and discussion in Appendix E.4.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 536, + 507, + 605 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 620, + 200, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 201, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 201, + 635 + ], + "score": 1.0, + "content": "7 EXPERIMENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "score": 1.0, + "content": "Here we compare the proposed STR with several state-of-the-art (stochastic) cubic regularized algo-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "rithms and trust region approaches, including trust region (TR) algorithm (Conn et al., 2000), adaptive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "cubic regularization (ARC) (Cartis et al., 2011), sub-sampled cubic regularization (SCR) (Kohler &", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Lucchi, 2017a), stochastic variance-reduced cubic (SVRC) (Zhou et al., 2018c), Lite-SVRC (Zhou", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al., 2018b), and SRVRC (Zhou & Gu, 2019). For STR, we estimate the gradient as the way in case", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "(1). This is because such a method enjoys lower Hessian computational complexity over the way in", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "case (2) and for most problems, computing their Hessian matrices is much more time-consuming", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "than computing their gradients. For the subproblems in these compared methods, we use Lanczos", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "method (Gould et al., 1999; Kohler & Lucchi, 2017a) to solve the subproblem approximately in a", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Hessian-related Krylov subspace. We run simulations on seven datasets from LibSVM (a9a, ijcnn,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "codrna, phishing, w8a, epsilon and mnist). We run our algorithm for 40 epochs and use the output", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 186, + 497 + ], + "score": 1.0, + "content": "as the optimal value", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 187, + 485, + 198, + 496 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 199, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "for sub-optimality estimation. Note the output has very small gradient already", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "verified by Figure 2 and 4 in appendix. For all the considered algorithms, we set their initializations", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "as zeros and tune their hyper-parameters optimally. For more experimental settings, e.g. details of", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 518, + 417, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 417, + 530 + ], + "score": 1.0, + "content": "testing datasets and algorithm parameter settings, please refer to Appendix F.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 643, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 96, + 483, + 203 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 129, + 80, + 480, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 79, + 481, + 93 + ], + "spans": [ + { + "bbox": [ + 129, + 79, + 266, + 93 + ], + "score": 1.0, + "content": "Table 2: Runtime complexities of", + "type": "text" + }, + { + "bbox": [ + 266, + 81, + 297, + 92 + ], + "score": 0.85, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 79, + 300, + 93 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 301, + 81, + 337, + 92 + ], + "score": 0.87, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 79, + 481, + 93 + ], + "score": 1.0, + "content": ", and other state-of-the-art methods.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 128, + 96, + 483, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 96, + 483, + 203 + ], + "spans": [ + { + "bbox": [ + 128, + 96, + 483, + 203 + ], + "score": 0.975, + "html": "
AlgorithmRuntime
Hessian-free Cubic (Carmon & Duchi, 2016)Fast-Cubic (Agarwal et al., 2017)Stochastic Cubic (Tripuraneni et al., 2018)SRVRCfree (Zhou & Gu, 2019)()0dn dn0.75+151.756d *35O(min{ d})*
STRfree (this paper)STRfree+ (this paper)O(min{dn d dn0.5e1.75,2.752O(min{ dn0.75dn d dn0.51.5+e1.75,2.5+20)
", + "type": "table", + "image_path": "5fb60b49e8c69b788f6bf743f2b22c706151d6ad4829c3a871b14cfa1cc11853.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 128, + 96, + 483, + 131.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 131.66666666666666, + 483, + 167.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 128, + 167.33333333333331, + 483, + 202.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 118, + 205, + 432, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 203, + 433, + 218 + ], + "spans": [ + { + "bbox": [ + 120, + 203, + 313, + 218 + ], + "score": 1.0, + "content": "These entries rely on an additional assumption:", + "type": "text" + }, + { + "bbox": [ + 313, + 205, + 415, + 217 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 203, + 433, + 218 + ], + "score": 1.0, + "content": "a.s.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 109, + 225, + 503, + 429 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 225, + 503, + 429 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 225, + 503, + 429 + ], + "spans": [ + { + "bbox": [ + 109, + 225, + 503, + 429 + ], + "score": 0.966, + "type": "image", + "image_path": "8013d004ab6213afb97a494ee9b3163ce86d5b5c7e6f77d3cb61238a0eee4a13.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 109, + 225, + 503, + 293.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 293.0, + 503, + 361.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 361.0, + 503, + 429.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 432, + 459, + 444 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 431, + 461, + 446 + ], + "spans": [ + { + "bbox": [ + 150, + 431, + 461, + 446 + ], + "score": 1.0, + "content": "Figure 1: Comparison on the logistic regression with non-convex regularizer.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 506, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "method (Gould et al., 1999; Kohler & Lucchi, 2017a) to solve the subproblem approximately in a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Hessian-related Krylov subspace. We run simulations on seven datasets from LibSVM (a9a, ijcnn,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "codrna, phishing, w8a, epsilon and mnist). We run our algorithm for 40 epochs and use the output", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 186, + 497 + ], + "score": 1.0, + "content": "as the optimal value", + "type": "text" + }, + { + "bbox": [ + 187, + 485, + 198, + 496 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "for sub-optimality estimation. Note the output has very small gradient already", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "verified by Figure 2 and 4 in appendix. For all the considered algorithms, we set their initializations", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "as zeros and tune their hyper-parameters optimally. For more experimental settings, e.g. details of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 518, + 417, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 417, + 530 + ], + "score": 1.0, + "content": "testing datasets and algorithm parameter settings, please refer to Appendix F.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 506, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Two evaluation non-convex problems. Following (Kohler & Lucchi, 2017a; Zhou et al., 2018c),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "we evaluate all considered algorithms on two learning tasks: the logistic regression with non-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 555, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 555, + 345, + 569 + ], + "score": 1.0, + "content": "convex regularizer and the nonlinear least square. Given", + "type": "text" + }, + { + "bbox": [ + 346, + 558, + 353, + 567 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 555, + 404, + 569 + ], + "score": 1.0, + "content": "data points", + "type": "text" + }, + { + "bbox": [ + 404, + 556, + 435, + 568 + ], + "score": 0.93, + "content": "( { \\pmb x } _ { i } , y _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 555, + 465, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 465, + 556, + 504, + 567 + ], + "score": 0.91, + "content": "\\pmb { x } _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 216, + 580 + ], + "score": 1.0, + "content": "is the sample vector and", + "type": "text" + }, + { + "bbox": [ + 216, + 567, + 277, + 579 + ], + "score": 0.93, + "content": "y _ { i } ~ \\in ~ \\{ - 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "is the label, logistic regression with non-convex reg-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "ularizer aims at distinguishing these two kinds of samples by solving the following problem", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 584, + 509, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 322, + 602 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\log ( 1 + \\mathrm { { e x p } } ( - y _ { i } \\pmb { w } ^ { T } \\pmb { x } _ { i } ) ) + \\lambda R ( \\pmb { w } ; \\alpha ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 584, + 459, + 608 + ], + "score": 1.0, + "content": ", where the non-convex regularizer", + "type": "text" + }, + { + "bbox": [ + 459, + 589, + 495, + 601 + ], + "score": 0.93, + "content": "R ( { \\boldsymbol { w } } ; \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 584, + 509, + 608 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 596, + 510, + 621 + ], + "spans": [ + { + "bbox": [ + 102, + 596, + 147, + 621 + ], + "score": 1.0, + "content": "defined as", + "type": "text" + }, + { + "bbox": [ + 148, + 602, + 291, + 616 + ], + "score": 0.9, + "content": "\\begin{array} { r } { R ( \\pmb { w } ; \\alpha ) = \\sum _ { i = 1 } ^ { d } \\alpha \\pmb { w } _ { i } ^ { 2 } / ( 1 + \\alpha \\pmb { w } _ { i } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 596, + 510, + 621 + ], + "score": 1.0, + "content": ". The nonlinear least square problem fits the nonlinear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 612, + 511, + 635 + ], + "spans": [ + { + "bbox": [ + 100, + 612, + 184, + 635 + ], + "score": 1.0, + "content": "data by minimizing", + "type": "text" + }, + { + "bbox": [ + 184, + 615, + 373, + 631 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { 2 n } \\sum _ { i = 1 } ^ { n } \\left[ y _ { i } - \\phi ( \\pmb { w } ^ { T } \\pmb { x } _ { i } ) \\right] ^ { 2 } + \\lambda R ( \\pmb { w } , \\alpha ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 612, + 511, + 635 + ], + "score": 1.0, + "content": ". For these two kinds of problems,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 628, + 379, + 644 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 195, + 644 + ], + "score": 1.0, + "content": "we set the parameters", + "type": "text" + }, + { + "bbox": [ + 195, + 631, + 235, + 641 + ], + "score": 0.9, + "content": "\\lambda = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 628, + 254, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 631, + 285, + 641 + ], + "score": 0.86, + "content": "\\alpha = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 628, + 379, + 644 + ], + "score": 1.0, + "content": "for all testing datasets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "Comparison of Hessian based algorithms. Figure 1 summarizes testing results on the non-convex", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "logistic regression problem. For each dataset, we report the function value gap v.s. the overall", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "algorithm running time which can reflect the overall computational complexity of an algorithm, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "also show the function value gap v.s. Hessian sample complexity which reveals the complexity of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "Hessian computation. From Figure 1, one can observe that our proposed STR algorithm runs faster", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 703, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 505, + 715 + ], + "score": 1.0, + "content": "than the compared algorithms in terms of the algorithm running time, showing the overall superiority", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 712, + 505, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 505, + 726 + ], + "score": 1.0, + "content": "of STR. Furthermore, STR also reveals much sharper convergence curves in terms of the Hessian", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 96, + 483, + 203 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 129, + 80, + 480, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 79, + 481, + 93 + ], + "spans": [ + { + "bbox": [ + 129, + 79, + 266, + 93 + ], + "score": 1.0, + "content": "Table 2: Runtime complexities of", + "type": "text" + }, + { + "bbox": [ + 266, + 81, + 297, + 92 + ], + "score": 0.85, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 79, + 300, + 93 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 301, + 81, + 337, + 92 + ], + "score": 0.87, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 79, + 481, + 93 + ], + "score": 1.0, + "content": ", and other state-of-the-art methods.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 128, + 96, + 483, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 96, + 483, + 203 + ], + "spans": [ + { + "bbox": [ + 128, + 96, + 483, + 203 + ], + "score": 0.975, + "html": "
AlgorithmRuntime
Hessian-free Cubic (Carmon & Duchi, 2016)Fast-Cubic (Agarwal et al., 2017)Stochastic Cubic (Tripuraneni et al., 2018)SRVRCfree (Zhou & Gu, 2019)()0dn dn0.75+151.756d *35O(min{ d})*
STRfree (this paper)STRfree+ (this paper)O(min{dn d dn0.5e1.75,2.752O(min{ dn0.75dn d dn0.51.5+e1.75,2.5+20)
", + "type": "table", + "image_path": "5fb60b49e8c69b788f6bf743f2b22c706151d6ad4829c3a871b14cfa1cc11853.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 128, + 96, + 483, + 131.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 131.66666666666666, + 483, + 167.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 128, + 167.33333333333331, + 483, + 202.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 118, + 205, + 432, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 203, + 433, + 218 + ], + "spans": [ + { + "bbox": [ + 120, + 203, + 313, + 218 + ], + "score": 1.0, + "content": "These entries rely on an additional assumption:", + "type": "text" + }, + { + "bbox": [ + 313, + 205, + 415, + 217 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 203, + 433, + 218 + ], + "score": 1.0, + "content": "a.s.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 109, + 225, + 503, + 429 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 225, + 503, + 429 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 225, + 503, + 429 + ], + "spans": [ + { + "bbox": [ + 109, + 225, + 503, + 429 + ], + "score": 0.966, + "type": "image", + "image_path": "8013d004ab6213afb97a494ee9b3163ce86d5b5c7e6f77d3cb61238a0eee4a13.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 109, + 225, + 503, + 293.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 293.0, + 503, + 361.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 361.0, + 503, + 429.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 432, + 459, + 444 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 431, + 461, + 446 + ], + "spans": [ + { + "bbox": [ + 150, + 431, + 461, + 446 + ], + "score": 1.0, + "content": "Figure 1: Comparison on the logistic regression with non-convex regularizer.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 506, + 529 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 451, + 506, + 530 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 506, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Two evaluation non-convex problems. Following (Kohler & Lucchi, 2017a; Zhou et al., 2018c),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "we evaluate all considered algorithms on two learning tasks: the logistic regression with non-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 555, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 555, + 345, + 569 + ], + "score": 1.0, + "content": "convex regularizer and the nonlinear least square. Given", + "type": "text" + }, + { + "bbox": [ + 346, + 558, + 353, + 567 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 555, + 404, + 569 + ], + "score": 1.0, + "content": "data points", + "type": "text" + }, + { + "bbox": [ + 404, + 556, + 435, + 568 + ], + "score": 0.93, + "content": "( { \\pmb x } _ { i } , y _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 555, + 465, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 465, + 556, + 504, + 567 + ], + "score": 0.91, + "content": "\\pmb { x } _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 216, + 580 + ], + "score": 1.0, + "content": "is the sample vector and", + "type": "text" + }, + { + "bbox": [ + 216, + 567, + 277, + 579 + ], + "score": 0.93, + "content": "y _ { i } ~ \\in ~ \\{ - 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "is the label, logistic regression with non-convex reg-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "ularizer aims at distinguishing these two kinds of samples by solving the following problem", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 584, + 509, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 322, + 602 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\log ( 1 + \\mathrm { { e x p } } ( - y _ { i } \\pmb { w } ^ { T } \\pmb { x } _ { i } ) ) + \\lambda R ( \\pmb { w } ; \\alpha ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 584, + 459, + 608 + ], + "score": 1.0, + "content": ", where the non-convex regularizer", + "type": "text" + }, + { + "bbox": [ + 459, + 589, + 495, + 601 + ], + "score": 0.93, + "content": "R ( { \\boldsymbol { w } } ; \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 584, + 509, + 608 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 596, + 510, + 621 + ], + "spans": [ + { + "bbox": [ + 102, + 596, + 147, + 621 + ], + "score": 1.0, + "content": "defined as", + "type": "text" + }, + { + "bbox": [ + 148, + 602, + 291, + 616 + ], + "score": 0.9, + "content": "\\begin{array} { r } { R ( \\pmb { w } ; \\alpha ) = \\sum _ { i = 1 } ^ { d } \\alpha \\pmb { w } _ { i } ^ { 2 } / ( 1 + \\alpha \\pmb { w } _ { i } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 596, + 510, + 621 + ], + "score": 1.0, + "content": ". The nonlinear least square problem fits the nonlinear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 612, + 511, + 635 + ], + "spans": [ + { + "bbox": [ + 100, + 612, + 184, + 635 + ], + "score": 1.0, + "content": "data by minimizing", + "type": "text" + }, + { + "bbox": [ + 184, + 615, + 373, + 631 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { 2 n } \\sum _ { i = 1 } ^ { n } \\left[ y _ { i } - \\phi ( \\pmb { w } ^ { T } \\pmb { x } _ { i } ) \\right] ^ { 2 } + \\lambda R ( \\pmb { w } , \\alpha ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 612, + 511, + 635 + ], + "score": 1.0, + "content": ". For these two kinds of problems,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 628, + 379, + 644 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 195, + 644 + ], + "score": 1.0, + "content": "we set the parameters", + "type": "text" + }, + { + "bbox": [ + 195, + 631, + 235, + 641 + ], + "score": 0.9, + "content": "\\lambda = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 628, + 254, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 631, + 285, + 641 + ], + "score": 0.86, + "content": "\\alpha = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 628, + 379, + 644 + ], + "score": 1.0, + "content": "for all testing datasets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20, + "bbox_fs": [ + 100, + 533, + 511, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "Comparison of Hessian based algorithms. Figure 1 summarizes testing results on the non-convex", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "logistic regression problem. For each dataset, we report the function value gap v.s. the overall", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "algorithm running time which can reflect the overall computational complexity of an algorithm, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "also show the function value gap v.s. Hessian sample complexity which reveals the complexity of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "Hessian computation. From Figure 1, one can observe that our proposed STR algorithm runs faster", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 703, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 505, + 715 + ], + "score": 1.0, + "content": "than the compared algorithms in terms of the algorithm running time, showing the overall superiority", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 712, + 505, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 505, + 726 + ], + "score": 1.0, + "content": "of STR. Furthermore, STR also reveals much sharper convergence curves in terms of the Hessian", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 439, + 322 + ], + "score": 1.0, + "content": "sample complexity which is consistent with our theory. This is because to achieve an", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 439, + 312, + 444, + 319 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 445, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "-accuracy local", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 319, + 507, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 319, + 370, + 335 + ], + "score": 1.0, + "content": "minimum, the Hessian sample complexity of the proposed STR is", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 370, + 320, + 423, + 334 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 423, + 319, + 507, + 335 + ], + "score": 1.0, + "content": "and is superior over", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "the complexity of the compared methods (see the comparison in Sec. 4.2). Indeed, this also explains", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "why our algorithm is also faster in terms of algorithm running time, since for most optimization", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "problems, Hessian matrix is much more computationally expensive than the gradient and thus more", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "efficient Hessian sample complexity means faster overall convergence speed. Note, as all compared", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 376, + 493, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 445, + 389 + ], + "score": 1.0, + "content": "methods need to compute the Hessian and gradient, their memory complexity are all", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 446, + 376, + 489, + 388 + ], + "score": 0.93, + "content": "\\mathcal { O } ( d ^ { 2 } + \\dot { d } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 489, + 376, + 493, + 389 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 646, + 506, + 726 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 83, + 503, + 285 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 83, + 503, + 285 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 83, + 503, + 285 + ], + "spans": [ + { + "bbox": [ + 109, + 83, + 503, + 285 + ], + "score": 0.977, + "type": "image", + "image_path": "1f795eb6ac39b80b39a1210d8ceb789239034df7ee57a3eb2a229984d19c4413.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 83, + 503, + 150.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 150.33333333333331, + 503, + 217.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 217.66666666666663, + 503, + 284.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 289, + 427, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 287, + 429, + 305 + ], + "spans": [ + { + "bbox": [ + 181, + 287, + 429, + 305 + ], + "score": 1.0, + "content": "Figure 2: Comparison on the nonlinear least square problem.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 439, + 322 + ], + "score": 1.0, + "content": "sample complexity which is consistent with our theory. This is because to achieve an", + "type": "text" + }, + { + "bbox": [ + 439, + 312, + 444, + 319 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "-accuracy local", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 319, + 507, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 319, + 370, + 335 + ], + "score": 1.0, + "content": "minimum, the Hessian sample complexity of the proposed STR is", + "type": "text" + }, + { + "bbox": [ + 370, + 320, + 423, + 334 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 5 } / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 319, + 507, + 335 + ], + "score": 1.0, + "content": "and is superior over", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "the complexity of the compared methods (see the comparison in Sec. 4.2). Indeed, this also explains", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "why our algorithm is also faster in terms of algorithm running time, since for most optimization", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "problems, Hessian matrix is much more computationally expensive than the gradient and thus more", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "efficient Hessian sample complexity means faster overall convergence speed. Note, as all compared", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 376, + 493, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 445, + 389 + ], + "score": 1.0, + "content": "methods need to compute the Hessian and gradient, their memory complexity are all", + "type": "text" + }, + { + "bbox": [ + 446, + 376, + 489, + 388 + ], + "score": 0.93, + "content": "\\mathcal { O } ( d ^ { 2 } + \\dot { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 376, + 493, + 389 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 506, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Figure 2 displays results of the compared algorithms on the nonlinear least square problem. STR", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "shows very similar behaviors as those in Figure 1. Specifically, STR achieves fastest convergence rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "in terms of both algorithm running time and Hessian sample complexity. On the codrna dataset we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "further plot the gradient norm versus running time and Hessian sample complexity. One can obverse", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "that the gradient in STR vanishes significantly faster than other algorithms which means that STR can", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "find the stationary point with high efficiency. See Figure 4 in Appendix F.2 for more experimental", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "score": 1.0, + "content": "results on gradient norm comparison. All these results confirm the superiority of the proposed STR.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 476, + 297, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 298, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 298, + 488 + ], + "score": 1.0, + "content": "Comparison of Hessian-free algorithms.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 486, + 298, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 298, + 499 + ], + "score": 1.0, + "content": "Here we compare our proposed Hessian-free", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 497, + 298, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 170, + 510 + ], + "score": 1.0, + "content": "STR, namely", + "type": "text" + }, + { + "bbox": [ + 171, + 498, + 201, + 509 + ], + "score": 0.85, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 497, + 298, + 510 + ], + "score": 1.0, + "content": ", with other state-of-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 508, + 297, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 297, + 520 + ], + "score": 1.0, + "content": "the-art Hessian-free algorithms on the two", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 297, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 297, + 532 + ], + "score": 1.0, + "content": "high-dimensional datasets, including epsilon", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 531, + 297, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 297, + 542 + ], + "score": 1.0, + "content": "and mnist (see details in Appendix F). Here", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 541, + 298, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 194, + 554 + ], + "score": 1.0, + "content": "we do not compare", + "type": "text" + }, + { + "bbox": [ + 194, + 542, + 231, + 553 + ], + "score": 0.88, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 541, + 298, + 554 + ], + "score": 1.0, + "content": ", as it is based", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 298, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 298, + 565 + ], + "score": 1.0, + "content": "on AppxPCA method (Allen-Zhu & Li, 2016)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 562, + 298, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 298, + 576 + ], + "score": 1.0, + "content": "and KatyushaXW (Allen-Zhu, 2018a) which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 575, + 297, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 297, + 586 + ], + "score": 1.0, + "content": "require tuning a lot of hyper-parameters. From", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 585, + 297, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 297, + 597 + ], + "score": 1.0, + "content": "the results in Figure 3, one can observe that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 595, + 296, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 264, + 610 + ], + "score": 1.0, + "content": "compared with other algorithms, our", + "type": "text" + }, + { + "bbox": [ + 265, + 596, + 296, + 608 + ], + "score": 0.82, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 23.5 + }, + { + "type": "image", + "bbox": [ + 308, + 478, + 506, + 576 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 308, + 478, + 506, + 576 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 308, + 478, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 308, + 478, + 506, + 576 + ], + "score": 0.942, + "type": "image", + "image_path": "6ae2d6fe5712438b857d2a33bd755443d66d2c7c1e1911c6e91971831b384a67.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 308, + 478, + 506, + 492.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 308, + 492.0, + 506, + 506.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 308, + 506.0, + 506, + 520.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 308, + 520.0, + 506, + 534.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 308, + 534.0, + 506, + 548.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 308, + 548.0, + 506, + 562.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 308, + 562.0, + 506, + 576.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 581, + 504, + 604 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 304, + 581, + 504, + 593 + ], + "score": 1.0, + "content": "Figure 3: Comparison of Hessian-free algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 304, + 592, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 304, + 592, + 502, + 605 + ], + "score": 1.0, + "content": "on non-convex logistic and soft-max regressions.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 35.25 + }, + { + "type": "text", + "bbox": [ + 108, + 608, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "achieves the best convergence speed which demonstrates its high efficiency in realistic applications.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 230, + 631 + ], + "score": 1.0, + "content": "Besides, one also can find that", + "type": "text" + }, + { + "bbox": [ + 230, + 619, + 261, + 630 + ], + "score": 0.87, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "is much faster than Hessian based STR since computing full", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 629, + 492, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 492, + 641 + ], + "score": 1.0, + "content": "Hessian is actually much computationally expensive than the computation of the Hessian vector.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 195, + 675 + ], + "lines": [ + { + "bbox": [ + 104, + 660, + 197, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 660, + 197, + 678 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "We proposed two stochastic trust region variants. Under two settings (whether stochastic first- and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "second-order oracle complexities are treated equally), the proposed methods achieve state-of-the-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "score": 1.0, + "content": "art oracle complexities. We also propose Hessian-free variants with lowest runtime complexity.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "Experimental results testify our theoretical implications and the efficiency of the proposed algorithms.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 83, + 503, + 285 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 83, + 503, + 285 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 83, + 503, + 285 + ], + "spans": [ + { + "bbox": [ + 109, + 83, + 503, + 285 + ], + "score": 0.977, + "type": "image", + "image_path": "1f795eb6ac39b80b39a1210d8ceb789239034df7ee57a3eb2a229984d19c4413.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 83, + 503, + 150.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 150.33333333333331, + 503, + 217.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 217.66666666666663, + 503, + 284.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 289, + 427, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 287, + 429, + 305 + ], + "spans": [ + { + "bbox": [ + 181, + 287, + 429, + 305 + ], + "score": 1.0, + "content": "Figure 2: Comparison on the nonlinear least square problem.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 505, + 388 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 104, + 309, + 507, + 389 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 506, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Figure 2 displays results of the compared algorithms on the nonlinear least square problem. STR", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "shows very similar behaviors as those in Figure 1. Specifically, STR achieves fastest convergence rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "in terms of both algorithm running time and Hessian sample complexity. On the codrna dataset we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "further plot the gradient norm versus running time and Hessian sample complexity. One can obverse", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "that the gradient in STR vanishes significantly faster than other algorithms which means that STR can", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "find the stationary point with high efficiency. See Figure 4 in Appendix F.2 for more experimental", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "score": 1.0, + "content": "results on gradient norm comparison. All these results confirm the superiority of the proposed STR.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 393, + 506, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 476, + 297, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 298, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 298, + 488 + ], + "score": 1.0, + "content": "Comparison of Hessian-free algorithms.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 486, + 298, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 298, + 499 + ], + "score": 1.0, + "content": "Here we compare our proposed Hessian-free", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 497, + 298, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 170, + 510 + ], + "score": 1.0, + "content": "STR, namely", + "type": "text" + }, + { + "bbox": [ + 171, + 498, + 201, + 509 + ], + "score": 0.85, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 497, + 298, + 510 + ], + "score": 1.0, + "content": ", with other state-of-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 508, + 297, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 297, + 520 + ], + "score": 1.0, + "content": "the-art Hessian-free algorithms on the two", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 297, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 297, + 532 + ], + "score": 1.0, + "content": "high-dimensional datasets, including epsilon", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 531, + 297, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 297, + 542 + ], + "score": 1.0, + "content": "and mnist (see details in Appendix F). Here", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 541, + 298, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 194, + 554 + ], + "score": 1.0, + "content": "we do not compare", + "type": "text" + }, + { + "bbox": [ + 194, + 542, + 231, + 553 + ], + "score": 0.88, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 541, + 298, + 554 + ], + "score": 1.0, + "content": ", as it is based", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 298, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 298, + 565 + ], + "score": 1.0, + "content": "on AppxPCA method (Allen-Zhu & Li, 2016)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 562, + 298, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 298, + 576 + ], + "score": 1.0, + "content": "and KatyushaXW (Allen-Zhu, 2018a) which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 575, + 297, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 297, + 586 + ], + "score": 1.0, + "content": "require tuning a lot of hyper-parameters. From", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 585, + 297, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 297, + 597 + ], + "score": 1.0, + "content": "the results in Figure 3, one can observe that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 595, + 296, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 264, + 610 + ], + "score": 1.0, + "content": "compared with other algorithms, our", + "type": "text" + }, + { + "bbox": [ + 265, + 596, + 296, + 608 + ], + "score": 0.82, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 475, + 298, + 610 + ] + }, + { + "type": "image", + "bbox": [ + 308, + 478, + 506, + 576 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 308, + 478, + 506, + 576 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 308, + 478, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 308, + 478, + 506, + 576 + ], + "score": 0.942, + "type": "image", + "image_path": "6ae2d6fe5712438b857d2a33bd755443d66d2c7c1e1911c6e91971831b384a67.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 308, + 478, + 506, + 492.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 308, + 492.0, + 506, + 506.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 308, + 506.0, + 506, + 520.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 308, + 520.0, + 506, + 534.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 308, + 534.0, + 506, + 548.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 308, + 548.0, + 506, + 562.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 308, + 562.0, + 506, + 576.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 581, + 504, + 604 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 304, + 581, + 504, + 593 + ], + "score": 1.0, + "content": "Figure 3: Comparison of Hessian-free algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 304, + 592, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 304, + 592, + 502, + 605 + ], + "score": 1.0, + "content": "on non-convex logistic and soft-max regressions.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 35.25 + }, + { + "type": "text", + "bbox": [ + 108, + 608, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "achieves the best convergence speed which demonstrates its high efficiency in realistic applications.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 230, + 631 + ], + "score": 1.0, + "content": "Besides, one also can find that", + "type": "text" + }, + { + "bbox": [ + 230, + 619, + 261, + 630 + ], + "score": 0.87, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "is much faster than Hessian based STR since computing full", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 629, + 492, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 492, + 641 + ], + "score": 1.0, + "content": "Hessian is actually much computationally expensive than the computation of the Hessian vector.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 607, + 506, + 641 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 195, + 675 + ], + "lines": [ + { + "bbox": [ + 104, + 660, + 197, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 660, + 197, + 678 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "We proposed two stochastic trust region variants. Under two settings (whether stochastic first- and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "second-order oracle complexities are treated equally), the proposed methods achieve state-of-the-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "score": 1.0, + "content": "art oracle complexities. We also propose Hessian-free variants with lowest runtime complexity.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "Experimental results testify our theoretical implications and the efficiency of the proposed algorithms.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 688, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 100, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Naman Agarwal, Zeyuan Allen-Zhu, Brian Bullins, Elad Hazan, and Tengyu Ma. Finding approximate", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "local minima faster than gradient descent. In Proceedings of the 49th Annual ACM SIGACT", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 418, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 418, + 135 + ], + "score": 1.0, + "content": "Symposium on Theory of Computing, pp. 1195–1199. ACM, 2017. 7, 9, 19", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu. Katyusha x: Practical momentum method for stochastic sum-of-nonconvex", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 393, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 393, + 165 + ], + "score": 1.0, + "content": "optimization. arXiv preprint arXiv:1802.03866, 2018a. 8, 10, 19, 20", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 105, + 172, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu. Natasha 2: Faster non-convex optimization than sgd. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 353, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 353, + 196 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2675–2686, 2018b. 7", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 104, + 203, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 217 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu and Yuanzhi Li. Lazysvd: even faster svd decomposition yet without agonizing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 214, + 483, + 227 + ], + "spans": [ + { + "bbox": [ + 114, + 214, + 483, + 227 + ], + "score": 1.0, + "content": "pain. In Advances in Neural Information Processing Systems, pp. 974–982, 2016. 8, 10, 19", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu and Yuanzhi Li. Neon2: Finding local minima via first-order oracles. In Advances", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 244, + 404, + 257 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 404, + 257 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pp. 3716–3726, 2018. 7, 19", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 279 + ], + "score": 1.0, + "content": "Yair Carmon and John C Duchi. Gradient descent efficiently finds the cubic-regularized non-convex", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 277, + 341, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 341, + 287 + ], + "score": 1.0, + "content": "newton step. arXiv preprint arXiv:1612.00547, 2016. 9", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 506, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 309 + ], + "score": 1.0, + "content": "Yair Carmon and John C Duchi. Analysis of krylov subspace solutions of regularized non-convex", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 306, + 507, + 319 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 507, + 319 + ], + "score": 1.0, + "content": "quadratic problems. In Advances in Neural Information Processing Systems, pp. 10705–10715,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 316, + 166, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 166, + 330 + ], + "score": 1.0, + "content": "2018. 7, 18", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Coralia Cartis, Nicholas IM Gould, and Philippe L Toint. Adaptive cubic regularisation methods for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 116, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "unconstrained optimization. part i: motivation, convergence and numerical results. Mathematical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 359, + 290, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 359, + 290, + 371 + ], + "score": 1.0, + "content": "Programming, 127(2):245–295, 2011. 2, 8", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 104, + 378, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "Andrew R Conn, Nicholas IM Gould, and Ph L Toint. Trust region methods, volume 1. Siam, 2000.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 388, + 169, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 169, + 403 + ], + "score": 1.0, + "content": "1, 2, 3, 8, 13", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "Frank E Curtis, Daniel P Robinson, and Mohammadreza Samadi. A trust region algorithm with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "a worst-case iteration complexity of (epsilon 3/2) for nonconvex optimization. Mathematical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 431, + 359, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 359, + 443 + ], + "score": 1.0, + "content": "Programming: Series A and B, 162(1-2):1–32, 2017. 1, 2, 4", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 108, + 450, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "Yann N Dauphin, Razvan Pascanu, Caglar Gulcehre, Kyunghyun Cho, Surya Ganguli, and Yoshua", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "Bengio. Identifying and attacking the saddle point problem in high-dimensional non-convex", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 473, + 492, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 473, + 492, + 486 + ], + "score": 1.0, + "content": "optimization. In Advances in neural information processing systems, pp. 2933–2941, 2014. 1", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 506, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "Cong Fang, Chris Junchi Li, Zhouchen Lin, and Tong Zhang. Spider: Near-optimal non-convex opti-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "mization via stochastic path-integrated differential estimator. In Advances in Neural Information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 514, + 298, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 298, + 527 + ], + "score": 1.0, + "content": "Processing Systems, pp. 686–696, 2018. 2, 5", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 504, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "Olaf E Flippo and Benjamin Jansen. Duality and sensitivity in nonconvex quadratic optimization", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 545, + 462, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 545, + 462, + 557 + ], + "score": 1.0, + "content": "over an ellipsoid. European journal of operational research, 94(1):167–178, 1996. 19", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Nicholas IM Gould, Stefano Lucidi, Massimo Roma, and Philippe L Toint. Solving the trust-region", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 116, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "subproblem using the lanczos method. SIAM Journal on Optimization, 9(2):504–525, 1999. 3, 7, 9", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 504, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "Robert Gower, Nicolas Le Roux, and Francis Bach. Tracking the gradients using the hessian: A new", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "look at variance reducing stochastic methods. In Proceedings of the Twenty-First International", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 617, + 367, + 630 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 367, + 630 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence and Statistics, 2018. 1, 2", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Rie Johnson and Tong Zhang. Accelerating stochastic gradient descent using predictive variance", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 647, + 480, + 661 + ], + "spans": [ + { + "bbox": [ + 114, + 647, + 480, + 661 + ], + "score": 1.0, + "content": "reduction. In Advances in neural information processing systems, pp. 315–323, 2013. 1, 2", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex opti-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 363, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 363, + 691 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1705.05933, 2017a. 2, 6, 8, 9", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "score": 1.0, + "content": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex op-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "timization. In Proceedings of the 34th International Conference on Machine Learning, 2017b.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 724, + 121, + 729 + ], + "spans": [ + { + "bbox": [ + 117, + 724, + 121, + 729 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 100, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Naman Agarwal, Zeyuan Allen-Zhu, Brian Bullins, Elad Hazan, and Tengyu Ma. Finding approximate", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "local minima faster than gradient descent. In Proceedings of the 49th Annual ACM SIGACT", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 418, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 418, + 135 + ], + "score": 1.0, + "content": "Symposium on Theory of Computing, pp. 1195–1199. ACM, 2017. 7, 9, 19", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 100, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu. Katyusha x: Practical momentum method for stochastic sum-of-nonconvex", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 393, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 393, + 165 + ], + "score": 1.0, + "content": "optimization. arXiv preprint arXiv:1802.03866, 2018a. 8, 10, 19, 20", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 141, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 172, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu. Natasha 2: Faster non-convex optimization than sgd. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 353, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 353, + 196 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2675–2686, 2018b. 7", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 172, + 505, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 203, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 217 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu and Yuanzhi Li. Lazysvd: even faster svd decomposition yet without agonizing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 214, + 483, + 227 + ], + "spans": [ + { + "bbox": [ + 114, + 214, + 483, + 227 + ], + "score": 1.0, + "content": "pain. In Advances in Neural Information Processing Systems, pp. 974–982, 2016. 8, 10, 19", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 201, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Zeyuan Allen-Zhu and Yuanzhi Li. Neon2: Finding local minima via first-order oracles. In Advances", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 244, + 404, + 257 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 404, + 257 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pp. 3716–3726, 2018. 7, 19", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 233, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 279 + ], + "score": 1.0, + "content": "Yair Carmon and John C Duchi. Gradient descent efficiently finds the cubic-regularized non-convex", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 277, + 341, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 341, + 287 + ], + "score": 1.0, + "content": "newton step. arXiv preprint arXiv:1612.00547, 2016. 9", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 263, + 505, + 287 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 506, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 309 + ], + "score": 1.0, + "content": "Yair Carmon and John C Duchi. Analysis of krylov subspace solutions of regularized non-convex", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 306, + 507, + 319 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 507, + 319 + ], + "score": 1.0, + "content": "quadratic problems. In Advances in Neural Information Processing Systems, pp. 10705–10715,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 316, + 166, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 166, + 330 + ], + "score": 1.0, + "content": "2018. 7, 18", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 294, + 507, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Coralia Cartis, Nicholas IM Gould, and Philippe L Toint. Adaptive cubic regularisation methods for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 116, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "unconstrained optimization. part i: motivation, convergence and numerical results. Mathematical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 359, + 290, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 359, + 290, + 371 + ], + "score": 1.0, + "content": "Programming, 127(2):245–295, 2011. 2, 8", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 336, + 505, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 378, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "Andrew R Conn, Nicholas IM Gould, and Ph L Toint. Trust region methods, volume 1. Siam, 2000.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 388, + 169, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 169, + 403 + ], + "score": 1.0, + "content": "1, 2, 3, 8, 13", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 378, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "Frank E Curtis, Daniel P Robinson, and Mohammadreza Samadi. A trust region algorithm with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "a worst-case iteration complexity of (epsilon 3/2) for nonconvex optimization. Mathematical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 431, + 359, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 359, + 443 + ], + "score": 1.0, + "content": "Programming: Series A and B, 162(1-2):1–32, 2017. 1, 2, 4", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 409, + 505, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 450, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "Yann N Dauphin, Razvan Pascanu, Caglar Gulcehre, Kyunghyun Cho, Surya Ganguli, and Yoshua", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "Bengio. Identifying and attacking the saddle point problem in high-dimensional non-convex", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 473, + 492, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 473, + 492, + 486 + ], + "score": 1.0, + "content": "optimization. In Advances in neural information processing systems, pp. 2933–2941, 2014. 1", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 450, + 506, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 506, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "Cong Fang, Chris Junchi Li, Zhouchen Lin, and Tong Zhang. Spider: Near-optimal non-convex opti-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "mization via stochastic path-integrated differential estimator. In Advances in Neural Information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 514, + 298, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 298, + 527 + ], + "score": 1.0, + "content": "Processing Systems, pp. 686–696, 2018. 2, 5", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 492, + 506, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 504, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "Olaf E Flippo and Benjamin Jansen. Duality and sensitivity in nonconvex quadratic optimization", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 545, + 462, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 545, + 462, + 557 + ], + "score": 1.0, + "content": "over an ellipsoid. European journal of operational research, 94(1):167–178, 1996. 19", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 534, + 505, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Nicholas IM Gould, Stefano Lucidi, Massimo Roma, and Philippe L Toint. Solving the trust-region", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 116, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "subproblem using the lanczos method. SIAM Journal on Optimization, 9(2):504–525, 1999. 3, 7, 9", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 564, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 504, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "Robert Gower, Nicolas Le Roux, and Francis Bach. Tracking the gradients using the hessian: A new", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "look at variance reducing stochastic methods. In Proceedings of the Twenty-First International", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 617, + 367, + 630 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 367, + 630 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence and Statistics, 2018. 1, 2", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 594, + 505, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Rie Johnson and Tong Zhang. Accelerating stochastic gradient descent using predictive variance", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 647, + 480, + 661 + ], + "spans": [ + { + "bbox": [ + 114, + 647, + 480, + 661 + ], + "score": 1.0, + "content": "reduction. In Advances in neural information processing systems, pp. 315–323, 2013. 1, 2", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 636, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex opti-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 363, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 363, + 691 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1705.05933, 2017a. 2, 6, 8, 9", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 667, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "score": 1.0, + "content": "Jonas Moritz Kohler and Aurelien Lucchi. Sub-sampled cubic regularization for non-convex op-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "timization. In Proceedings of the 34th International Conference on Machine Learning, 2017b.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 724, + 121, + 729 + ], + "spans": [ + { + "bbox": [ + 117, + 724, + 121, + 729 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 697, + 507, + 729 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 507, + 96 + ], + "score": 1.0, + "content": "Yurii Nesterov and Boris T Polyak. Cubic regularization of newton method and its global performance.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 348, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 348, + 106 + ], + "score": 1.0, + "content": "Mathematical Programming, 108(1):177–205, 2006. 1, 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Lam M Nguyen, Jie Liu, Katya Scheinberg, and Martin Taka´c. Sarah: A novel method for machine ˇ", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "learning problems using stochastic recursive gradient. In International Conference on Machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 257, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 257, + 146 + ], + "score": 1.0, + "content": "Learning, pp. 2613–2621, 2017. 5", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Mitchell Stern, Chi Jin, Jeffrey Regier, and Michael I Jordan. Stochastic cubic", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 163, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 163, + 505, + 178 + ], + "score": 1.0, + "content": "regularization for fast nonconvex optimization. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 266, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 266, + 187 + ], + "score": 1.0, + "content": "Systems, pp. 2899–2908, 2018. 9, 21", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Joel A Tropp. User-friendly tail bounds for sums of random matrices. Foundations of computational", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 300, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 300, + 217 + ], + "score": 1.0, + "content": "mathematics, 12(4):389–434, 2012. 5, 14, 18", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 503, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "Jiulin Wang and Yong Xia. A linear-time algorithm for the trust region subproblem based on hidden", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 362, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 362, + 246 + ], + "score": 1.0, + "content": "convexity. Optimization Letters, 11(8):1639–1646, 2017. 19", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Peng Xu, Farbod Roosta-Khorasani, and Michael W Mahoney. Newton-type methods for non-convex", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 481, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 481, + 277 + ], + "score": 1.0, + "content": "optimization under inexact hessian information. arXiv preprint arXiv:1708.07164, 2017. 1", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "Junyu Zhang, Lin Xiao, and Shuzhong Zhang. Adaptive stochastic variance reduction for subsampled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 294, + 478, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 478, + 307 + ], + "score": 1.0, + "content": "newton method with cubic regularization. arXiv preprint arXiv:1811.11637, 2018. 1, 2, 6", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 313, + 504, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "score": 1.0, + "content": "Dongruo Zhou and Quanquan Gu. Stochastic recursive variance-reduced cubic regularization methods.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 324, + 331, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 331, + 337 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1901.11518, 2019. 6, 7, 8, 9, 21", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 343, + 503, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized Newton", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 495, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 495, + 367 + ], + "score": 1.0, + "content": "methods. In Proceedings of the 35th International Conference on Machine Learning, 2018a. 1", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 502, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 504, + 385 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Sample efficient stochastic variance-reduced cubic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 384, + 431, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 384, + 431, + 397 + ], + "score": 1.0, + "content": "regularization method. arXiv preprint arXiv:1811.11989, 2018b. 1, 2, 6, 8, 22", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized newton", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 414, + 284, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 284, + 425 + ], + "score": 1.0, + "content": "method. In ICML, 2018c. 2, 6, 7, 8, 9, 22", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 507, + 96 + ], + "score": 1.0, + "content": "Yurii Nesterov and Boris T Polyak. Cubic regularization of newton method and its global performance.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 348, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 348, + 106 + ], + "score": 1.0, + "content": "Mathematical Programming, 108(1):177–205, 2006. 1, 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 507, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Lam M Nguyen, Jie Liu, Katya Scheinberg, and Martin Taka´c. Sarah: A novel method for machine ˇ", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "learning problems using stochastic recursive gradient. In International Conference on Machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 257, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 257, + 146 + ], + "score": 1.0, + "content": "Learning, pp. 2613–2621, 2017. 5", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 111, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Mitchell Stern, Chi Jin, Jeffrey Regier, and Michael I Jordan. Stochastic cubic", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 163, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 163, + 505, + 178 + ], + "score": 1.0, + "content": "regularization for fast nonconvex optimization. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 266, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 266, + 187 + ], + "score": 1.0, + "content": "Systems, pp. 2899–2908, 2018. 9, 21", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 153, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Joel A Tropp. User-friendly tail bounds for sums of random matrices. Foundations of computational", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 300, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 300, + 217 + ], + "score": 1.0, + "content": "mathematics, 12(4):389–434, 2012. 5, 14, 18", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 192, + 505, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 503, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "Jiulin Wang and Yong Xia. A linear-time algorithm for the trust region subproblem based on hidden", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 362, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 362, + 246 + ], + "score": 1.0, + "content": "convexity. Optimization Letters, 11(8):1639–1646, 2017. 19", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 223, + 505, + 246 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Peng Xu, Farbod Roosta-Khorasani, and Michael W Mahoney. Newton-type methods for non-convex", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 481, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 481, + 277 + ], + "score": 1.0, + "content": "optimization under inexact hessian information. arXiv preprint arXiv:1708.07164, 2017. 1", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 253, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "Junyu Zhang, Lin Xiao, and Shuzhong Zhang. Adaptive stochastic variance reduction for subsampled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 294, + 478, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 478, + 307 + ], + "score": 1.0, + "content": "newton method with cubic regularization. arXiv preprint arXiv:1811.11637, 2018. 1, 2, 6", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 282, + 505, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 313, + 504, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "score": 1.0, + "content": "Dongruo Zhou and Quanquan Gu. Stochastic recursive variance-reduced cubic regularization methods.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 324, + 331, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 331, + 337 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1901.11518, 2019. 6, 7, 8, 9, 21", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 313, + 504, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 343, + 503, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized Newton", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 495, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 495, + 367 + ], + "score": 1.0, + "content": "methods. In Proceedings of the 35th International Conference on Machine Learning, 2018a. 1", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 343, + 505, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 502, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 504, + 385 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Sample efficient stochastic variance-reduced cubic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 384, + 431, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 384, + 431, + 397 + ], + "score": 1.0, + "content": "regularization method. arXiv preprint arXiv:1811.11989, 2018b. 1, 2, 6, 8, 22", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 372, + 504, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "score": 1.0, + "content": "Dongruo Zhou, Pan Xu, and Quanquan Gu. Stochastic variance-reduced cubic regularized newton", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 414, + 284, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 284, + 425 + ], + "score": 1.0, + "content": "method. In ICML, 2018c. 2, 6, 7, 8, 9, 22", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 401, + 505, + 425 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this appendix, Sec. B first provides the proofs for the results in the manuscript. Then, we analyze", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 195, + 129 + ], + "score": 1.0, + "content": "MetaAlgorithm 7 and", + "type": "text" + }, + { + "bbox": [ + 196, + 117, + 227, + 128 + ], + "score": 0.91, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "in Sec. C and Sec. D, respectively. Next, in Sec. E, we develop a fast", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 363, + 141 + ], + "score": 1.0, + "content": "QCQP solver to further improve the computational complexity of", + "type": "text" + }, + { + "bbox": [ + 363, + 128, + 393, + 139 + ], + "score": 0.84, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 128, + 505, + 141 + ], + "score": 1.0, + "content": ". Finally, more experimental", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 276, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 276, + 151 + ], + "score": 1.0, + "content": "details and results are presented in Sec. F.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 166, + 228, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 164, + 229, + 181 + ], + "spans": [ + { + "bbox": [ + 104, + 164, + 229, + 181 + ], + "score": 1.0, + "content": "B DEFERRED PROOFS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 191, + 238, + 202 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 239, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 239, + 204 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 3.1", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 286, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 286, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 286, + 225 + ], + "score": 1.0, + "content": "Proof. For simplicity of notation, we denote", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 227, + 406, + 245 + ], + "lines": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "spans": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "score": 0.82, + "content": "\\nabla _ { k } \\overset { \\mathrm { d e f } } { = } \\nabla F ( { \\mathbf x } ^ { k } ) - { \\mathbf g } ^ { k } \\mathrm { a n d } \\nabla _ { k } ^ { 2 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) - { \\mathbf H } ^ { k } .", + "type": "interline_equation", + "image_path": "1616005f39564fe9d71d3519e3e67722604349daf5642951c666821e901afad5.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 231, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 231, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 231, + 262 + ], + "score": 1.0, + "content": "From Assumption 2.3 we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 265, + 451, + 315 + ], + "lines": [ + { + "bbox": [ + 159, + 265, + 451, + 315 + ], + "spans": [ + { + "bbox": [ + 159, + 265, + 451, + 315 + ], + "score": 0.94, + "content": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla F ( { \\mathbf x } ^ { k } ) , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } } \\\\ { = F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla _ { k } + \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle [ \\nabla _ { k } ^ { 2 } + \\mathbf { H } ^ { k } ] { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } . } \\end{array}", + "type": "interline_equation", + "image_path": "60776325382d53ffc379302cc2bd007615bafade13a29997a5454b14ac1cb486.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 159, + 265, + 451, + 281.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 281.6666666666667, + 451, + 298.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 298.33333333333337, + 451, + 315.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 286, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 286, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 286, + 331 + ], + "score": 1.0, + "content": "Use the CauchySchwarz inequality to obtain", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 333, + 476, + 357 + ], + "lines": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "spans": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "score": 0.92, + "content": "F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf H ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| { \\mathbf h } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| { \\mathbf h } ^ { k } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "724a682108a329e0e34f13c56f9ed7bb22bc39ff9e358f0842cac42f169c8c9e.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 490, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 492, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 334, + 376 + ], + "score": 1.0, + "content": "The requirement (9) together with the trust region radius", + "type": "text" + }, + { + "bbox": [ + 334, + 361, + 413, + 375 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } \\| \\le r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 361, + 492, + 376 + ], + "score": 1.0, + "content": "allows us to bound", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 379, + 388, + 407 + ], + "lines": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "spans": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "score": 0.93, + "content": "\\| \\nabla _ { k } \\| \\| \\mathbf h ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\mathbf h ^ { k } \\| ^ { 2 } \\leq \\frac { 1 } { 3 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "20f59b80b78f28c39cababf76e097dc8503b4bdd19e4adab58f76d072d24133d.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 363, + 425 + ], + "score": 1.0, + "content": "The optimality of (5) indicates that there exists a dual variable", + "type": "text" + }, + { + "bbox": [ + 364, + 411, + 395, + 424 + ], + "score": 0.92, + "content": "\\lambda ^ { k } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "so that (Corollary 7.2.2 in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 422, + 187, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 187, + 435 + ], + "score": 1.0, + "content": "(Conn et al., 2000))", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 438, + 401, + 507 + ], + "lines": [ + { + "bbox": [ + 210, + 438, + 401, + 507 + ], + "spans": [ + { + "bbox": [ + 210, + 438, + 401, + 507 + ], + "score": 0.93, + "content": "\\begin{array} { c } { { \\displaystyle { \\mathrm { F i r s t ~ O r d e r : ~ } } { \\bf { g } } ^ { k } + { \\bf H } ^ { k } { \\bf h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } { \\bf h } ^ { k } = 0 , } } \\\\ { { \\displaystyle \\mathrm { S e c o n d ~ O r d e r : ~ } { \\bf H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\cdot { \\bf I } \\approx 0 , } } \\\\ { { \\displaystyle \\mathrm { C o m p l e m e n t a r y : ~ } \\lambda ^ { k } \\cdot ( \\| { \\bf h } ^ { k } \\| - r ) = 0 . } } \\end{array}", + "type": "interline_equation", + "image_path": "76c1bfa5079d2ca5ab495230ca27f14a0fb325aa2f4fbe19b88aeb68dd1ab56f.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 438, + 401, + 455.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 210, + 455.25, + 401, + 472.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 210, + 472.5, + 401, + 489.75 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 210, + 489.75, + 401, + 507.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 240, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 240, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 188, + 524 + ], + "score": 1.0, + "content": "Multiplying (13) by", + "type": "text" + }, + { + "bbox": [ + 188, + 511, + 200, + 522 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 510, + 240, + 524 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 528, + 377, + 554 + ], + "lines": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "spans": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "score": 0.94, + "content": "\\langle \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle = 0 .", + "type": "interline_equation", + "image_path": "3ca4b496905c8f950c02fddce5bfead8062c1e2d6890f6ca671ead521c898670.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 239, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 239, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 239, + 570 + ], + "score": 1.0, + "content": "Additionally, using (14) we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 572, + 365, + 599 + ], + "lines": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "spans": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "score": 0.94, + "content": "\\langle ( \\mathbf { H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { I } ) \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\geq 0 ,", + "type": "interline_equation", + "image_path": "9fe5336125356da135765759de8b320f4b0b0bb83a80b24651b692e574126573.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 231, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 230, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 230, + 615 + ], + "score": 1.0, + "content": "which together with (16) gives", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 277, + 612, + 334, + 627 + ], + "lines": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "spans": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\leq 0 .", + "type": "interline_equation", + "image_path": "946aa56b1d75ac209766be15d8244e904b486e7db7d2e1551e1c66e04611ef36.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 507, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 316, + 643 + ], + "score": 1.0, + "content": "Moreover, the complementary property (15) indicates", + "type": "text" + }, + { + "bbox": [ + 316, + 629, + 381, + 643 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 628, + 425, + 643 + ], + "score": 1.0, + "content": "as we have", + "type": "text" + }, + { + "bbox": [ + 425, + 628, + 504, + 642 + ], + "score": 0.92, + "content": "\\lambda ^ { k } > 3 \\sqrt { \\epsilon / L _ { 2 } } > 0", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 642, + 493, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 424, + 657 + ], + "score": 1.0, + "content": "before MetaAlgorithm 1 terminates. Plug (12), (16), and (17) into (11) and use", + "type": "text" + }, + { + "bbox": [ + 424, + 642, + 489, + 656 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 642, + 493, + 657 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 660, + 400, + 688 + ], + "lines": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "spans": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "score": 0.94, + "content": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } } { 4 } \\cdot \\frac { \\epsilon } { L _ { 2 } } + \\frac { 1 } { 2 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "5d9f43775d126fd33c19908719dde4c8f9bdab9615d428224acaa9852c3a134b.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 287, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 288, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 194, + 707 + ], + "score": 1.0, + "content": "Therefore, if we have", + "type": "text" + }, + { + "bbox": [ + 194, + 693, + 263, + 706 + ], + "score": 0.94, + "content": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 691, + 288, + 707 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 709, + 377, + 736 + ], + "lines": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "spans": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "score": 0.94, + "content": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - { \\frac { 1 } { 4 { \\sqrt { L _ { 2 } } } } } \\cdot \\epsilon ^ { 1 . 5 } .", + "type": "interline_equation", + "image_path": "d2678914ca47a96601f43b408625494bc06fbe5a3e6fe963e2b298c694e0db95.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this appendix, Sec. B first provides the proofs for the results in the manuscript. Then, we analyze", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 195, + 129 + ], + "score": 1.0, + "content": "MetaAlgorithm 7 and", + "type": "text" + }, + { + "bbox": [ + 196, + 117, + 227, + 128 + ], + "score": 0.91, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "in Sec. C and Sec. D, respectively. Next, in Sec. E, we develop a fast", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 363, + 141 + ], + "score": 1.0, + "content": "QCQP solver to further improve the computational complexity of", + "type": "text" + }, + { + "bbox": [ + 363, + 128, + 393, + 139 + ], + "score": 0.84, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 128, + 505, + 141 + ], + "score": 1.0, + "content": ". Finally, more experimental", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 276, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 276, + 151 + ], + "score": 1.0, + "content": "details and results are presented in Sec. F.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 105, + 505, + 151 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 166, + 228, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 164, + 229, + 181 + ], + "spans": [ + { + "bbox": [ + 104, + 164, + 229, + 181 + ], + "score": 1.0, + "content": "B DEFERRED PROOFS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 191, + 238, + 202 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 239, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 239, + 204 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 3.1", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 286, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 286, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 286, + 225 + ], + "score": 1.0, + "content": "Proof. For simplicity of notation, we denote", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 211, + 286, + 225 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 227, + 406, + 245 + ], + "lines": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "spans": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "score": 0.82, + "content": "\\nabla _ { k } \\overset { \\mathrm { d e f } } { = } \\nabla F ( { \\mathbf x } ^ { k } ) - { \\mathbf g } ^ { k } \\mathrm { a n d } \\nabla _ { k } ^ { 2 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) - { \\mathbf H } ^ { k } .", + "type": "interline_equation", + "image_path": "1616005f39564fe9d71d3519e3e67722604349daf5642951c666821e901afad5.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 201, + 227, + 406, + 245 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 231, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 231, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 231, + 262 + ], + "score": 1.0, + "content": "From Assumption 2.3 we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 247, + 231, + 262 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 265, + 451, + 315 + ], + "lines": [ + { + "bbox": [ + 159, + 265, + 451, + 315 + ], + "spans": [ + { + "bbox": [ + 159, + 265, + 451, + 315 + ], + "score": 0.94, + "content": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla F ( { \\mathbf x } ^ { k } ) , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } } \\\\ { = F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla _ { k } + \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle [ \\nabla _ { k } ^ { 2 } + \\mathbf { H } ^ { k } ] { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } . } \\end{array}", + "type": "interline_equation", + "image_path": "60776325382d53ffc379302cc2bd007615bafade13a29997a5454b14ac1cb486.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 159, + 265, + 451, + 281.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 281.6666666666667, + 451, + 298.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 298.33333333333337, + 451, + 315.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 286, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 286, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 286, + 331 + ], + "score": 1.0, + "content": "Use the CauchySchwarz inequality to obtain", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 315, + 286, + 331 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 333, + 476, + 357 + ], + "lines": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "spans": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "score": 0.92, + "content": "F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf H ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| { \\mathbf h } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| { \\mathbf h } ^ { k } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "724a682108a329e0e34f13c56f9ed7bb22bc39ff9e358f0842cac42f169c8c9e.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 118, + 333, + 476, + 357 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 490, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 492, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 334, + 376 + ], + "score": 1.0, + "content": "The requirement (9) together with the trust region radius", + "type": "text" + }, + { + "bbox": [ + 334, + 361, + 413, + 375 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } \\| \\le r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 361, + 492, + 376 + ], + "score": 1.0, + "content": "allows us to bound", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 361, + 492, + 376 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 379, + 388, + 407 + ], + "lines": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "spans": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "score": 0.93, + "content": "\\| \\nabla _ { k } \\| \\| \\mathbf h ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\mathbf h ^ { k } \\| ^ { 2 } \\leq \\frac { 1 } { 3 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "20f59b80b78f28c39cababf76e097dc8503b4bdd19e4adab58f76d072d24133d.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 223, + 379, + 388, + 407 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 363, + 425 + ], + "score": 1.0, + "content": "The optimality of (5) indicates that there exists a dual variable", + "type": "text" + }, + { + "bbox": [ + 364, + 411, + 395, + 424 + ], + "score": 0.92, + "content": "\\lambda ^ { k } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "so that (Corollary 7.2.2 in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 422, + 187, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 187, + 435 + ], + "score": 1.0, + "content": "(Conn et al., 2000))", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 411, + 506, + 435 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 438, + 401, + 507 + ], + "lines": [ + { + "bbox": [ + 210, + 438, + 401, + 507 + ], + "spans": [ + { + "bbox": [ + 210, + 438, + 401, + 507 + ], + "score": 0.93, + "content": "\\begin{array} { c } { { \\displaystyle { \\mathrm { F i r s t ~ O r d e r : ~ } } { \\bf { g } } ^ { k } + { \\bf H } ^ { k } { \\bf h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } { \\bf h } ^ { k } = 0 , } } \\\\ { { \\displaystyle \\mathrm { S e c o n d ~ O r d e r : ~ } { \\bf H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\cdot { \\bf I } \\approx 0 , } } \\\\ { { \\displaystyle \\mathrm { C o m p l e m e n t a r y : ~ } \\lambda ^ { k } \\cdot ( \\| { \\bf h } ^ { k } \\| - r ) = 0 . } } \\end{array}", + "type": "interline_equation", + "image_path": "76c1bfa5079d2ca5ab495230ca27f14a0fb325aa2f4fbe19b88aeb68dd1ab56f.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 438, + 401, + 455.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 210, + 455.25, + 401, + 472.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 210, + 472.5, + 401, + 489.75 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 210, + 489.75, + 401, + 507.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 240, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 240, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 188, + 524 + ], + "score": 1.0, + "content": "Multiplying (13) by", + "type": "text" + }, + { + "bbox": [ + 188, + 511, + 200, + 522 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 510, + 240, + 524 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 510, + 240, + 524 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 528, + 377, + 554 + ], + "lines": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "spans": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "score": 0.94, + "content": "\\langle \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle = 0 .", + "type": "interline_equation", + "image_path": "3ca4b496905c8f950c02fddce5bfead8062c1e2d6890f6ca671ead521c898670.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 234, + 528, + 377, + 554 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 239, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 239, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 239, + 570 + ], + "score": 1.0, + "content": "Additionally, using (14) we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 555, + 239, + 570 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 572, + 365, + 599 + ], + "lines": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "spans": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "score": 0.94, + "content": "\\langle ( \\mathbf { H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { I } ) \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\geq 0 ,", + "type": "interline_equation", + "image_path": "9fe5336125356da135765759de8b320f4b0b0bb83a80b24651b692e574126573.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 245, + 572, + 365, + 599 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 231, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 230, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 230, + 615 + ], + "score": 1.0, + "content": "which together with (16) gives", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 601, + 230, + 615 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 277, + 612, + 334, + 627 + ], + "lines": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "spans": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\leq 0 .", + "type": "interline_equation", + "image_path": "946aa56b1d75ac209766be15d8244e904b486e7db7d2e1551e1c66e04611ef36.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 277, + 612, + 334, + 627 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 507, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 316, + 643 + ], + "score": 1.0, + "content": "Moreover, the complementary property (15) indicates", + "type": "text" + }, + { + "bbox": [ + 316, + 629, + 381, + 643 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 628, + 425, + 643 + ], + "score": 1.0, + "content": "as we have", + "type": "text" + }, + { + "bbox": [ + 425, + 628, + 504, + 642 + ], + "score": 0.92, + "content": "\\lambda ^ { k } > 3 \\sqrt { \\epsilon / L _ { 2 } } > 0", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 642, + 493, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 424, + 657 + ], + "score": 1.0, + "content": "before MetaAlgorithm 1 terminates. Plug (12), (16), and (17) into (11) and use", + "type": "text" + }, + { + "bbox": [ + 424, + 642, + 489, + 656 + ], + "score": 0.94, + "content": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 642, + 493, + 657 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 628, + 504, + 657 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 660, + 400, + 688 + ], + "lines": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "spans": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "score": 0.94, + "content": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } } { 4 } \\cdot \\frac { \\epsilon } { L _ { 2 } } + \\frac { 1 } { 2 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "5d9f43775d126fd33c19908719dde4c8f9bdab9615d428224acaa9852c3a134b.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 211, + 660, + 400, + 688 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 287, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 288, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 194, + 707 + ], + "score": 1.0, + "content": "Therefore, if we have", + "type": "text" + }, + { + "bbox": [ + 194, + 693, + 263, + 706 + ], + "score": 0.94, + "content": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 691, + 288, + 707 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 691, + 288, + 707 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 709, + 377, + 736 + ], + "lines": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "spans": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "score": 0.94, + "content": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - { \\frac { 1 } { 4 { \\sqrt { L _ { 2 } } } } } \\cdot \\epsilon ^ { 1 . 5 } .", + "type": "interline_equation", + "image_path": "d2678914ca47a96601f43b408625494bc06fbe5a3e6fe963e2b298c694e0db95.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 234, + 709, + 377, + 736 + ], + "spans": [], + "index": 33 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 237, + 96 + ], + "score": 1.0, + "content": "Using Assumption 2.1, we find", + "type": "text" + }, + { + "bbox": [ + 238, + 81, + 309, + 95 + ], + "score": 0.93, + "content": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 79, + 379, + 96 + ], + "score": 1.0, + "content": "in no more than", + "type": "text" + }, + { + "bbox": [ + 379, + 81, + 504, + 95 + ], + "score": 0.9, + "content": "4 \\sqrt { L _ { 2 } } \\cdot ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { * } ) ) / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 150, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 150, + 107 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 109, + 501, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 503, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 202, + 124 + ], + "score": 1.0, + "content": "We now show that once", + "type": "text" + }, + { + "bbox": [ + 202, + 109, + 271, + 123 + ], + "score": 0.94, + "content": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 107, + 294, + 124 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 295, + 110, + 317, + 121 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 107, + 370, + 124 + ], + "score": 1.0, + "content": "is already an", + "type": "text" + }, + { + "bbox": [ + 371, + 110, + 392, + 123 + ], + "score": 0.89, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 107, + 503, + 124 + ], + "score": 1.0, + "content": "-SOSP: From (13), we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 126, + 381, + 152 + ], + "lines": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "spans": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "score": 0.94, + "content": "\\| \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } \\| = \\frac { L _ { 2 } \\lambda ^ { k } } { 2 } \\cdot \\| \\mathbf { h } ^ { k } \\| \\leq 2 \\epsilon .", + "type": "interline_equation", + "image_path": "fe5176f9e4fc73913bf17cea59355d763b3609c4969c2274a129d80ca54486ee.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 178, + 172 + ], + "score": 1.0, + "content": "The assumptions", + "type": "text" + }, + { + "bbox": [ + 178, + 157, + 231, + 170 + ], + "score": 0.92, + "content": "\\lVert \\nabla _ { k } \\rVert \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 155, + 251, + 172 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 156, + 324, + 170 + ], + "score": 0.93, + "content": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 155, + 475, + 172 + ], + "score": 1.0, + "content": "together with the trust region radius", + "type": "text" + }, + { + "bbox": [ + 475, + 158, + 505, + 170 + ], + "score": 0.89, + "content": "\\| \\mathbf { h } \\| \\leq", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 168, + 165, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 138, + 183 + ], + "score": 0.92, + "content": "\\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 168, + 165, + 185 + ], + "score": 1.0, + "content": "imply", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 187, + 457, + 203 + ], + "lines": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "spans": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "score": 0.88, + "content": "\\| \\nabla F ( { \\mathbf x } ^ { k } ) + \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } \\| \\leq \\| { \\mathbf g } ^ { k } + { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } \\| + \\| \\nabla _ { k } \\| + \\| \\nabla _ { k } ^ { 2 } \\cdot { \\mathbf h } ^ { k } \\| \\leq 2 . 5 \\epsilon .", + "type": "interline_equation", + "image_path": "361b3602948ad49869427833b2f7dc2ffec583dca112dd5db25b66e21207d4d3.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 299, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 299, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 299, + 219 + ], + "score": 1.0, + "content": "On the other hand use Assumption 2.3 to bound", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 222, + 426, + 246 + ], + "lines": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "spans": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "score": 0.92, + "content": "\\| \\nabla F ( { \\mathbf { x } } ^ { k + 1 } ) - \\nabla F ( { \\mathbf { x } } ^ { k } ) - \\nabla ^ { 2 } F ( { \\mathbf { x } } ^ { k } ) { \\mathbf { h } } ^ { k } \\| \\leq \\frac { L _ { 2 } } { 2 } \\| { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon } { 2 } .", + "type": "interline_equation", + "image_path": "48e7f410cff77d58233676d4808238ec882e3f54bf80340cf3f8c99867ddc477.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 251, + 326, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 324, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 246, + 265 + ], + "score": 1.0, + "content": "Combining these two results gives", + "type": "text" + }, + { + "bbox": [ + 246, + 251, + 324, + 264 + ], + "score": 0.91, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { k + 1 } ) \\| \\leq 3 \\epsilon", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 489, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 490, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 236, + 277 + ], + "score": 1.0, + "content": "Besides, using Assumption 2.3,", + "type": "text" + }, + { + "bbox": [ + 236, + 263, + 306, + 276 + ], + "score": 0.9, + "content": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 261, + 490, + 277 + ], + "score": 1.0, + "content": ", and (14), we derive the Hessian lower bound", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 280, + 471, + 297 + ], + "lines": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "spans": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "score": 0.89, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k + 1 } ) \\approx \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - L _ { 2 } \\cdot \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx \\mathbf { H } ^ { k } - \\sqrt { \\epsilon L _ { 2 } } / 3 \\mathbf { I } - L _ { 2 } \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx - \\sqrt { 1 2 \\epsilon L _ { 2 } } \\mathbf { I } .", + "type": "interline_equation", + "image_path": "e36cc1c7ae4617bfd606174d203031bbdf0f504a87031e63a7bc9653d9b34b71.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 134, + 316 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + }, + { + "bbox": [ + 134, + 301, + 156, + 313 + ], + "score": 0.9, + "content": "\\mathbf { x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 300, + 173, + 316 + ], + "score": 1.0, + "content": "is a", + "type": "text" + }, + { + "bbox": [ + 174, + 303, + 189, + 313 + ], + "score": 0.78, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 300, + 347, + 316 + ], + "score": 1.0, + "content": "-stationary point. Additionally, we have", + "type": "text" + }, + { + "bbox": [ + 347, + 302, + 388, + 315 + ], + "score": 0.93, + "content": "\\| \\mathbf { h } ^ { k } \\| = r", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "according to the complemen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 294, + 326 + ], + "score": 1.0, + "content": "tary condition (15) for all but the last iteration.", + "type": "text" + }, + { + "bbox": [ + 495, + 316, + 504, + 322 + ], + "score": 0.989, + "content": "□", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 338, + 228, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 229, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 229, + 351 + ], + "score": 1.0, + "content": "B.2 PROOF OF LEMMA 4.1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 332, + 371 + ], + "score": 1.0, + "content": "Proof. Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 332, + 359, + 382, + 370 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "for ease of notation. We first", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 369, + 396, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 396, + 383 + ], + "score": 1.0, + "content": "focus on Option II. The proof for Option I follows the similar argument.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 108, + 381, + 271, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 270, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 195, + 395 + ], + "score": 1.0, + "content": "Option II: Define for", + "type": "text" + }, + { + "bbox": [ + 196, + 381, + 221, + 390 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 378, + 239, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 380, + 270, + 393 + ], + "score": 0.91, + "content": "i \\in [ s _ { 2 } ^ { \\prime } ]", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 397, + 367, + 415 + ], + "lines": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "spans": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "score": 0.91, + "content": "\\mathbf { B } _ { i } ^ { 0 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) ,", + "type": "interline_equation", + "image_path": "5b59805a4af053ee4fb95c5b42b27008a7e356ff92846c332e497cfc3ff31f58.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 240, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 239, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 164, + 433 + ], + "score": 1.0, + "content": "and define for", + "type": "text" + }, + { + "bbox": [ + 164, + 419, + 189, + 430 + ], + "score": 0.9, + "content": "k \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 416, + 207, + 433 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 419, + 239, + 431 + ], + "score": 0.87, + "content": "i \\in [ s _ { 2 } ]", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 436, + 434, + 453 + ], + "lines": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "spans": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "score": 0.9, + "content": "\\mathbf { B } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\big ( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\big ) .", + "type": "interline_equation", + "image_path": "1289057aa766bac4d1c804c34e177cedc7345fe754faf9636136f226ac77e204.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 374, + 469 + ], + "lines": [ + { + "bbox": [ + 107, + 454, + 370, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 131, + 469 + ], + "score": 0.92, + "content": "\\{ \\mathbf { B } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 341, + 471 + ], + "score": 1.0, + "content": "is a martingale difference sequence. We have for all", + "type": "text" + }, + { + "bbox": [ + 341, + 457, + 348, + 467 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 454, + 366, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 458, + 370, + 467 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 473, + 336, + 488 + ], + "lines": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "spans": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { B } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "1ab1248d3ac8b56df88bfe2bdb5750638f45686b37cd3daf9ffb75238c215762.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 316, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 316, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 252, + 505 + ], + "score": 1.0, + "content": "Besides, we use Assumption 2.2 for", + "type": "text" + }, + { + "bbox": [ + 252, + 493, + 277, + 502 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 492, + 316, + 505 + ], + "score": 1.0, + "content": "to bound", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 507, + 395, + 523 + ], + "lines": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "spans": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "score": 0.92, + "content": "\\| \\mathbf { B } _ { i } ^ { 0 } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) \\| = 2 L _ { 1 } ,", + "type": "interline_equation", + "image_path": "a96ab3c9c32ec3a722ba047b878da8bddd46e3b9d866c8b308c6d60bf12ac7a8.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 283, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 283, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 219, + 539 + ], + "score": 1.0, + "content": "and use Assumption 2.3 for", + "type": "text" + }, + { + "bbox": [ + 219, + 527, + 244, + 538 + ], + "score": 0.92, + "content": "k \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 525, + 283, + 539 + ], + "score": 1.0, + "content": "to bound", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 543, + 458, + 559 + ], + "lines": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "spans": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "score": 0.91, + "content": "\\| \\mathbf { B } _ { i } ^ { k } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\| \\leq 2 \\sqrt { \\epsilon L _ { 2 } } .", + "type": "interline_equation", + "image_path": "b76551264722383e915a5aec6eda7153275e6f93c5b9292ca46b4842c46f24cc.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 261, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 262, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 208, + 577 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 564, + 222, + 575 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 563, + 262, + 577 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 581, + 393, + 618 + ], + "lines": [ + { + "bbox": [ + 218, + 581, + 393, + 618 + ], + "spans": [ + { + "bbox": [ + 218, + 581, + 393, + 618 + ], + "score": 0.94, + "content": "\\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) = \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } { \\frac { \\mathbf { B } _ { i } ^ { 0 } } { s _ { 2 } ^ { \\prime } } } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } { \\frac { \\mathbf { B } _ { i } ^ { j } } { s _ { 2 } } } .", + "type": "interline_equation", + "image_path": "31737fe57bead9ab4a5a9f1ab377ff3604127e5e0167ea5d6d85fd8f50827453.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 581, + 393, + 599.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 218, + 599.5, + 393, + 618.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 493, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 495, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 426, + 636 + ], + "score": 1.0, + "content": "Thus using the matrix Azuma’s Inequality in Theorem 7.1 of (Tropp, 2012) and", + "type": "text" + }, + { + "bbox": [ + 426, + 622, + 455, + 633 + ], + "score": 0.92, + "content": "k \\leq p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 620, + 495, + 636 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 637, + 472, + 700 + ], + "lines": [ + { + "bbox": [ + 138, + 637, + 472, + 700 + ], + "spans": [ + { + "bbox": [ + 138, + 637, + 472, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) \\| \\ge t \\} \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime 2 } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} } \\\\ & { \\qquad \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime } + 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f24e6e87a452eaf0ec8450b5212fb193ef6015d4900c4dabd7c2aca6fe52901e.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 138, + 637, + 472, + 658.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 138, + 658.0, + 472, + 679.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 138, + 679.0, + 472, + 700.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 201, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 201, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 201, + 716 + ], + "score": 1.0, + "content": "Consequently, we have", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 718, + 397, + 734 + ], + "lines": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "spans": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "score": 0.9, + "content": "P r \\{ \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } \\} \\geq 1 - \\delta / K _ { 0 } .", + "type": "interline_equation", + "image_path": "0aadfd3a3d67afea7174dde94c4e59b87792f85f47f57d09eb4924bbfb771bad.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 237, + 96 + ], + "score": 1.0, + "content": "Using Assumption 2.1, we find", + "type": "text" + }, + { + "bbox": [ + 238, + 81, + 309, + 95 + ], + "score": 0.93, + "content": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 79, + 379, + 96 + ], + "score": 1.0, + "content": "in no more than", + "type": "text" + }, + { + "bbox": [ + 379, + 81, + 504, + 95 + ], + "score": 0.9, + "content": "4 \\sqrt { L _ { 2 } } \\cdot ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { * } ) ) / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 150, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 150, + 107 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 79, + 504, + 107 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 109, + 501, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 503, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 202, + 124 + ], + "score": 1.0, + "content": "We now show that once", + "type": "text" + }, + { + "bbox": [ + 202, + 109, + 271, + 123 + ], + "score": 0.94, + "content": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 107, + 294, + 124 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 295, + 110, + 317, + 121 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 107, + 370, + 124 + ], + "score": 1.0, + "content": "is already an", + "type": "text" + }, + { + "bbox": [ + 371, + 110, + 392, + 123 + ], + "score": 0.89, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 107, + 503, + 124 + ], + "score": 1.0, + "content": "-SOSP: From (13), we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 107, + 503, + 124 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 126, + 381, + 152 + ], + "lines": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "spans": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "score": 0.94, + "content": "\\| \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } \\| = \\frac { L _ { 2 } \\lambda ^ { k } } { 2 } \\cdot \\| \\mathbf { h } ^ { k } \\| \\leq 2 \\epsilon .", + "type": "interline_equation", + "image_path": "fe5176f9e4fc73913bf17cea59355d763b3609c4969c2274a129d80ca54486ee.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 230, + 126, + 381, + 152 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 178, + 172 + ], + "score": 1.0, + "content": "The assumptions", + "type": "text" + }, + { + "bbox": [ + 178, + 157, + 231, + 170 + ], + "score": 0.92, + "content": "\\lVert \\nabla _ { k } \\rVert \\leq \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 155, + 251, + 172 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 156, + 324, + 170 + ], + "score": 0.93, + "content": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 155, + 475, + 172 + ], + "score": 1.0, + "content": "together with the trust region radius", + "type": "text" + }, + { + "bbox": [ + 475, + 158, + 505, + 170 + ], + "score": 0.89, + "content": "\\| \\mathbf { h } \\| \\leq", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 168, + 165, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 138, + 183 + ], + "score": 0.92, + "content": "\\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 168, + 165, + 185 + ], + "score": 1.0, + "content": "imply", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 155, + 505, + 185 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 187, + 457, + 203 + ], + "lines": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "spans": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "score": 0.88, + "content": "\\| \\nabla F ( { \\mathbf x } ^ { k } ) + \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } \\| \\leq \\| { \\mathbf g } ^ { k } + { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } \\| + \\| \\nabla _ { k } \\| + \\| \\nabla _ { k } ^ { 2 } \\cdot { \\mathbf h } ^ { k } \\| \\leq 2 . 5 \\epsilon .", + "type": "interline_equation", + "image_path": "361b3602948ad49869427833b2f7dc2ffec583dca112dd5db25b66e21207d4d3.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 153, + 187, + 457, + 203 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 299, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 299, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 299, + 219 + ], + "score": 1.0, + "content": "On the other hand use Assumption 2.3 to bound", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 206, + 299, + 219 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 222, + 426, + 246 + ], + "lines": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "spans": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "score": 0.92, + "content": "\\| \\nabla F ( { \\mathbf { x } } ^ { k + 1 } ) - \\nabla F ( { \\mathbf { x } } ^ { k } ) - \\nabla ^ { 2 } F ( { \\mathbf { x } } ^ { k } ) { \\mathbf { h } } ^ { k } \\| \\leq \\frac { L _ { 2 } } { 2 } \\| { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon } { 2 } .", + "type": "interline_equation", + "image_path": "48e7f410cff77d58233676d4808238ec882e3f54bf80340cf3f8c99867ddc477.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 183, + 222, + 426, + 246 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 251, + 326, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 324, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 246, + 265 + ], + "score": 1.0, + "content": "Combining these two results gives", + "type": "text" + }, + { + "bbox": [ + 246, + 251, + 324, + 264 + ], + "score": 0.91, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { k + 1 } ) \\| \\leq 3 \\epsilon", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 250, + 324, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 489, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 490, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 236, + 277 + ], + "score": 1.0, + "content": "Besides, using Assumption 2.3,", + "type": "text" + }, + { + "bbox": [ + 236, + 263, + 306, + 276 + ], + "score": 0.9, + "content": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 261, + 490, + 277 + ], + "score": 1.0, + "content": ", and (14), we derive the Hessian lower bound", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 261, + 490, + 277 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 280, + 471, + 297 + ], + "lines": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "spans": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "score": 0.89, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k + 1 } ) \\approx \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - L _ { 2 } \\cdot \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx \\mathbf { H } ^ { k } - \\sqrt { \\epsilon L _ { 2 } } / 3 \\mathbf { I } - L _ { 2 } \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx - \\sqrt { 1 2 \\epsilon L _ { 2 } } \\mathbf { I } .", + "type": "interline_equation", + "image_path": "e36cc1c7ae4617bfd606174d203031bbdf0f504a87031e63a7bc9653d9b34b71.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 129, + 280, + 471, + 297 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 134, + 316 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + }, + { + "bbox": [ + 134, + 301, + 156, + 313 + ], + "score": 0.9, + "content": "\\mathbf { x } ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 300, + 173, + 316 + ], + "score": 1.0, + "content": "is a", + "type": "text" + }, + { + "bbox": [ + 174, + 303, + 189, + 313 + ], + "score": 0.78, + "content": "1 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 300, + 347, + 316 + ], + "score": 1.0, + "content": "-stationary point. Additionally, we have", + "type": "text" + }, + { + "bbox": [ + 347, + 302, + 388, + 315 + ], + "score": 0.93, + "content": "\\| \\mathbf { h } ^ { k } \\| = r", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "according to the complemen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 294, + 326 + ], + "score": 1.0, + "content": "tary condition (15) for all but the last iteration.", + "type": "text" + }, + { + "bbox": [ + 495, + 316, + 504, + 322 + ], + "score": 0.989, + "content": "□", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 300, + 506, + 326 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 338, + 228, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 229, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 229, + 351 + ], + "score": 1.0, + "content": "B.2 PROOF OF LEMMA 4.1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 332, + 371 + ], + "score": 1.0, + "content": "Proof. Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 332, + 359, + 382, + 370 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "for ease of notation. We first", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 369, + 396, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 396, + 383 + ], + "score": 1.0, + "content": "focus on Option II. The proof for Option I follows the similar argument.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 358, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 381, + 271, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 270, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 195, + 395 + ], + "score": 1.0, + "content": "Option II: Define for", + "type": "text" + }, + { + "bbox": [ + 196, + 381, + 221, + 390 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 378, + 239, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 380, + 270, + 393 + ], + "score": 0.91, + "content": "i \\in [ s _ { 2 } ^ { \\prime } ]", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 378, + 270, + 395 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 397, + 367, + 415 + ], + "lines": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "spans": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "score": 0.91, + "content": "\\mathbf { B } _ { i } ^ { 0 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) ,", + "type": "interline_equation", + "image_path": "5b59805a4af053ee4fb95c5b42b27008a7e356ff92846c332e497cfc3ff31f58.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 242, + 397, + 367, + 415 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 240, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 239, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 164, + 433 + ], + "score": 1.0, + "content": "and define for", + "type": "text" + }, + { + "bbox": [ + 164, + 419, + 189, + 430 + ], + "score": 0.9, + "content": "k \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 416, + 207, + 433 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 419, + 239, + 431 + ], + "score": 0.87, + "content": "i \\in [ s _ { 2 } ]", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 416, + 239, + 433 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 436, + 434, + 453 + ], + "lines": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "spans": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "score": 0.9, + "content": "\\mathbf { B } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\big ( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\big ) .", + "type": "interline_equation", + "image_path": "1289057aa766bac4d1c804c34e177cedc7345fe754faf9636136f226ac77e204.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 176, + 436, + 434, + 453 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 374, + 469 + ], + "lines": [ + { + "bbox": [ + 107, + 454, + 370, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 131, + 469 + ], + "score": 0.92, + "content": "\\{ \\mathbf { B } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 341, + 471 + ], + "score": 1.0, + "content": "is a martingale difference sequence. We have for all", + "type": "text" + }, + { + "bbox": [ + 341, + 457, + 348, + 467 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 454, + 366, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 458, + 370, + 467 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 107, + 454, + 370, + 471 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 473, + 336, + 488 + ], + "lines": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "spans": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { B } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "1ab1248d3ac8b56df88bfe2bdb5750638f45686b37cd3daf9ffb75238c215762.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 274, + 473, + 336, + 488 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 316, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 316, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 252, + 505 + ], + "score": 1.0, + "content": "Besides, we use Assumption 2.2 for", + "type": "text" + }, + { + "bbox": [ + 252, + 493, + 277, + 502 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 492, + 316, + 505 + ], + "score": 1.0, + "content": "to bound", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 492, + 316, + 505 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 507, + 395, + 523 + ], + "lines": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "spans": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "score": 0.92, + "content": "\\| \\mathbf { B } _ { i } ^ { 0 } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) \\| = 2 L _ { 1 } ,", + "type": "interline_equation", + "image_path": "a96ab3c9c32ec3a722ba047b878da8bddd46e3b9d866c8b308c6d60bf12ac7a8.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 215, + 507, + 395, + 523 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 283, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 283, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 219, + 539 + ], + "score": 1.0, + "content": "and use Assumption 2.3 for", + "type": "text" + }, + { + "bbox": [ + 219, + 527, + 244, + 538 + ], + "score": 0.92, + "content": "k \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 525, + 283, + 539 + ], + "score": 1.0, + "content": "to bound", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 525, + 283, + 539 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 543, + 458, + 559 + ], + "lines": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "spans": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "score": 0.91, + "content": "\\| \\mathbf { B } _ { i } ^ { k } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\| \\leq 2 \\sqrt { \\epsilon L _ { 2 } } .", + "type": "interline_equation", + "image_path": "b76551264722383e915a5aec6eda7153275e6f93c5b9292ca46b4842c46f24cc.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 543, + 458, + 559 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 261, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 262, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 208, + 577 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 564, + 222, + 575 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 563, + 262, + 577 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 563, + 262, + 577 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 581, + 393, + 618 + ], + "lines": [ + { + "bbox": [ + 218, + 581, + 393, + 618 + ], + "spans": [ + { + "bbox": [ + 218, + 581, + 393, + 618 + ], + "score": 0.94, + "content": "\\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) = \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } { \\frac { \\mathbf { B } _ { i } ^ { 0 } } { s _ { 2 } ^ { \\prime } } } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } { \\frac { \\mathbf { B } _ { i } ^ { j } } { s _ { 2 } } } .", + "type": "interline_equation", + "image_path": "31737fe57bead9ab4a5a9f1ab377ff3604127e5e0167ea5d6d85fd8f50827453.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 581, + 393, + 599.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 218, + 599.5, + 393, + 618.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 493, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 495, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 426, + 636 + ], + "score": 1.0, + "content": "Thus using the matrix Azuma’s Inequality in Theorem 7.1 of (Tropp, 2012) and", + "type": "text" + }, + { + "bbox": [ + 426, + 622, + 455, + 633 + ], + "score": 0.92, + "content": "k \\leq p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 620, + 495, + 636 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 620, + 495, + 636 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 637, + 472, + 700 + ], + "lines": [ + { + "bbox": [ + 138, + 637, + 472, + 700 + ], + "spans": [ + { + "bbox": [ + 138, + 637, + 472, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) \\| \\ge t \\} \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime 2 } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} } \\\\ & { \\qquad \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime } + 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f24e6e87a452eaf0ec8450b5212fb193ef6015d4900c4dabd7c2aca6fe52901e.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 138, + 637, + 472, + 658.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 138, + 658.0, + 472, + 679.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 138, + 679.0, + 472, + 700.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 201, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 201, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 201, + 716 + ], + "score": 1.0, + "content": "Consequently, we have", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 701, + 201, + 716 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 718, + 397, + 734 + ], + "lines": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "spans": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "score": 0.9, + "content": "P r \\{ \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } \\} \\geq 1 - \\delta / K _ { 0 } .", + "type": "interline_equation", + "image_path": "0aadfd3a3d67afea7174dde94c4e59b87792f85f47f57d09eb4924bbfb771bad.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 203, + 718, + 397, + 734 + ], + "spans": [], + "index": 35 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 103, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 148, + 97 + ], + "score": 1.0, + "content": "by taking √", + "type": "text" + }, + { + "bbox": [ + 148, + 82, + 192, + 94 + ], + "score": 0.89, + "content": "t = \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 79, + 196, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 196, + 82, + 322, + 95 + ], + "score": 0.52, + "content": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 79, + 326, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 81, + 459, + 95 + ], + "score": 0.8, + "content": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 79, + 481, + 97 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 482, + 83, + 505, + 95 + ], + "score": 0.83, + "content": "p _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 165, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 160, + 107 + ], + "score": 0.9, + "content": "L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 92, + 165, + 108 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 310, + 124 + ], + "score": 1.0, + "content": "Option I: The proof is similar to the one of Option", + "type": "text" + }, + { + "bbox": [ + 310, + 111, + 318, + 121 + ], + "score": 0.42, + "content": "\\mathrm { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 111, + 408, + 124 + ], + "score": 1.0, + "content": "except that we replace", + "type": "text" + }, + { + "bbox": [ + 409, + 111, + 423, + 124 + ], + "score": 0.91, + "content": "\\mathbf { B } _ { i } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "with zero matrix. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 306, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 306, + 135 + ], + "score": 1.0, + "content": "such case, the matrix Azuma’s Inequality implies", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 138, + 492, + 171 + ], + "lines": [ + { + "bbox": [ + 118, + 138, + 492, + 171 + ], + "spans": [ + { + "bbox": [ + 118, + 138, + 492, + 171 + ], + "score": 0.94, + "content": "P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( \\mathbf x ^ { k } ) \\| \\geq t \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} .", + "type": "interline_equation", + "image_path": "5105acae8fe1efbc1894a40154a10678befebbbcf1d7c774d44a663b7a40f1b8.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 118, + 138, + 492, + 149.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 118, + 149.0, + 492, + 160.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 160.0, + 492, + 171.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 451, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 452, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 168, + 191 + ], + "score": 1.0, + "content": "Thus by taking", + "type": "text" + }, + { + "bbox": [ + 168, + 176, + 210, + 189 + ], + "score": 0.89, + "content": "t = \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 175, + 214, + 191 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 214, + 176, + 312, + 190 + ], + "score": 0.88, + "content": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 175, + 332, + 191 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 333, + 176, + 371, + 189 + ], + "score": 0.93, + "content": "p _ { 2 } = { \\sqrt { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 175, + 452, + 191 + ], + "score": 1.0, + "content": ", we have the result.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 419, + 208 + ], + "score": 1.0, + "content": "Amortized Complexity: In option I, the choice of parameters ensures that:", + "type": "text" + }, + { + "bbox": [ + 419, + 194, + 475, + 206 + ], + "score": 0.92, + "content": "s _ { 2 } ^ { \\prime } \\leq p _ { 2 } \\times s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 192, + 506, + 208 + ], + "score": 1.0, + "content": "and in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 147, + 218 + ], + "score": 1.0, + "content": "option II:", + "type": "text" + }, + { + "bbox": [ + 147, + 206, + 199, + 216 + ], + "score": 0.9, + "content": "n \\leq p _ { 2 } \\times s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 204, + 506, + 218 + ], + "score": 1.0, + "content": ". Consequently, the amortized stochastic second-order oracle complexity is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 213, + 504, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 204, + 229 + ], + "score": 1.0, + "content": "bounded from above by", + "type": "text" + }, + { + "bbox": [ + 204, + 217, + 219, + 227 + ], + "score": 0.87, + "content": "2 s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 213, + 224, + 229 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 217, + 504, + 226 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 240, + 229, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 230, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 230, + 254 + ], + "score": 1.0, + "content": "B.3 PROOF OF LEMMA 4.2", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 299, + 274 + ], + "score": 1.0, + "content": "Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 300, + 262, + 348, + 273 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 260, + 479, + 274 + ], + "score": 1.0, + "content": "for ease of notation. Define for", + "type": "text" + }, + { + "bbox": [ + 479, + 262, + 505, + 272 + ], + "score": 0.88, + "content": "k \\geq 1", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 270, + 155, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 123, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 272, + 155, + 285 + ], + "score": 0.91, + "content": "i \\in [ s _ { 1 } ]", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 283, + 423, + 300 + ], + "lines": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "spans": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { i } ^ { k } \\overset { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - ( \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) ) .", + "type": "interline_equation", + "image_path": "9e3fb8e7847a8fe361829154850844ae45dd30a0d6fe4819f9ed0712e27fd699.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 333, + 314 + ], + "lines": [ + { + "bbox": [ + 107, + 301, + 332, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 302, + 128, + 315 + ], + "score": 0.92, + "content": "\\{ \\mathbf { a } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 301, + 302, + 316 + ], + "score": 1.0, + "content": "is a martingale difference sequence: for all", + "type": "text" + }, + { + "bbox": [ + 302, + 303, + 309, + 312 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 301, + 327, + 316 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 303, + 332, + 312 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 319, + 335, + 334 + ], + "lines": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "spans": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { a } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "f93eff03b18062bc0b677ebdaf30d4cae89642076fbd0c72a353abd16cb8e347.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 234, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 234, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 142, + 353 + ], + "score": 1.0, + "content": "Besides,", + "type": "text" + }, + { + "bbox": [ + 142, + 339, + 154, + 352 + ], + "score": 0.9, + "content": "\\mathbf { a } _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 338, + 234, + 353 + ], + "score": 1.0, + "content": "has bounded norm:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 356, + 425, + 407 + ], + "lines": [ + { + "bbox": [ + 186, + 356, + 425, + 407 + ], + "spans": [ + { + "bbox": [ + 186, + 356, + 425, + 407 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { a } _ { i } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad \\leq L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| + L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\qquad \\leq 2 L _ { 1 } \\sqrt { \\epsilon / L _ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "f715a3de97eec7becc8c9300e7ae24b987d9d93081cc43e8995f128f1b3ee07a.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 186, + 356, + 425, + 373.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 186, + 373.0, + 425, + 390.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 186, + 390.0, + 425, + 407.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 258, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 259, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 208, + 425 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 412, + 219, + 424 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 411, + 259, + 425 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 429, + 366, + 465 + ], + "lines": [ + { + "bbox": [ + 244, + 429, + 366, + 465 + ], + "spans": [ + { + "bbox": [ + 244, + 429, + 366, + 465 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { a } _ { i } ^ { j } } { s _ { 1 } } .", + "type": "interline_equation", + "image_path": "48297e473473875c7e965a5d0d8eb7481ba2dd03849ae39f01c631ccaa95e91f.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 429, + 366, + 447.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 244, + 447.0, + 366, + 465.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 327, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 327, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 258, + 484 + ], + "score": 1.0, + "content": "Recall the Azuma’s Inequality. Using", + "type": "text" + }, + { + "bbox": [ + 259, + 470, + 288, + 482 + ], + "score": 0.91, + "content": "k \\leq p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 468, + 327, + 484 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 486, + 422, + 537 + ], + "lines": [ + { + "bbox": [ + 188, + 486, + 422, + 537 + ], + "spans": [ + { + "bbox": [ + 188, + 486, + 422, + 537 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 \\epsilon L _ { 1 } ^ { 2 } } { L _ { 2 } s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon L _ { 1 } ^ { 2 } p _ { 1 } / \\left( s _ { 1 } L _ { 2 } \\right) } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "6610708d9395a9ff6faf13517d35ce1d336cce3c78fa09f4c5fae8c8b605b99a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 188, + 486, + 422, + 503.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 503.0, + 422, + 520.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 188, + 520.0, + 422, + 537.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 309, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 309, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 127, + 554 + ], + "score": 1.0, + "content": "Take", + "type": "text" + }, + { + "bbox": [ + 128, + 542, + 160, + 554 + ], + "score": 0.93, + "content": "t = \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 542, + 207, + 554 + ], + "score": 1.0, + "content": "and denote", + "type": "text" + }, + { + "bbox": [ + 207, + 543, + 246, + 552 + ], + "score": 0.89, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 542, + 309, + 554 + ], + "score": 1.0, + "content": ". To ensure that", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 559, + 384, + 575 + ], + "lines": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "spans": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "score": 0.91, + "content": "\\begin{array} { r } { P r \\{ \\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\ge \\epsilon / 6 \\} \\le \\delta / K _ { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "219e48ab6211306275bfa208f98d7c0bf6a9540fcfc0b9811d58976c5755b7a1.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 504, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 145, + 595 + ], + "score": 1.0, + "content": "we need", + "type": "text" + }, + { + "bbox": [ + 145, + 580, + 220, + 598 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\ \\leq \\ \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 578, + 506, + 599 + ], + "score": 1.0, + "content": ". The best amortized stochastic first-order oracle complexity can be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 371, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 371, + 610 + ], + "score": 1.0, + "content": "obtained by solving the following two-dimensional programming:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 612, + 373, + 662 + ], + "lines": [ + { + "bbox": [ + 237, + 612, + 373, + 662 + ], + "spans": [ + { + "bbox": [ + 237, + 612, + 373, + 662 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\underset { p _ { 1 } \\geq 1 , s _ { 1 } \\geq 1 } { \\operatorname* { m i n } } } & { ( n + s _ { 1 } ( p _ { 1 } - 1 ) ) / p _ { 1 } } \\\\ { s . t . } & { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\leq \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "cee4f3f149c9fea3c2a8a24b315552645ff0586f655c92f8c97cc53095e0de72.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 612, + 373, + 637.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 237, + 637.0, + 373, + 662.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 506, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 666, + 508, + 708 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 181, + 708 + ], + "score": 1.0, + "content": "which has the soluthat when we take", + "type": "text" + }, + { + "bbox": [ + 200, + 666, + 326, + 693 + ], + "score": 0.94, + "content": "\\begin{array} { r } { s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { \\frac { n } { \\epsilon } \\cdot \\frac { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } { L _ { 2 } } } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 673, + 478, + 693 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon \\cdot \\frac { L _ { 2 } } { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } } \\rbrace } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 669, + 508, + 708 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 181, + 692, + 358, + 705 + ], + "spans": [ + { + "bbox": [ + 181, + 695, + 210, + 704 + ], + "score": 0.87, + "content": "s _ { 1 } = n", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 692, + 358, + 705 + ], + "score": 0.93, + "content": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 477, + 722 + ], + "score": 1.0, + "content": "The amortized stochastic first-order oracle complexity is obtained by plugging in the choice of", + "type": "text" + }, + { + "bbox": [ + 477, + 711, + 487, + 721 + ], + "score": 0.84, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 232, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 117, + 732 + ], + "score": 0.84, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 720, + 232, + 733 + ], + "score": 1.0, + "content": ", which completes the proof.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 103, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 148, + 97 + ], + "score": 1.0, + "content": "by taking √", + "type": "text" + }, + { + "bbox": [ + 148, + 82, + 192, + 94 + ], + "score": 0.89, + "content": "t = \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 79, + 196, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 196, + 82, + 322, + 95 + ], + "score": 0.52, + "content": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 79, + 326, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 81, + 459, + 95 + ], + "score": 0.8, + "content": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 79, + 481, + 97 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 482, + 83, + 505, + 95 + ], + "score": 0.83, + "content": "p _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 165, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 160, + 107 + ], + "score": 0.9, + "content": "L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 92, + 165, + 108 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 79, + 505, + 108 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 310, + 124 + ], + "score": 1.0, + "content": "Option I: The proof is similar to the one of Option", + "type": "text" + }, + { + "bbox": [ + 310, + 111, + 318, + 121 + ], + "score": 0.42, + "content": "\\mathrm { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 111, + 408, + 124 + ], + "score": 1.0, + "content": "except that we replace", + "type": "text" + }, + { + "bbox": [ + 409, + 111, + 423, + 124 + ], + "score": 0.91, + "content": "\\mathbf { B } _ { i } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "with zero matrix. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 306, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 306, + 135 + ], + "score": 1.0, + "content": "such case, the matrix Azuma’s Inequality implies", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 138, + 492, + 171 + ], + "lines": [ + { + "bbox": [ + 118, + 138, + 492, + 171 + ], + "spans": [ + { + "bbox": [ + 118, + 138, + 492, + 171 + ], + "score": 0.94, + "content": "P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( \\mathbf x ^ { k } ) \\| \\geq t \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} .", + "type": "interline_equation", + "image_path": "5105acae8fe1efbc1894a40154a10678befebbbcf1d7c774d44a663b7a40f1b8.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 118, + 138, + 492, + 149.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 118, + 149.0, + 492, + 160.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 160.0, + 492, + 171.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 451, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 452, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 168, + 191 + ], + "score": 1.0, + "content": "Thus by taking", + "type": "text" + }, + { + "bbox": [ + 168, + 176, + 210, + 189 + ], + "score": 0.89, + "content": "t = \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 175, + 214, + 191 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 214, + 176, + 312, + 190 + ], + "score": 0.88, + "content": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 175, + 332, + 191 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 333, + 176, + 371, + 189 + ], + "score": 0.93, + "content": "p _ { 2 } = { \\sqrt { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 175, + 452, + 191 + ], + "score": 1.0, + "content": ", we have the result.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 175, + 452, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 419, + 208 + ], + "score": 1.0, + "content": "Amortized Complexity: In option I, the choice of parameters ensures that:", + "type": "text" + }, + { + "bbox": [ + 419, + 194, + 475, + 206 + ], + "score": 0.92, + "content": "s _ { 2 } ^ { \\prime } \\leq p _ { 2 } \\times s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 192, + 506, + 208 + ], + "score": 1.0, + "content": "and in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 147, + 218 + ], + "score": 1.0, + "content": "option II:", + "type": "text" + }, + { + "bbox": [ + 147, + 206, + 199, + 216 + ], + "score": 0.9, + "content": "n \\leq p _ { 2 } \\times s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 204, + 506, + 218 + ], + "score": 1.0, + "content": ". Consequently, the amortized stochastic second-order oracle complexity is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 213, + 504, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 204, + 229 + ], + "score": 1.0, + "content": "bounded from above by", + "type": "text" + }, + { + "bbox": [ + 204, + 217, + 219, + 227 + ], + "score": 0.87, + "content": "2 s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 213, + 224, + 229 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 217, + 504, + 226 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 192, + 506, + 229 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 240, + 229, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 230, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 230, + 254 + ], + "score": 1.0, + "content": "B.3 PROOF OF LEMMA 4.2", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 299, + 274 + ], + "score": 1.0, + "content": "Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 300, + 262, + 348, + 273 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 260, + 479, + 274 + ], + "score": 1.0, + "content": "for ease of notation. Define for", + "type": "text" + }, + { + "bbox": [ + 479, + 262, + 505, + 272 + ], + "score": 0.88, + "content": "k \\geq 1", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 270, + 155, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 123, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 272, + 155, + 285 + ], + "score": 0.91, + "content": "i \\in [ s _ { 1 } ]", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 260, + 505, + 286 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 283, + 423, + 300 + ], + "lines": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "spans": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { i } ^ { k } \\overset { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - ( \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) ) .", + "type": "interline_equation", + "image_path": "9e3fb8e7847a8fe361829154850844ae45dd30a0d6fe4819f9ed0712e27fd699.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 283, + 423, + 300 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 333, + 314 + ], + "lines": [ + { + "bbox": [ + 107, + 301, + 332, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 302, + 128, + 315 + ], + "score": 0.92, + "content": "\\{ \\mathbf { a } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 301, + 302, + 316 + ], + "score": 1.0, + "content": "is a martingale difference sequence: for all", + "type": "text" + }, + { + "bbox": [ + 302, + 303, + 309, + 312 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 301, + 327, + 316 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 303, + 332, + 312 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 107, + 301, + 332, + 316 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 319, + 335, + 334 + ], + "lines": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "spans": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { a } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "f93eff03b18062bc0b677ebdaf30d4cae89642076fbd0c72a353abd16cb8e347.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 275, + 319, + 335, + 334 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 234, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 234, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 142, + 353 + ], + "score": 1.0, + "content": "Besides,", + "type": "text" + }, + { + "bbox": [ + 142, + 339, + 154, + 352 + ], + "score": 0.9, + "content": "\\mathbf { a } _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 338, + 234, + 353 + ], + "score": 1.0, + "content": "has bounded norm:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 338, + 234, + 353 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 356, + 425, + 407 + ], + "lines": [ + { + "bbox": [ + 186, + 356, + 425, + 407 + ], + "spans": [ + { + "bbox": [ + 186, + 356, + 425, + 407 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { a } _ { i } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad \\leq L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| + L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\qquad \\leq 2 L _ { 1 } \\sqrt { \\epsilon / L _ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "f715a3de97eec7becc8c9300e7ae24b987d9d93081cc43e8995f128f1b3ee07a.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 186, + 356, + 425, + 373.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 186, + 373.0, + 425, + 390.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 186, + 390.0, + 425, + 407.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 258, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 259, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 208, + 425 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 412, + 219, + 424 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 411, + 259, + 425 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 411, + 259, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 429, + 366, + 465 + ], + "lines": [ + { + "bbox": [ + 244, + 429, + 366, + 465 + ], + "spans": [ + { + "bbox": [ + 244, + 429, + 366, + 465 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { a } _ { i } ^ { j } } { s _ { 1 } } .", + "type": "interline_equation", + "image_path": "48297e473473875c7e965a5d0d8eb7481ba2dd03849ae39f01c631ccaa95e91f.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 429, + 366, + 447.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 244, + 447.0, + 366, + 465.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 327, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 327, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 258, + 484 + ], + "score": 1.0, + "content": "Recall the Azuma’s Inequality. Using", + "type": "text" + }, + { + "bbox": [ + 259, + 470, + 288, + 482 + ], + "score": 0.91, + "content": "k \\leq p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 468, + 327, + 484 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 468, + 327, + 484 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 486, + 422, + 537 + ], + "lines": [ + { + "bbox": [ + 188, + 486, + 422, + 537 + ], + "spans": [ + { + "bbox": [ + 188, + 486, + 422, + 537 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 \\epsilon L _ { 1 } ^ { 2 } } { L _ { 2 } s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon L _ { 1 } ^ { 2 } p _ { 1 } / \\left( s _ { 1 } L _ { 2 } \\right) } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "6610708d9395a9ff6faf13517d35ce1d336cce3c78fa09f4c5fae8c8b605b99a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 188, + 486, + 422, + 503.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 503.0, + 422, + 520.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 188, + 520.0, + 422, + 537.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 309, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 309, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 127, + 554 + ], + "score": 1.0, + "content": "Take", + "type": "text" + }, + { + "bbox": [ + 128, + 542, + 160, + 554 + ], + "score": 0.93, + "content": "t = \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 542, + 207, + 554 + ], + "score": 1.0, + "content": "and denote", + "type": "text" + }, + { + "bbox": [ + 207, + 543, + 246, + 552 + ], + "score": 0.89, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 542, + 309, + 554 + ], + "score": 1.0, + "content": ". To ensure that", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 542, + 309, + 554 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 559, + 384, + 575 + ], + "lines": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "spans": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "score": 0.91, + "content": "\\begin{array} { r } { P r \\{ \\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\ge \\epsilon / 6 \\} \\le \\delta / K _ { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "219e48ab6211306275bfa208f98d7c0bf6a9540fcfc0b9811d58976c5755b7a1.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 226, + 559, + 384, + 575 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 504, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 145, + 595 + ], + "score": 1.0, + "content": "we need", + "type": "text" + }, + { + "bbox": [ + 145, + 580, + 220, + 598 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\ \\leq \\ \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 578, + 506, + 599 + ], + "score": 1.0, + "content": ". The best amortized stochastic first-order oracle complexity can be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 371, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 371, + 610 + ], + "score": 1.0, + "content": "obtained by solving the following two-dimensional programming:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 578, + 506, + 610 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 612, + 373, + 662 + ], + "lines": [ + { + "bbox": [ + 237, + 612, + 373, + 662 + ], + "spans": [ + { + "bbox": [ + 237, + 612, + 373, + 662 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\underset { p _ { 1 } \\geq 1 , s _ { 1 } \\geq 1 } { \\operatorname* { m i n } } } & { ( n + s _ { 1 } ( p _ { 1 } - 1 ) ) / p _ { 1 } } \\\\ { s . t . } & { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\leq \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "cee4f3f149c9fea3c2a8a24b315552645ff0586f655c92f8c97cc53095e0de72.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 612, + 373, + 637.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 237, + 637.0, + 373, + 662.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 506, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 666, + 508, + 708 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 181, + 708 + ], + "score": 1.0, + "content": "which has the soluthat when we take", + "type": "text" + }, + { + "bbox": [ + 200, + 666, + 326, + 693 + ], + "score": 0.94, + "content": "\\begin{array} { r } { s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { \\frac { n } { \\epsilon } \\cdot \\frac { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } { L _ { 2 } } } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 673, + 478, + 693 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon \\cdot \\frac { L _ { 2 } } { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } } \\rbrace } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 669, + 508, + 708 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 181, + 692, + 358, + 705 + ], + "spans": [ + { + "bbox": [ + 181, + 695, + 210, + 704 + ], + "score": 0.87, + "content": "s _ { 1 } = n", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 692, + 358, + 705 + ], + "score": 0.93, + "content": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 666, + 508, + 708 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 477, + 722 + ], + "score": 1.0, + "content": "The amortized stochastic first-order oracle complexity is obtained by plugging in the choice of", + "type": "text" + }, + { + "bbox": [ + 477, + 711, + 487, + 721 + ], + "score": 0.84, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 232, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 117, + 732 + ], + "score": 0.84, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 720, + 232, + 733 + ], + "score": 1.0, + "content": ", which completes the proof.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 229, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 229, + 95 + ], + "score": 1.0, + "content": "B.4 PROOF OF LEMMA 5.1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 300, + 116 + ], + "score": 1.0, + "content": "Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 300, + 103, + 348, + 114 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 101, + 479, + 116 + ], + "score": 1.0, + "content": "for ease of notation. Define for", + "type": "text" + }, + { + "bbox": [ + 479, + 103, + 505, + 114 + ], + "score": 0.88, + "content": "k \\geq 1", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 155, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 123, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 114, + 155, + 126 + ], + "score": 0.91, + "content": "i \\in [ s _ { 1 } ]", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 124, + 425, + 159 + ], + "lines": [ + { + "bbox": [ + 185, + 124, + 425, + 159 + ], + "spans": [ + { + "bbox": [ + 185, + 124, + 425, + 159 + ], + "score": 0.83, + "content": "\\begin{array} { r l } { \\mathbf { b } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) } & { } \\\\ { - \\left[ \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\right] . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "e52ebd66685c9729a0c3e478a34d1f0d5d56f5fedb103736c94d30b06dbe61d0.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 124, + 425, + 141.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 185, + 141.5, + 425, + 159.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 159, + 333, + 171 + ], + "lines": [ + { + "bbox": [ + 107, + 158, + 333, + 173 + ], + "spans": [ + { + "bbox": [ + 107, + 159, + 129, + 172 + ], + "score": 0.91, + "content": "\\{ \\mathbf { b } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 158, + 303, + 173 + ], + "score": 1.0, + "content": "is a martingale difference sequence: for all", + "type": "text" + }, + { + "bbox": [ + 303, + 160, + 310, + 169 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 158, + 327, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 160, + 333, + 169 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 173, + 335, + 187 + ], + "lines": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "spans": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { b } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "f660f0e6f977b918184ec2c064d86ac6b34604eab53e949ab1a4d4fe716f9881.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 188, + 234, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 235, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 142, + 202 + ], + "score": 1.0, + "content": "Besides,", + "type": "text" + }, + { + "bbox": [ + 142, + 188, + 155, + 201 + ], + "score": 0.9, + "content": "\\mathbf { b } _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 187, + 235, + 202 + ], + "score": 1.0, + "content": "has bounded norm:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 107, + 202, + 448, + 369 + ], + "lines": [ + { + "bbox": [ + 159, + 203, + 448, + 369 + ], + "spans": [ + { + "bbox": [ + 159, + 203, + 448, + 369 + ], + "score": 0.67, + "content": "\\begin{array} { r l } & { \\quad \\| \\mathbf { b } _ { \\star } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { 1 } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| . } \\\\ & { \\quad + \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { \\widetilde { \\mathbf { x } } } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } , } \\\\ & { \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { j } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } } \\\\ & { \\quad = \\| \\int _ { 0 } ^ { 1 } \\left[ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } + t ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) \\right] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) d t \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } L _ { 2 } \\bigg \\| \\mathbf { x } ^ { k } + ( 1 - t ) \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\bigg \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\| + ( 1 - t ) \\| \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\big \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\end{array}", + "type": "interline_equation", + "image_path": "07dcf33b984b0e393b017fb1bdbd957b6bc029cdd60d7705e31f39932eefb42d.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 202, + 448, + 257.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 257.6666666666667, + 448, + 313.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 313.33333333333337, + 448, + 369.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 477, + 381 + ], + "score": 1.0, + "content": "where the first inequality follows from Assumption 2.3 and the last inequality holds because", + "type": "text" + }, + { + "bbox": [ + 477, + 369, + 505, + 381 + ], + "score": 0.85, + "content": "\\| \\mathbf { x } ^ { k } - ", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 378, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 142, + 392 + ], + "score": 0.89, + "content": "\\tilde { \\mathbf { x } } \\| \\leq k r", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 378, + 161, + 394 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 380, + 235, + 392 + ], + "score": 0.89, + "content": "\\| \\mathbf { x } ^ { k - 1 } - \\bar { \\tilde { \\mathbf { x } } } \\| \\leq k r", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 378, + 265, + 394 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 266, + 383, + 272, + 390 + ], + "score": 0.76, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 378, + 453, + 394 + ], + "score": 1.0, + "content": "is the trust region radius. Similarly, we have", + "type": "text" + }, + { + "bbox": [ + 453, + 381, + 505, + 393 + ], + "score": 0.88, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { k } ) -", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 390, + 367, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 295, + 404 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\nabla F ( { \\mathbf x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { { \\mathbf x } } ) ( \\dot { \\mathbf x } ^ { k } - { \\mathbf x } ^ { k - 1 } ) \\| \\leq L _ { 2 } k r ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 390, + 367, + 405 + ], + "score": 1.0, + "content": ". Thus, we bound", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 405, + 356, + 420 + ], + "lines": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "spans": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "score": 0.9, + "content": "\\| \\mathbf { b } _ { i } ^ { k } \\| \\leq 2 L _ { 2 } k r ^ { 2 } \\leq 2 p _ { 1 } \\epsilon", + "type": "interline_equation", + "image_path": "181c05d64df01cda8dc29b06a074116dec1fc8866c54aaa09648aedfa82ae906.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 258, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 259, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 208, + 434 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 421, + 219, + 433 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 420, + 259, + 434 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 434, + 366, + 469 + ], + "lines": [ + { + "bbox": [ + 244, + 434, + 366, + 469 + ], + "spans": [ + { + "bbox": [ + 244, + 434, + 366, + 469 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { b } _ { i } ^ { j } } { s _ { 1 } } .", + "type": "interline_equation", + "image_path": "0d859d459e644d295ac6fee6bd28d3a95a5f459bca8bfbe286fb71b07ab7df7f.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 434, + 366, + 451.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 244, + 451.5, + 366, + 469.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 470, + 318, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 318, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 137, + 484 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 137, + 471, + 167, + 482 + ], + "score": 0.92, + "content": "k \\leq p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 469, + 318, + 484 + ], + "score": 1.0, + "content": "and the Azuma’s inequality to bound", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 483, + 410, + 533 + ], + "lines": [ + { + "bbox": [ + 200, + 483, + 410, + 533 + ], + "spans": [ + { + "bbox": [ + 200, + 483, + 410, + 533 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( { \\mathbf { x } } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 p _ { 1 } ^ { 2 } \\epsilon ^ { 2 } } { s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon ^ { 2 } p _ { 1 } ^ { 3 } / s _ { 1 } } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "b5064eab451bb9795910961730cc6cfd5f285422035967e6fc64ebe9dce20a50.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 200, + 483, + 410, + 499.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 200, + 499.6666666666667, + 410, + 516.3333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 200, + 516.3333333333334, + 410, + 533.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 507, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 174, + 550 + ], + "score": 1.0, + "content": "Thus, by taking", + "type": "text" + }, + { + "bbox": [ + 174, + 536, + 208, + 549 + ], + "score": 0.92, + "content": "t = \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 532, + 227, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 537, + 269, + 547 + ], + "score": 0.86, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 532, + 311, + 550 + ], + "score": 1.0, + "content": ", we need", + "type": "text" + }, + { + "bbox": [ + 311, + 535, + 370, + 551 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { s _ { 1 } } { p _ { 1 } ^ { 3 } } \\geq c \\log \\frac { K _ { 0 } } { \\delta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 532, + 448, + 550 + ], + "score": 1.0, + "content": ". Further we want", + "type": "text" + }, + { + "bbox": [ + 448, + 536, + 505, + 549 + ], + "score": 0.92, + "content": "s _ { 1 } p _ { 1 } \\simeq \\mathcal { O } ( n )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 546, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 183, + 568 + ], + "score": 1.0, + "content": "and hence we take", + "type": "text" + }, + { + "bbox": [ + 184, + 551, + 228, + 564 + ], + "score": 0.9, + "content": "p _ { 1 } = n ^ { 0 . 2 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 546, + 247, + 568 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 248, + 550, + 325, + 565 + ], + "score": 0.91, + "content": "\\begin{array} { r } { s _ { 1 } = n ^ { 0 . 7 5 } c \\log { \\frac { \\dot { K _ { 0 } } } { \\delta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 546, + 506, + 568 + ], + "score": 1.0, + "content": ". The amortized stochastic first-order oracle", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 563, + 231, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 212, + 576 + ], + "score": 1.0, + "content": "complexity is bounded by", + "type": "text" + }, + { + "bbox": [ + 212, + 564, + 227, + 574 + ], + "score": 0.87, + "content": "2 s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 563, + 231, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 106, + 590, + 305, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 306, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 306, + 604 + ], + "score": 1.0, + "content": "C ANALYSIS OF METAALGORITHM 7", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 232, + 627 + ], + "score": 1.0, + "content": "We first show that INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 233, + 615, + 252, + 626 + ], + "score": 0.65, + "content": "\\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 613, + 287, + 627 + ], + "score": 1.0, + "content": "finds an", + "type": "text" + }, + { + "bbox": [ + 287, + 614, + 308, + 626 + ], + "score": 0.88, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 613, + 347, + 627 + ], + "score": 1.0, + "content": "-SOSP in", + "type": "text" + }, + { + "bbox": [ + 347, + 614, + 388, + 626 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "iterations with probability at", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 625, + 278, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 127, + 638 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 625, + 144, + 637 + ], + "score": 0.52, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 625, + 278, + 638 + ], + "score": 1.0, + "content": "as stated in the following lemma.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 506, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 237, + 652 + ], + "score": 1.0, + "content": "Lemma C.1. Consider problem", + "type": "text" + }, + { + "bbox": [ + 237, + 639, + 250, + 650 + ], + "score": 0.33, + "content": "( ~ )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 637, + 506, + 652 + ], + "score": 1.0, + "content": "under Assumptions 2.1-2.3. Suppose that the differential estima-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 648, + 507, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 124, + 667 + ], + "score": 1.0, + "content": "tors", + "type": "text" + }, + { + "bbox": [ + 125, + 650, + 137, + 663 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 648, + 155, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 156, + 650, + 171, + 661 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 648, + 336, + 667 + ], + "score": 1.0, + "content": "satisfy Eqn. (9) with probability at least", + "type": "text" + }, + { + "bbox": [ + 336, + 650, + 375, + 664 + ], + "score": 0.92, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 648, + 469, + 667 + ], + "score": 1.0, + "content": ". Besides, suppose that", + "type": "text" + }, + { + "bbox": [ + 470, + 650, + 482, + 661 + ], + "score": 0.87, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 648, + 507, + 667 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 663, + 318, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 275, + 680 + ], + "score": 1.0, + "content": "approximate solution to (8) such that w.p.", + "type": "text" + }, + { + "bbox": [ + 276, + 663, + 313, + 678 + ], + "score": 0.91, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 663, + 318, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 679, + 434, + 705 + ], + "lines": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "spans": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\tilde { \\mathbf { h } } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle \\leq \\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "2c16ec5c53bf827dae529153d298ea592a3a6e2d9f69bce18185bac35265930a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 708, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 133, + 723 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 709, + 147, + 720 + ], + "score": 0.86, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 707, + 307, + 723 + ], + "score": 1.0, + "content": "is a global solution to (8). By setting", + "type": "text" + }, + { + "bbox": [ + 307, + 709, + 344, + 721 + ], + "score": 0.8, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 707, + 348, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 349, + 708, + 401, + 722 + ], + "score": 0.87, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 707, + 424, + 723 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 424, + 708, + 502, + 722 + ], + "score": 0.91, + "content": "K = 4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 707, + 506, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 719, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 159, + 733 + ], + "score": 1.0, + "content": "INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 159, + 721, + 179, + 732 + ], + "score": 0.3, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 719, + 317, + 733 + ], + "score": 1.0, + "content": "outputs a 500\u000f-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 318, + 721, + 333, + 732 + ], + "score": 0.72, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 719, + 338, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 229, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 229, + 95 + ], + "score": 1.0, + "content": "B.4 PROOF OF LEMMA 5.1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 300, + 116 + ], + "score": 1.0, + "content": "Without loss of generality, we analyze the case", + "type": "text" + }, + { + "bbox": [ + 300, + 103, + 348, + 114 + ], + "score": 0.92, + "content": "0 \\leq k < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 101, + 479, + 116 + ], + "score": 1.0, + "content": "for ease of notation. Define for", + "type": "text" + }, + { + "bbox": [ + 479, + 103, + 505, + 114 + ], + "score": 0.88, + "content": "k \\geq 1", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 155, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 123, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 114, + 155, + 126 + ], + "score": 0.91, + "content": "i \\in [ s _ { 1 } ]", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 101, + 505, + 128 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 124, + 425, + 159 + ], + "lines": [ + { + "bbox": [ + 185, + 124, + 425, + 159 + ], + "spans": [ + { + "bbox": [ + 185, + 124, + 425, + 159 + ], + "score": 0.83, + "content": "\\begin{array} { r l } { \\mathbf { b } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) } & { } \\\\ { - \\left[ \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\right] . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "e52ebd66685c9729a0c3e478a34d1f0d5d56f5fedb103736c94d30b06dbe61d0.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 124, + 425, + 141.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 185, + 141.5, + 425, + 159.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 159, + 333, + 171 + ], + "lines": [ + { + "bbox": [ + 107, + 158, + 333, + 173 + ], + "spans": [ + { + "bbox": [ + 107, + 159, + 129, + 172 + ], + "score": 0.91, + "content": "\\{ \\mathbf { b } _ { i } ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 158, + 303, + 173 + ], + "score": 1.0, + "content": "is a martingale difference sequence: for all", + "type": "text" + }, + { + "bbox": [ + 303, + 160, + 310, + 169 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 158, + 327, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 160, + 333, + 169 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 107, + 158, + 333, + 173 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 173, + 335, + 187 + ], + "lines": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "spans": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\mathbf { b } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 .", + "type": "interline_equation", + "image_path": "f660f0e6f977b918184ec2c064d86ac6b34604eab53e949ab1a4d4fe716f9881.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 275, + 173, + 335, + 187 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 188, + 234, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 235, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 142, + 202 + ], + "score": 1.0, + "content": "Besides,", + "type": "text" + }, + { + "bbox": [ + 142, + 188, + 155, + 201 + ], + "score": 0.9, + "content": "\\mathbf { b } _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 187, + 235, + 202 + ], + "score": 1.0, + "content": "has bounded norm:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 187, + 235, + 202 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 107, + 202, + 448, + 369 + ], + "lines": [ + { + "bbox": [ + 159, + 203, + 448, + 369 + ], + "spans": [ + { + "bbox": [ + 159, + 203, + 448, + 369 + ], + "score": 0.67, + "content": "\\begin{array} { r l } & { \\quad \\| \\mathbf { b } _ { \\star } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { 1 } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| . } \\\\ & { \\quad + \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { \\widetilde { \\mathbf { x } } } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } , } \\\\ & { \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { j } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } } \\\\ & { \\quad = \\| \\int _ { 0 } ^ { 1 } \\left[ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } + t ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) \\right] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) d t \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } L _ { 2 } \\bigg \\| \\mathbf { x } ^ { k } + ( 1 - t ) \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\bigg \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\| + ( 1 - t ) \\| \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\big \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\end{array}", + "type": "interline_equation", + "image_path": "07dcf33b984b0e393b017fb1bdbd957b6bc029cdd60d7705e31f39932eefb42d.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 202, + 448, + 257.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 257.6666666666667, + 448, + 313.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 313.33333333333337, + 448, + 369.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 477, + 381 + ], + "score": 1.0, + "content": "where the first inequality follows from Assumption 2.3 and the last inequality holds because", + "type": "text" + }, + { + "bbox": [ + 477, + 369, + 505, + 381 + ], + "score": 0.85, + "content": "\\| \\mathbf { x } ^ { k } - ", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 378, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 142, + 392 + ], + "score": 0.89, + "content": "\\tilde { \\mathbf { x } } \\| \\leq k r", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 378, + 161, + 394 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 380, + 235, + 392 + ], + "score": 0.89, + "content": "\\| \\mathbf { x } ^ { k - 1 } - \\bar { \\tilde { \\mathbf { x } } } \\| \\leq k r", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 378, + 265, + 394 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 266, + 383, + 272, + 390 + ], + "score": 0.76, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 378, + 453, + 394 + ], + "score": 1.0, + "content": "is the trust region radius. Similarly, we have", + "type": "text" + }, + { + "bbox": [ + 453, + 381, + 505, + 393 + ], + "score": 0.88, + "content": "\\| \\nabla F ( \\mathbf { x } ^ { k } ) -", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 390, + 367, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 295, + 404 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\nabla F ( { \\mathbf x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { { \\mathbf x } } ) ( \\dot { \\mathbf x } ^ { k } - { \\mathbf x } ^ { k - 1 } ) \\| \\leq L _ { 2 } k r ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 390, + 367, + 405 + ], + "score": 1.0, + "content": ". Thus, we bound", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 369, + 505, + 405 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 405, + 356, + 420 + ], + "lines": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "spans": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "score": 0.9, + "content": "\\| \\mathbf { b } _ { i } ^ { k } \\| \\leq 2 L _ { 2 } k r ^ { 2 } \\leq 2 p _ { 1 } \\epsilon", + "type": "interline_equation", + "image_path": "181c05d64df01cda8dc29b06a074116dec1fc8866c54aaa09648aedfa82ae906.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 255, + 405, + 356, + 420 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 258, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 259, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 208, + 434 + ], + "score": 1.0, + "content": "From the construction of", + "type": "text" + }, + { + "bbox": [ + 208, + 421, + 219, + 433 + ], + "score": 0.89, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 420, + 259, + 434 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 420, + 259, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 434, + 366, + 469 + ], + "lines": [ + { + "bbox": [ + 244, + 434, + 366, + 469 + ], + "spans": [ + { + "bbox": [ + 244, + 434, + 366, + 469 + ], + "score": 0.94, + "content": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { b } _ { i } ^ { j } } { s _ { 1 } } .", + "type": "interline_equation", + "image_path": "0d859d459e644d295ac6fee6bd28d3a95a5f459bca8bfbe286fb71b07ab7df7f.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 434, + 366, + 451.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 244, + 451.5, + 366, + 469.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 470, + 318, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 318, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 137, + 484 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 137, + 471, + 167, + 482 + ], + "score": 0.92, + "content": "k \\leq p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 469, + 318, + 484 + ], + "score": 1.0, + "content": "and the Azuma’s inequality to bound", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 469, + 318, + 484 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 483, + 410, + 533 + ], + "lines": [ + { + "bbox": [ + 200, + 483, + 410, + 533 + ], + "spans": [ + { + "bbox": [ + 200, + 483, + 410, + 533 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( { \\mathbf { x } } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 p _ { 1 } ^ { 2 } \\epsilon ^ { 2 } } { s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon ^ { 2 } p _ { 1 } ^ { 3 } / s _ { 1 } } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "b5064eab451bb9795910961730cc6cfd5f285422035967e6fc64ebe9dce20a50.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 200, + 483, + 410, + 499.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 200, + 499.6666666666667, + 410, + 516.3333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 200, + 516.3333333333334, + 410, + 533.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 507, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 174, + 550 + ], + "score": 1.0, + "content": "Thus, by taking", + "type": "text" + }, + { + "bbox": [ + 174, + 536, + 208, + 549 + ], + "score": 0.92, + "content": "t = \\epsilon / 6", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 532, + 227, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 537, + 269, + 547 + ], + "score": 0.86, + "content": "c = 1 1 5 2", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 532, + 311, + 550 + ], + "score": 1.0, + "content": ", we need", + "type": "text" + }, + { + "bbox": [ + 311, + 535, + 370, + 551 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { s _ { 1 } } { p _ { 1 } ^ { 3 } } \\geq c \\log \\frac { K _ { 0 } } { \\delta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 532, + 448, + 550 + ], + "score": 1.0, + "content": ". Further we want", + "type": "text" + }, + { + "bbox": [ + 448, + 536, + 505, + 549 + ], + "score": 0.92, + "content": "s _ { 1 } p _ { 1 } \\simeq \\mathcal { O } ( n )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 546, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 183, + 568 + ], + "score": 1.0, + "content": "and hence we take", + "type": "text" + }, + { + "bbox": [ + 184, + 551, + 228, + 564 + ], + "score": 0.9, + "content": "p _ { 1 } = n ^ { 0 . 2 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 546, + 247, + 568 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 248, + 550, + 325, + 565 + ], + "score": 0.91, + "content": "\\begin{array} { r } { s _ { 1 } = n ^ { 0 . 7 5 } c \\log { \\frac { \\dot { K _ { 0 } } } { \\delta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 546, + 506, + 568 + ], + "score": 1.0, + "content": ". The amortized stochastic first-order oracle", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 563, + 231, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 212, + 576 + ], + "score": 1.0, + "content": "complexity is bounded by", + "type": "text" + }, + { + "bbox": [ + 212, + 564, + 227, + 574 + ], + "score": 0.87, + "content": "2 s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 563, + 231, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 532, + 506, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 590, + 305, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 306, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 306, + 604 + ], + "score": 1.0, + "content": "C ANALYSIS OF METAALGORITHM 7", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 232, + 627 + ], + "score": 1.0, + "content": "We first show that INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 233, + 615, + 252, + 626 + ], + "score": 0.65, + "content": "\\mathbf { W E A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 613, + 287, + 627 + ], + "score": 1.0, + "content": "finds an", + "type": "text" + }, + { + "bbox": [ + 287, + 614, + 308, + 626 + ], + "score": 0.88, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 613, + 347, + 627 + ], + "score": 1.0, + "content": "-SOSP in", + "type": "text" + }, + { + "bbox": [ + 347, + 614, + 388, + 626 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "iterations with probability at", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 625, + 278, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 127, + 638 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 625, + 144, + 637 + ], + "score": 0.52, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 625, + 278, + 638 + ], + "score": 1.0, + "content": "as stated in the following lemma.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 613, + 506, + 638 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 506, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 237, + 652 + ], + "score": 1.0, + "content": "Lemma C.1. Consider problem", + "type": "text" + }, + { + "bbox": [ + 237, + 639, + 250, + 650 + ], + "score": 0.33, + "content": "( ~ )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 637, + 506, + 652 + ], + "score": 1.0, + "content": "under Assumptions 2.1-2.3. Suppose that the differential estima-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 648, + 507, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 124, + 667 + ], + "score": 1.0, + "content": "tors", + "type": "text" + }, + { + "bbox": [ + 125, + 650, + 137, + 663 + ], + "score": 0.88, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 648, + 155, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 156, + 650, + 171, + 661 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 648, + 336, + 667 + ], + "score": 1.0, + "content": "satisfy Eqn. (9) with probability at least", + "type": "text" + }, + { + "bbox": [ + 336, + 650, + 375, + 664 + ], + "score": 0.92, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 648, + 469, + 667 + ], + "score": 1.0, + "content": ". Besides, suppose that", + "type": "text" + }, + { + "bbox": [ + 470, + 650, + 482, + 661 + ], + "score": 0.87, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 648, + 507, + 667 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 663, + 318, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 275, + 680 + ], + "score": 1.0, + "content": "approximate solution to (8) such that w.p.", + "type": "text" + }, + { + "bbox": [ + 276, + 663, + 313, + 678 + ], + "score": 0.91, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 663, + 318, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 637, + 507, + 680 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 679, + 434, + 705 + ], + "lines": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "spans": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\tilde { \\mathbf { h } } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle \\leq \\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "2c16ec5c53bf827dae529153d298ea592a3a6e2d9f69bce18185bac35265930a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 176, + 679, + 434, + 705 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 708, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 133, + 723 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 709, + 147, + 720 + ], + "score": 0.86, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 707, + 307, + 723 + ], + "score": 1.0, + "content": "is a global solution to (8). By setting", + "type": "text" + }, + { + "bbox": [ + 307, + 709, + 344, + 721 + ], + "score": 0.8, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 707, + 348, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 349, + 708, + 401, + 722 + ], + "score": 0.87, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 707, + 424, + 723 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 424, + 708, + 502, + 722 + ], + "score": 0.91, + "content": "K = 4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 707, + 506, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 719, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 159, + 733 + ], + "score": 1.0, + "content": "INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 159, + 721, + 179, + 732 + ], + "score": 0.3, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 719, + 317, + 733 + ], + "score": 1.0, + "content": "outputs a 500\u000f-SOSP w.p. at least", + "type": "text" + }, + { + "bbox": [ + 318, + 721, + 333, + 732 + ], + "score": 0.72, + "content": "2 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 719, + 338, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 707, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 338, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 334, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 295, + 98 + ], + "score": 1.0, + "content": "Proof. Combining (11) and (24), we have w.p.", + "type": "text" + }, + { + "bbox": [ + 296, + 81, + 334, + 96 + ], + "score": 0.91, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 101, + 420, + 155 + ], + "lines": [ + { + "bbox": [ + 190, + 101, + 420, + 155 + ], + "spans": [ + { + "bbox": [ + 190, + 101, + 420, + 155 + ], + "score": 0.94, + "content": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } } \\\\ { + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| + \\displaystyle \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "2f16a65cfa817451421902b5bee412c3789951b3c8f68cdb9bbf2e16f4347e7f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 190, + 101, + 420, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 190, + 119.0, + 420, + 137.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 190, + 137.0, + 420, + 155.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 104, + 159, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 132, + 174 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 160, + 145, + 171 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 159, + 307, + 174 + ], + "score": 1.0, + "content": "is a global solution to the QCQP (8) and", + "type": "text" + }, + { + "bbox": [ + 307, + 159, + 320, + 172 + ], + "score": 0.88, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 159, + 506, + 174 + ], + "score": 1.0, + "content": "is an approximate solution satisfying (24). We", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 119, + 185 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 119, + 172, + 131, + 182 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 171, + 373, + 185 + ], + "score": 1.0, + "content": "denote the dual variable corresponding to the global solution", + "type": "text" + }, + { + "bbox": [ + 373, + 172, + 385, + 182 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "as defined in Lemma 2.1. We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 144, + 196 + ], + "score": 1.0, + "content": "note that", + "type": "text" + }, + { + "bbox": [ + 145, + 182, + 157, + 193 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 181, + 176, + 196 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 182, + 188, + 193 + ], + "score": 0.89, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 181, + 371, + 196 + ], + "score": 1.0, + "content": "are used only in our analysis. The INEXACT", + "type": "text" + }, + { + "bbox": [ + 371, + 185, + 390, + 195 + ], + "score": 0.35, + "content": "\\mathrm { w e A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "algorithm only requires the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 337, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 193, + 206 + ], + "score": 1.0, + "content": "approximate solution", + "type": "text" + }, + { + "bbox": [ + 194, + 194, + 205, + 204 + ], + "score": 0.87, + "content": "\\tilde { \\mathbf { x } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 194, + 297, + 206 + ], + "score": 1.0, + "content": "without knowledge of", + "type": "text" + }, + { + "bbox": [ + 297, + 194, + 309, + 204 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 194, + 321, + 206 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 321, + 194, + 333, + 204 + ], + "score": 0.89, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 194, + 337, + 206 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 304, + 228 + ], + "score": 1.0, + "content": "By the assumption that (9) holds with probability", + "type": "text" + }, + { + "bbox": [ + 304, + 210, + 343, + 226 + ], + "score": 0.92, + "content": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 209, + 410, + 228 + ], + "score": 1.0, + "content": "and the fact that", + "type": "text" + }, + { + "bbox": [ + 410, + 210, + 487, + 225 + ], + "score": 0.93, + "content": "\\| \\tilde { \\mathbf { h } } ^ { k } \\| \\le r = \\sqrt { L _ { 2 } \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 209, + 506, + 228 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 192, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 147, + 243 + ], + "score": 1.0, + "content": "have w.p.", + "type": "text" + }, + { + "bbox": [ + 147, + 224, + 186, + 240 + ], + "score": 0.92, + "content": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 222, + 192, + 243 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 244, + 411, + 273 + ], + "lines": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "spans": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "score": 0.92, + "content": "\\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "f4fa9225b6f536e955cf7b583aa298251879902ffc6088129ea61db36e3512bd.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 502, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 464, + 302 + ], + "score": 1.0, + "content": "Plugging (16), (17), and (26) into (25) and applying the union bound, we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 464, + 284, + 502, + 299 + ], + "score": 0.93, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 2 K } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 306, + 459, + 334 + ], + "lines": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "spans": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "score": 0.92, + "content": "F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } \\| { \\mathbf h } ^ { k } \\| ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } = F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } r ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "8a02aa228f0aec3132cde4a2fc73e578b05458ea77195a0b69b1c21caf94d387.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 295, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 296, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 296, + 350 + ], + "score": 1.0, + "content": "where the second inequality follows from (15):", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 354, + 443, + 370 + ], + "lines": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "spans": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "score": 0.9, + "content": "0 = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) ( \\| \\mathbf h ^ { k } \\| + r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| ^ { 2 } - r ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "8cfbf8890382660d3b47c333a2048ce9c50cfd1b23059f2c3065e521e2bb78ad.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 506, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 231, + 388 + ], + "score": 1.0, + "content": "Summing inequality (27) from", + "type": "text" + }, + { + "bbox": [ + 231, + 376, + 256, + 385 + ], + "score": 0.92, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 374, + 267, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 268, + 376, + 295, + 386 + ], + "score": 0.89, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "and applying the union bound, we have w.p. at least", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 384, + 152, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 146, + 398 + ], + "score": 0.89, + "content": "\\left( 1 - \\zeta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 384, + 152, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 398, + 435, + 432 + ], + "lines": [ + { + "bbox": [ + 176, + 398, + 435, + 432 + ], + "spans": [ + { + "bbox": [ + 176, + 398, + 435, + 432 + ], + "score": 0.94, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } \\le \\frac { 4 ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { K + 1 } ) ) } { L _ { 2 } r ^ { 2 } K } + \\frac { 6 \\epsilon ^ { 1 . 5 } } { L _ { 2 } ^ { 1 . 5 } r ^ { 2 } } \\le \\frac { 4 \\Delta } { \\epsilon K } + \\frac { 6 \\sqrt { \\epsilon } } { \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "bf123e3aef16dd9879bec6b5bb1b84059c93b84a438af694c98cb738aac4d7d7.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 176, + 398, + 435, + 409.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 409.3333333333333, + 435, + 420.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 420.66666666666663, + 435, + 431.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 504, + 449 + ], + "score": 1.0, + "content": "where the second inequality follows from Assumption 2.1 and our choice of the trust region radius.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 342, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 159, + 465 + ], + "score": 1.0, + "content": "By sampling", + "type": "text" + }, + { + "bbox": [ + 160, + 451, + 166, + 462 + ], + "score": 0.82, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 451, + 232, + 465 + ], + "score": 1.0, + "content": "uniformly from", + "type": "text" + }, + { + "bbox": [ + 232, + 452, + 296, + 464 + ], + "score": 0.93, + "content": "\\{ 0 , \\ldots , K - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 451, + 342, + 465 + ], + "score": 1.0, + "content": ", we obtain", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 470, + 347, + 505 + ], + "lines": [ + { + "bbox": [ + 263, + 470, + 347, + 505 + ], + "spans": [ + { + "bbox": [ + 263, + 470, + 347, + 505 + ], + "score": 0.94, + "content": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] = \\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } ,", + "type": "interline_equation", + "image_path": "107fcb40c963dcd1c5c33403eea00221a5f4ae50e2ed106e29f62798bef2b787.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 470, + 347, + 487.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 263, + 487.5, + 347, + 505.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 508, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 104, + 508, + 337, + 526 + ], + "score": 1.0, + "content": "where the expectation is taken over the randomness of √", + "type": "text" + }, + { + "bbox": [ + 338, + 511, + 344, + 522 + ], + "score": 0.83, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 508, + 506, + 526 + ], + "score": 1.0, + "content": ". Combining (29) and (30) and taking", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 520, + 313, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 522, + 183, + 534 + ], + "score": 0.93, + "content": "K = 4 \\Delta \\sqrt { L _ { 2 } } / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 520, + 272, + 536 + ], + "score": 1.0, + "content": ", we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 272, + 522, + 312, + 535 + ], + "score": 0.91, + "content": "\\left( 1 - \\zeta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 520, + 313, + 536 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 540, + 337, + 568 + ], + "lines": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "spans": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "score": 0.95, + "content": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] \\leq \\frac { 7 \\sqrt \\epsilon } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "2ef0ee6dcaed518fd4bee5fe578fc7e61dd7447a85f9346fbe07a3431e91c938.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 130, + 588 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 574, + 142, + 585 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "is always no-negative, by Markov’s inequality and the union bound, with probability at least", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 584, + 169, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 129, + 597 + ], + "score": 0.88, + "content": "1 - \\zeta", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 584, + 169, + 599 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 277, + 596, + 334, + 624 + ], + "lines": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "spans": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "score": 0.94, + "content": "\\lambda ^ { \\bar { k } } \\leq \\frac { 1 4 \\sqrt { \\epsilon } } { \\zeta \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "08ed327e45b2a8ba5c293d38c0b17968eabac4292c4c3c7f0fed7a71e005cc76.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 506, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 149, + 643 + ], + "score": 1.0, + "content": "By taking", + "type": "text" + }, + { + "bbox": [ + 149, + 630, + 185, + 641 + ], + "score": 0.91, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 627, + 276, + 643 + ], + "score": 1.0, + "content": ", we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 276, + 627, + 362, + 642 + ], + "score": 0.9, + "content": "2 / 3 , \\lambda ^ { \\bar { k } } \\leq 4 2 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 627, + 506, + 643 + ], + "score": 1.0, + "content": ". The rest of the proof is similar to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 640, + 253, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 253, + 652 + ], + "score": 1.0, + "content": "Theorem 3.1 and we have the result.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 350, + 681 + ], + "score": 1.0, + "content": "The following theorem shows that MetaAlgorithm 7 finds an", + "type": "text" + }, + { + "bbox": [ + 351, + 667, + 371, + 679 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 664, + 419, + 681 + ], + "score": 1.0, + "content": "-SOSP w.p.", + "type": "text" + }, + { + "bbox": [ + 419, + 667, + 449, + 679 + ], + "score": 0.89, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 664, + 505, + 681 + ], + "score": 1.0, + "content": "after running", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 677, + 274, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 159, + 690 + ], + "score": 1.0, + "content": "INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 159, + 678, + 179, + 690 + ], + "score": 0.26, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 194, + 690 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 195, + 678, + 246, + 690 + ], + "score": 0.92, + "content": "\\Theta ( \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 677, + 274, + 690 + ], + "score": 1.0, + "content": "times.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 693, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "Theorem C.1 (Iteration Complexity of MetaAlgorithm 7). In the same setting as Lemma C.1, let", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 700, + 509, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 173, + 721 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { l o g } ( 2 / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 705, + 177, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 708, + 219, + 719 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 705, + 223, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 223, + 708, + 265, + 719 + ], + "score": 0.82, + "content": "c _ { 2 } = 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 705, + 288, + 721 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 304, + 700, + 509, + 727 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). Then MetaAlgorithm 7 finds a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 286, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 252, + 733 + ], + "score": 1.0, + "content": "600\u000f-SOSP with probability at least", + "type": "text" + }, + { + "bbox": [ + 253, + 720, + 282, + 732 + ], + "score": 0.93, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 720, + 286, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 338, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 334, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 295, + 98 + ], + "score": 1.0, + "content": "Proof. Combining (11) and (24), we have w.p.", + "type": "text" + }, + { + "bbox": [ + 296, + 81, + 334, + 96 + ], + "score": 0.91, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 78, + 334, + 98 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 101, + 420, + 155 + ], + "lines": [ + { + "bbox": [ + 190, + 101, + 420, + 155 + ], + "spans": [ + { + "bbox": [ + 190, + 101, + 420, + 155 + ], + "score": 0.94, + "content": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } } \\\\ { + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| + \\displaystyle \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "2f16a65cfa817451421902b5bee412c3789951b3c8f68cdb9bbf2e16f4347e7f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 190, + 101, + 420, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 190, + 119.0, + 420, + 137.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 190, + 137.0, + 420, + 155.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 104, + 159, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 132, + 174 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 160, + 145, + 171 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 159, + 307, + 174 + ], + "score": 1.0, + "content": "is a global solution to the QCQP (8) and", + "type": "text" + }, + { + "bbox": [ + 307, + 159, + 320, + 172 + ], + "score": 0.88, + "content": "\\tilde { \\mathbf { h } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 159, + 506, + 174 + ], + "score": 1.0, + "content": "is an approximate solution satisfying (24). We", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 119, + 185 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 119, + 172, + 131, + 182 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 171, + 373, + 185 + ], + "score": 1.0, + "content": "denote the dual variable corresponding to the global solution", + "type": "text" + }, + { + "bbox": [ + 373, + 172, + 385, + 182 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "as defined in Lemma 2.1. We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 144, + 196 + ], + "score": 1.0, + "content": "note that", + "type": "text" + }, + { + "bbox": [ + 145, + 182, + 157, + 193 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 181, + 176, + 196 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 182, + 188, + 193 + ], + "score": 0.89, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 181, + 371, + 196 + ], + "score": 1.0, + "content": "are used only in our analysis. The INEXACT", + "type": "text" + }, + { + "bbox": [ + 371, + 185, + 390, + 195 + ], + "score": 0.35, + "content": "\\mathrm { w e A K }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "algorithm only requires the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 337, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 193, + 206 + ], + "score": 1.0, + "content": "approximate solution", + "type": "text" + }, + { + "bbox": [ + 194, + 194, + 205, + 204 + ], + "score": 0.87, + "content": "\\tilde { \\mathbf { x } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 194, + 297, + 206 + ], + "score": 1.0, + "content": "without knowledge of", + "type": "text" + }, + { + "bbox": [ + 297, + 194, + 309, + 204 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 194, + 321, + 206 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 321, + 194, + 333, + 204 + ], + "score": 0.89, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 194, + 337, + 206 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 104, + 159, + 506, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 304, + 228 + ], + "score": 1.0, + "content": "By the assumption that (9) holds with probability", + "type": "text" + }, + { + "bbox": [ + 304, + 210, + 343, + 226 + ], + "score": 0.92, + "content": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 209, + 410, + 228 + ], + "score": 1.0, + "content": "and the fact that", + "type": "text" + }, + { + "bbox": [ + 410, + 210, + 487, + 225 + ], + "score": 0.93, + "content": "\\| \\tilde { \\mathbf { h } } ^ { k } \\| \\le r = \\sqrt { L _ { 2 } \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 209, + 506, + 228 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 192, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 147, + 243 + ], + "score": 1.0, + "content": "have w.p.", + "type": "text" + }, + { + "bbox": [ + 147, + 224, + 186, + 240 + ], + "score": 0.92, + "content": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 222, + 192, + 243 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 209, + 506, + 243 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 244, + 411, + 273 + ], + "lines": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "spans": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "score": 0.92, + "content": "\\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "f4fa9225b6f536e955cf7b583aa298251879902ffc6088129ea61db36e3512bd.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 200, + 244, + 411, + 273 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 502, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 464, + 302 + ], + "score": 1.0, + "content": "Plugging (16), (17), and (26) into (25) and applying the union bound, we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 464, + 284, + 502, + 299 + ], + "score": 0.93, + "content": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 2 K } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 284, + 502, + 302 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 306, + 459, + 334 + ], + "lines": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "spans": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "score": 0.92, + "content": "F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } \\| { \\mathbf h } ^ { k } \\| ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } = F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } r ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "8a02aa228f0aec3132cde4a2fc73e578b05458ea77195a0b69b1c21caf94d387.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 151, + 306, + 459, + 334 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 295, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 296, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 296, + 350 + ], + "score": 1.0, + "content": "where the second inequality follows from (15):", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 336, + 296, + 350 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 354, + 443, + 370 + ], + "lines": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "spans": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "score": 0.9, + "content": "0 = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) ( \\| \\mathbf h ^ { k } \\| + r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| ^ { 2 } - r ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "8cfbf8890382660d3b47c333a2048ce9c50cfd1b23059f2c3065e521e2bb78ad.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 168, + 354, + 443, + 370 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 506, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 231, + 388 + ], + "score": 1.0, + "content": "Summing inequality (27) from", + "type": "text" + }, + { + "bbox": [ + 231, + 376, + 256, + 385 + ], + "score": 0.92, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 374, + 267, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 268, + 376, + 295, + 386 + ], + "score": 0.89, + "content": "K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "and applying the union bound, we have w.p. at least", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 384, + 152, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 146, + 398 + ], + "score": 0.89, + "content": "\\left( 1 - \\zeta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 384, + 152, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 374, + 505, + 400 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 398, + 435, + 432 + ], + "lines": [ + { + "bbox": [ + 176, + 398, + 435, + 432 + ], + "spans": [ + { + "bbox": [ + 176, + 398, + 435, + 432 + ], + "score": 0.94, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } \\le \\frac { 4 ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { K + 1 } ) ) } { L _ { 2 } r ^ { 2 } K } + \\frac { 6 \\epsilon ^ { 1 . 5 } } { L _ { 2 } ^ { 1 . 5 } r ^ { 2 } } \\le \\frac { 4 \\Delta } { \\epsilon K } + \\frac { 6 \\sqrt { \\epsilon } } { \\sqrt { L _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "bf123e3aef16dd9879bec6b5bb1b84059c93b84a438af694c98cb738aac4d7d7.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 176, + 398, + 435, + 409.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 409.3333333333333, + 435, + 420.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 420.66666666666663, + 435, + 431.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 504, + 449 + ], + "score": 1.0, + "content": "where the second inequality follows from Assumption 2.1 and our choice of the trust region radius.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 342, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 159, + 465 + ], + "score": 1.0, + "content": "By sampling", + "type": "text" + }, + { + "bbox": [ + 160, + 451, + 166, + 462 + ], + "score": 0.82, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 451, + 232, + 465 + ], + "score": 1.0, + "content": "uniformly from", + "type": "text" + }, + { + "bbox": [ + 232, + 452, + 296, + 464 + ], + "score": 0.93, + "content": "\\{ 0 , \\ldots , K - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 451, + 342, + 465 + ], + "score": 1.0, + "content": ", we obtain", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 433, + 504, + 465 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 470, + 347, + 505 + ], + "lines": [ + { + "bbox": [ + 263, + 470, + 347, + 505 + ], + "spans": [ + { + "bbox": [ + 263, + 470, + 347, + 505 + ], + "score": 0.94, + "content": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] = \\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } ,", + "type": "interline_equation", + "image_path": "107fcb40c963dcd1c5c33403eea00221a5f4ae50e2ed106e29f62798bef2b787.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 470, + 347, + 487.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 263, + 487.5, + 347, + 505.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 508, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 104, + 508, + 337, + 526 + ], + "score": 1.0, + "content": "where the expectation is taken over the randomness of √", + "type": "text" + }, + { + "bbox": [ + 338, + 511, + 344, + 522 + ], + "score": 0.83, + "content": "\\bar { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 508, + 506, + 526 + ], + "score": 1.0, + "content": ". Combining (29) and (30) and taking", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 520, + 313, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 522, + 183, + 534 + ], + "score": 0.93, + "content": "K = 4 \\Delta \\sqrt { L _ { 2 } } / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 520, + 272, + 536 + ], + "score": 1.0, + "content": ", we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 272, + 522, + 312, + 535 + ], + "score": 0.91, + "content": "\\left( 1 - \\zeta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 520, + 313, + 536 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 508, + 506, + 536 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 540, + 337, + 568 + ], + "lines": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "spans": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "score": 0.95, + "content": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] \\leq \\frac { 7 \\sqrt \\epsilon } { \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "2ef0ee6dcaed518fd4bee5fe578fc7e61dd7447a85f9346fbe07a3431e91c938.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 273, + 540, + 337, + 568 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 130, + 588 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 574, + 142, + 585 + ], + "score": 0.88, + "content": "\\lambda ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "is always no-negative, by Markov’s inequality and the union bound, with probability at least", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 584, + 169, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 129, + 597 + ], + "score": 0.88, + "content": "1 - \\zeta", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 584, + 169, + 599 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 573, + 506, + 599 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 277, + 596, + 334, + 624 + ], + "lines": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "spans": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "score": 0.94, + "content": "\\lambda ^ { \\bar { k } } \\leq \\frac { 1 4 \\sqrt { \\epsilon } } { \\zeta \\sqrt { L _ { 2 } } } .", + "type": "interline_equation", + "image_path": "08ed327e45b2a8ba5c293d38c0b17968eabac4292c4c3c7f0fed7a71e005cc76.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 277, + 596, + 334, + 624 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 506, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 149, + 643 + ], + "score": 1.0, + "content": "By taking", + "type": "text" + }, + { + "bbox": [ + 149, + 630, + 185, + 641 + ], + "score": 0.91, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 627, + 276, + 643 + ], + "score": 1.0, + "content": ", we have w.p. at least", + "type": "text" + }, + { + "bbox": [ + 276, + 627, + 362, + 642 + ], + "score": 0.9, + "content": "2 / 3 , \\lambda ^ { \\bar { k } } \\leq 4 2 \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 627, + 506, + 643 + ], + "score": 1.0, + "content": ". The rest of the proof is similar to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 640, + 253, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 253, + 652 + ], + "score": 1.0, + "content": "Theorem 3.1 and we have the result.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 627, + 506, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 350, + 681 + ], + "score": 1.0, + "content": "The following theorem shows that MetaAlgorithm 7 finds an", + "type": "text" + }, + { + "bbox": [ + 351, + 667, + 371, + 679 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 664, + 419, + 681 + ], + "score": 1.0, + "content": "-SOSP w.p.", + "type": "text" + }, + { + "bbox": [ + 419, + 667, + 449, + 679 + ], + "score": 0.89, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 664, + 505, + 681 + ], + "score": 1.0, + "content": "after running", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 677, + 274, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 159, + 690 + ], + "score": 1.0, + "content": "INEXACTTR", + "type": "text" + }, + { + "bbox": [ + 159, + 678, + 179, + 690 + ], + "score": 0.26, + "content": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 194, + 690 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 195, + 678, + 246, + 690 + ], + "score": 0.92, + "content": "\\Theta ( \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 677, + 274, + 690 + ], + "score": 1.0, + "content": "times.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 664, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 693, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "Theorem C.1 (Iteration Complexity of MetaAlgorithm 7). In the same setting as Lemma C.1, let", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 700, + 509, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 173, + 721 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { l o g } ( 2 / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 705, + 177, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 708, + 219, + 719 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 705, + 223, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 223, + 708, + 265, + 719 + ], + "score": 0.82, + "content": "c _ { 2 } = 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 705, + 288, + 721 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 304, + 700, + 509, + 727 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). Then MetaAlgorithm 7 finds a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 286, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 252, + 733 + ], + "score": 1.0, + "content": "600\u000f-SOSP with probability at least", + "type": "text" + }, + { + "bbox": [ + 253, + 720, + 282, + 732 + ], + "score": 0.93, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 720, + 286, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 692, + 509, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 284, + 95 + ], + "score": 1.0, + "content": "Proof. By Lemma C.1 and our choice of", + "type": "text" + }, + { + "bbox": [ + 284, + 83, + 293, + 93 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 81, + 369, + 95 + ], + "score": 1.0, + "content": ", with probability", + "type": "text" + }, + { + "bbox": [ + 370, + 82, + 411, + 95 + ], + "score": 0.91, + "content": "\\left( 1 - \\delta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 81, + 482, + 95 + ], + "score": 1.0, + "content": ", at least one of", + "type": "text" + }, + { + "bbox": [ + 482, + 82, + 493, + 93 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 114, + 108 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 95, + 135, + 105 + ], + "score": 0.56, + "content": "5 0 0 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 92, + 273, + 108 + ], + "score": 1.0, + "content": "-SOSP. On the other hand, since √", + "type": "text" + }, + { + "bbox": [ + 273, + 94, + 384, + 106 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\leq \\psi _ { t } ( \\mathbf { v } ^ { t } ) + \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 92, + 456, + 108 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 456, + 94, + 491, + 106 + ], + "score": 0.91, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 92, + 506, + 108 + ], + "score": 1.0, + "content": ", if", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 106, + 271, + 120 + ], + "spans": [ + { + "bbox": [ + 107, + 106, + 189, + 119 + ], + "score": 0.93, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 106, + 233, + 120 + ], + "score": 1.0, + "content": ", then, w.p.", + "type": "text" + }, + { + "bbox": [ + 234, + 106, + 266, + 119 + ], + "score": 0.91, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 106, + 271, + 120 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 122, + 437, + 137 + ], + "lines": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "spans": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "score": 0.87, + "content": "\\psi _ { t } ( \\mathbf { v } ^ { t } ) \\geq \\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } } - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { 5 5 0 \\epsilon L _ { 2 } } ,", + "type": "interline_equation", + "image_path": "5431faf34f9f7e6007dd3f9fa5c9b878277fae0c6e37d2c7365e0e69be97bd8f.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 329, + 152 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 330, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 315, + 155 + ], + "score": 1.0, + "content": "where the last inequality follows from our choice of", + "type": "text" + }, + { + "bbox": [ + 316, + 143, + 325, + 151 + ], + "score": 0.82, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 137, + 330, + 155 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 173, + 170 + ], + "score": 1.0, + "content": "Option I: Since", + "type": "text" + }, + { + "bbox": [ + 174, + 156, + 238, + 169 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { t } = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 156, + 317, + 170 + ], + "score": 1.0, + "content": "is the full Hessian,", + "type": "text" + }, + { + "bbox": [ + 317, + 157, + 346, + 169 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\mathbf { v } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 156, + 464, + 170 + ], + "score": 1.0, + "content": "is the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 464, + 156, + 503, + 169 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 156, + 506, + 170 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 167, + 501, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 396, + 182 + ], + "score": 1.0, + "content": "Applying the union bound, we conclude that MetaAlgorithm 7 outputs a", + "type": "text" + }, + { + "bbox": [ + 397, + 169, + 417, + 179 + ], + "score": 0.5, + "content": "6 0 0 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 167, + 465, + 182 + ], + "score": 1.0, + "content": "-SOSP w.p.", + "type": "text" + }, + { + "bbox": [ + 465, + 169, + 495, + 181 + ], + "score": 0.91, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 167, + 501, + 182 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 350, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 350, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 168, + 200 + ], + "score": 1.0, + "content": "Option II: Let", + "type": "text" + }, + { + "bbox": [ + 168, + 185, + 285, + 198 + ], + "score": 0.93, + "content": "\\mathbf { B } _ { i } : = \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 183, + 300, + 200 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 301, + 186, + 326, + 196 + ], + "score": 0.89, + "content": "i \\in \\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 183, + 350, + 200 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 200, + 365, + 233 + ], + "lines": [ + { + "bbox": [ + 246, + 200, + 365, + 233 + ], + "spans": [ + { + "bbox": [ + 246, + 200, + 365, + 233 + ], + "score": 0.95, + "content": "\\mathbf { H } ^ { t } - \\boldsymbol { \\nabla } ^ { 2 } F ( \\mathbf { x } ^ { t } ) = \\frac { 1 } { s } \\sum _ { i = 1 } ^ { s } \\mathbf { B } _ { i } .", + "type": "interline_equation", + "image_path": "82330d1f335568caf45cf8e4281942893a73d002f570e62e7e857cb02656db0c.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 200, + 365, + 216.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 246, + 216.5, + 365, + 233.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 223, + 247 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 224, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 224, + 249 + ], + "score": 1.0, + "content": "By Assumption 2.2, we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 249, + 394, + 264 + ], + "lines": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "spans": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "score": 0.92, + "content": "\\| \\mathbf { B } _ { i } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\leq 2 L _ { 1 } .", + "type": "interline_equation", + "image_path": "a66b657f6d5e008d7e819d605f1b1407257caed0799a469954f3e07b2a273a77.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 434, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 434, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 434, + 281 + ], + "score": 1.0, + "content": "Applying the matrix Azuma’s Inequality in Theorem 7.1 of Tropp (2012) leads to", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 281, + 414, + 308 + ], + "lines": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "spans": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "score": 0.91, + "content": "P r \\{ \\| \\mathbf { H } ^ { t } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\ge \\sqrt { \\epsilon L _ { 2 } } \\} \\le d \\cdot \\exp ( \\frac { - \\epsilon L _ { 2 } s } { 3 2 L _ { 1 } ^ { 2 } } ) .", + "type": "interline_equation", + "image_path": "93b547fd9a178797b861f3f6b660d4c1e3c7334f23d4c7a6543ffda48ce10664.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 480, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 477, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 147, + 330 + ], + "score": 1.0, + "content": "By taking", + "type": "text" + }, + { + "bbox": [ + 148, + 311, + 227, + 329 + ], + "score": 0.94, + "content": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 308, + 454, + 330 + ], + "score": 1.0, + "content": "and applying the union bound, we have with probability", + "type": "text" + }, + { + "bbox": [ + 455, + 316, + 477, + 326 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 332, + 438, + 348 + ], + "lines": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "spans": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "score": 0.88, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\approx \\mathbf { H } ^ { t } - \\sqrt { \\epsilon L _ { 2 } } \\mathbf { I } \\approx ( \\psi _ { t } ( \\mathbf { v } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } ) \\mathbf { I } \\approx - \\sqrt { 6 0 0 \\epsilon L _ { 2 } } \\mathbf { I } ,", + "type": "interline_equation", + "image_path": "82fc59a55d1163015ccb3dcb872124de25d906f486abf3f8a4e8261b20f94afb.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 386, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 387, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 387, + 365 + ], + "score": 1.0, + "content": "where the last inequality follows from (33). This completes the proof.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 108, + 378, + 253, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 255, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 255, + 393 + ], + "score": 1.0, + "content": "D PROOF OF THEOREM 6.1", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 506, + 501 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Proof. We first analyze the computational cost of Lanczos method. By Corollary 2 in (Carmon &", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 411, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 102, + 411, + 446, + 436 + ], + "score": 1.0, + "content": "Duchi, 2018), for any desired accuracy \u000f˜, Lanczos method achieves this accuracy in", + "type": "text" + }, + { + "bbox": [ + 446, + 414, + 505, + 432 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { r } { \\sqrt { \\tilde { \\epsilon } } } \\mathrm { l o g } \\frac { r \\sqrt { d } } { \\tilde { \\epsilon } p } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 234, + 443 + ], + "score": 1.0, + "content": "Lanczos iterations w.p. at least", + "type": "text" + }, + { + "bbox": [ + 235, + 430, + 265, + 443 + ], + "score": 0.93, + "content": "( 1 - p )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 430, + 506, + 443 + ], + "score": 1.0, + "content": ". Without loss of generality, we assume that the number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 339, + 455 + ], + "score": 1.0, + "content": "Lanczos iterations is strictly smaller than the dimension", + "type": "text" + }, + { + "bbox": [ + 339, + 442, + 345, + 452 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 441, + 506, + 455 + ], + "score": 1.0, + "content": ", otherwise the QCQP subproblem can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "be solved exactly. We note that each Lanczos iteration involves computation of one matrix-vector", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 463, + 440, + 478 + ], + "score": 1.0, + "content": "product. Therefore, to satisfy the condition (24) in Lemma C.1, one needs to evaluate", + "type": "text" + }, + { + "bbox": [ + 441, + 463, + 505, + 477 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 252, + 491 + ], + "score": 1.0, + "content": "Hessian-vector products of the form", + "type": "text" + }, + { + "bbox": [ + 253, + 476, + 274, + 487 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 475, + 433, + 491 + ], + "score": 1.0, + "content": ". Similarly, to solve (10) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 433, + 477, + 458, + 488 + ], + "score": 0.91, + "content": "\\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 475, + 506, + 491 + ], + "score": 1.0, + "content": "w.h.p., one", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 488, + 414, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 177, + 502 + ], + "score": 1.0, + "content": "needs to evaluate", + "type": "text" + }, + { + "bbox": [ + 178, + 488, + 241, + 502 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 488, + 389, + 502 + ], + "score": 1.0, + "content": "Hessian-vector products of the form", + "type": "text" + }, + { + "bbox": [ + 390, + 489, + 410, + 500 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { t } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 488, + 414, + 502 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 506, + 634 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 345, + 518 + ], + "score": 1.0, + "content": "In MetaAlgorithm 7, to verify whether the candidate solution", + "type": "text" + }, + { + "bbox": [ + 345, + 506, + 356, + 516 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 505, + 405, + 518 + ], + "score": 1.0, + "content": "is indeed an", + "type": "text" + }, + { + "bbox": [ + 405, + 506, + 426, + 518 + ], + "score": 0.85, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "-SOSP, one needs at", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 515, + 508, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 128, + 531 + ], + "score": 1.0, + "content": "most", + "type": "text" + }, + { + "bbox": [ + 128, + 517, + 151, + 529 + ], + "score": 0.91, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 515, + 291, + 531 + ], + "score": 1.0, + "content": "stochastic gradient evaluations and", + "type": "text" + }, + { + "bbox": [ + 291, + 516, + 469, + 529 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\operatorname* { m i n } \\{ n , \\log ( 4 d / \\delta ) L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) \\} / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 515, + 508, + 531 + ], + "score": 1.0, + "content": "stochas-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 528, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 507, + 541 + ], + "score": 1.0, + "content": "tic Hessian-vector product evaluations, where the latter one follows from the proof of Theorem 7.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "We proceed to analyze the computational complexity of the INEXACTTRWEAK procedure. Recall that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 548, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 548, + 295, + 563 + ], + "score": 1.0, + "content": "the iteration complexity of MetaAlgorithm 7 is", + "type": "text" + }, + { + "bbox": [ + 295, + 550, + 366, + 562 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\log ( 1 / \\delta ) / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 548, + 507, + 563 + ], + "score": 1.0, + "content": ". Following Lemma 4.2 and Corol-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 321, + 576 + ], + "score": 1.0, + "content": "lary 4.1, the stochastic first-order oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 321, + 562, + 457, + 575 + ], + "score": 0.87, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 560, + 506, + 576 + ], + "score": 1.0, + "content": ". Following", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 573, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 301, + 587 + ], + "score": 1.0, + "content": "the proof of Lemma 4.1 and Corollary 4.1, when", + "type": "text" + }, + { + "bbox": [ + 301, + 574, + 330, + 585 + ], + "score": 0.91, + "content": "p _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 573, + 507, + 587 + ], + "score": 1.0, + "content": ", the overall stochastic Hessian sample com-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 583, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 145, + 599 + ], + "score": 1.0, + "content": "plexity is", + "type": "text" + }, + { + "bbox": [ + 145, + 584, + 279, + 598 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 . 5 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 583, + 339, + 599 + ], + "score": 1.0, + "content": ". Since it takes", + "type": "text" + }, + { + "bbox": [ + 339, + 584, + 384, + 598 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 583, + 506, + 599 + ], + "score": 1.0, + "content": "Lanczos iterations to meet the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "condition (24) as stated above, the overall stochastic Hessian-vector product oracle complexity is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 606, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 249, + 621 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 606, + 507, + 623 + ], + "score": 1.0, + "content": ". Combining the stochastic first-order and Hessian-vector product", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 619, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 249, + 636 + ], + "score": 1.0, + "content": "complexities, the overall runtime is", + "type": "text" + }, + { + "bbox": [ + 250, + 620, + 438, + 634 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 619, + 443, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 622, + 506, + 634 + ], + "score": 0.993, + "content": "□", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 397, + 662 + ], + "lines": [ + { + "bbox": [ + 104, + 648, + 398, + 665 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 398, + 665 + ], + "score": 1.0, + "content": "E A FASTER HESSIAN-VECTOR BASED QCQP SOLVER", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 471, + 687 + ], + "score": 1.0, + "content": "We recall from the previous section that, to approximately solve a quadratic subproblem in", + "type": "text" + }, + { + "bbox": [ + 472, + 674, + 502, + 685 + ], + "score": 0.86, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 672, + 506, + 687 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 683, + 507, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 683, + 210, + 700 + ], + "score": 1.0, + "content": "Lanczos method requires", + "type": "text" + }, + { + "bbox": [ + 210, + 684, + 316, + 698 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 0 . 2 5 } , 1 / \\bar { \\epsilon } ^ { 1 . 2 5 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 683, + 507, + 700 + ], + "score": 1.0, + "content": "stochastic Hessian-vector product evaluations.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 695, + 508, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 695, + 333, + 713 + ], + "score": 1.0, + "content": "In this section, we propose a faster QCQP solver with an", + "type": "text" + }, + { + "bbox": [ + 333, + 697, + 456, + 711 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n + n ^ { 0 . 7 5 } / \\epsilon ^ { 0 . 2 5 } , 1 / \\epsilon \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 695, + 508, + 713 + ], + "score": 1.0, + "content": "complexity.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 318, + 722 + ], + "score": 1.0, + "content": "Replacing Lanczos method with this QCQP solver in", + "type": "text" + }, + { + "bbox": [ + 318, + 710, + 349, + 721 + ], + "score": 0.78, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "results in a faster Hessian-free method,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 719, + 230, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 189, + 734 + ], + "score": 1.0, + "content": "which we refer to as", + "type": "text" + }, + { + "bbox": [ + 190, + 721, + 226, + 732 + ], + "score": 0.9, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 719, + 230, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 352, + 504, + 361 + ], + "lines": [ + { + "bbox": [ + 496, + 353, + 504, + 361 + ], + "spans": [ + { + "bbox": [ + 496, + 353, + 504, + 361 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 284, + 95 + ], + "score": 1.0, + "content": "Proof. By Lemma C.1 and our choice of", + "type": "text" + }, + { + "bbox": [ + 284, + 83, + 293, + 93 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 81, + 369, + 95 + ], + "score": 1.0, + "content": ", with probability", + "type": "text" + }, + { + "bbox": [ + 370, + 82, + 411, + 95 + ], + "score": 0.91, + "content": "\\left( 1 - \\delta / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 81, + 482, + 95 + ], + "score": 1.0, + "content": ", at least one of", + "type": "text" + }, + { + "bbox": [ + 482, + 82, + 493, + 93 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 114, + 108 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 95, + 135, + 105 + ], + "score": 0.56, + "content": "5 0 0 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 92, + 273, + 108 + ], + "score": 1.0, + "content": "-SOSP. On the other hand, since √", + "type": "text" + }, + { + "bbox": [ + 273, + 94, + 384, + 106 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\leq \\psi _ { t } ( \\mathbf { v } ^ { t } ) + \\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 92, + 456, + 108 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 456, + 94, + 491, + 106 + ], + "score": 0.91, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 92, + 506, + 108 + ], + "score": 1.0, + "content": ", if", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 106, + 271, + 120 + ], + "spans": [ + { + "bbox": [ + 107, + 106, + 189, + 119 + ], + "score": 0.93, + "content": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 106, + 233, + 120 + ], + "score": 1.0, + "content": ", then, w.p.", + "type": "text" + }, + { + "bbox": [ + 234, + 106, + 266, + 119 + ], + "score": 0.91, + "content": "1 - \\delta / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 106, + 271, + 120 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 81, + 506, + 120 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 122, + 437, + 137 + ], + "lines": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "spans": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "score": 0.87, + "content": "\\psi _ { t } ( \\mathbf { v } ^ { t } ) \\geq \\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } } - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { 5 5 0 \\epsilon L _ { 2 } } ,", + "type": "interline_equation", + "image_path": "5431faf34f9f7e6007dd3f9fa5c9b878277fae0c6e37d2c7365e0e69be97bd8f.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 173, + 122, + 437, + 137 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 329, + 152 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 330, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 315, + 155 + ], + "score": 1.0, + "content": "where the last inequality follows from our choice of", + "type": "text" + }, + { + "bbox": [ + 316, + 143, + 325, + 151 + ], + "score": 0.82, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 137, + 330, + 155 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 137, + 330, + 155 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 156, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 173, + 170 + ], + "score": 1.0, + "content": "Option I: Since", + "type": "text" + }, + { + "bbox": [ + 174, + 156, + 238, + 169 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { t } = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 156, + 317, + 170 + ], + "score": 1.0, + "content": "is the full Hessian,", + "type": "text" + }, + { + "bbox": [ + 317, + 157, + 346, + 169 + ], + "score": 0.92, + "content": "\\psi _ { t } ( \\mathbf { v } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 156, + 464, + 170 + ], + "score": 1.0, + "content": "is the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 464, + 156, + 503, + 169 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 156, + 506, + 170 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 167, + 501, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 396, + 182 + ], + "score": 1.0, + "content": "Applying the union bound, we conclude that MetaAlgorithm 7 outputs a", + "type": "text" + }, + { + "bbox": [ + 397, + 169, + 417, + 179 + ], + "score": 0.5, + "content": "6 0 0 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 167, + 465, + 182 + ], + "score": 1.0, + "content": "-SOSP w.p.", + "type": "text" + }, + { + "bbox": [ + 465, + 169, + 495, + 181 + ], + "score": 0.91, + "content": "( 1 - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 167, + 501, + 182 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 156, + 506, + 182 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 350, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 350, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 168, + 200 + ], + "score": 1.0, + "content": "Option II: Let", + "type": "text" + }, + { + "bbox": [ + 168, + 185, + 285, + 198 + ], + "score": 0.93, + "content": "\\mathbf { B } _ { i } : = \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 183, + 300, + 200 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 301, + 186, + 326, + 196 + ], + "score": 0.89, + "content": "i \\in \\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 183, + 350, + 200 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 183, + 350, + 200 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 200, + 365, + 233 + ], + "lines": [ + { + "bbox": [ + 246, + 200, + 365, + 233 + ], + "spans": [ + { + "bbox": [ + 246, + 200, + 365, + 233 + ], + "score": 0.95, + "content": "\\mathbf { H } ^ { t } - \\boldsymbol { \\nabla } ^ { 2 } F ( \\mathbf { x } ^ { t } ) = \\frac { 1 } { s } \\sum _ { i = 1 } ^ { s } \\mathbf { B } _ { i } .", + "type": "interline_equation", + "image_path": "82330d1f335568caf45cf8e4281942893a73d002f570e62e7e857cb02656db0c.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 200, + 365, + 216.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 246, + 216.5, + 365, + 233.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 223, + 247 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 224, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 224, + 249 + ], + "score": 1.0, + "content": "By Assumption 2.2, we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 234, + 224, + 249 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 249, + 394, + 264 + ], + "lines": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "spans": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "score": 0.92, + "content": "\\| \\mathbf { B } _ { i } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\leq 2 L _ { 1 } .", + "type": "interline_equation", + "image_path": "a66b657f6d5e008d7e819d605f1b1407257caed0799a469954f3e07b2a273a77.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 216, + 249, + 394, + 264 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 434, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 434, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 434, + 281 + ], + "score": 1.0, + "content": "Applying the matrix Azuma’s Inequality in Theorem 7.1 of Tropp (2012) leads to", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 266, + 434, + 281 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 281, + 414, + 308 + ], + "lines": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "spans": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "score": 0.91, + "content": "P r \\{ \\| \\mathbf { H } ^ { t } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\ge \\sqrt { \\epsilon L _ { 2 } } \\} \\le d \\cdot \\exp ( \\frac { - \\epsilon L _ { 2 } s } { 3 2 L _ { 1 } ^ { 2 } } ) .", + "type": "interline_equation", + "image_path": "93b547fd9a178797b861f3f6b660d4c1e3c7334f23d4c7a6543ffda48ce10664.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 196, + 281, + 414, + 308 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 480, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 477, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 147, + 330 + ], + "score": 1.0, + "content": "By taking", + "type": "text" + }, + { + "bbox": [ + 148, + 311, + 227, + 329 + ], + "score": 0.94, + "content": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 308, + 454, + 330 + ], + "score": 1.0, + "content": "and applying the union bound, we have with probability", + "type": "text" + }, + { + "bbox": [ + 455, + 316, + 477, + 326 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 308, + 477, + 330 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 332, + 438, + 348 + ], + "lines": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "spans": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "score": 0.88, + "content": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\approx \\mathbf { H } ^ { t } - \\sqrt { \\epsilon L _ { 2 } } \\mathbf { I } \\approx ( \\psi _ { t } ( \\mathbf { v } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } ) \\mathbf { I } \\approx - \\sqrt { 6 0 0 \\epsilon L _ { 2 } } \\mathbf { I } ,", + "type": "interline_equation", + "image_path": "82fc59a55d1163015ccb3dcb872124de25d906f486abf3f8a4e8261b20f94afb.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 172, + 332, + 438, + 348 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 386, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 387, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 387, + 365 + ], + "score": 1.0, + "content": "where the last inequality follows from (33). This completes the proof.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 350, + 387, + 365 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 378, + 253, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 255, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 255, + 393 + ], + "score": 1.0, + "content": "D PROOF OF THEOREM 6.1", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 506, + 501 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Proof. We first analyze the computational cost of Lanczos method. By Corollary 2 in (Carmon &", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 411, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 102, + 411, + 446, + 436 + ], + "score": 1.0, + "content": "Duchi, 2018), for any desired accuracy \u000f˜, Lanczos method achieves this accuracy in", + "type": "text" + }, + { + "bbox": [ + 446, + 414, + 505, + 432 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { r } { \\sqrt { \\tilde { \\epsilon } } } \\mathrm { l o g } \\frac { r \\sqrt { d } } { \\tilde { \\epsilon } p } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 234, + 443 + ], + "score": 1.0, + "content": "Lanczos iterations w.p. at least", + "type": "text" + }, + { + "bbox": [ + 235, + 430, + 265, + 443 + ], + "score": 0.93, + "content": "( 1 - p )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 430, + 506, + 443 + ], + "score": 1.0, + "content": ". Without loss of generality, we assume that the number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 339, + 455 + ], + "score": 1.0, + "content": "Lanczos iterations is strictly smaller than the dimension", + "type": "text" + }, + { + "bbox": [ + 339, + 442, + 345, + 452 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 441, + 506, + 455 + ], + "score": 1.0, + "content": ", otherwise the QCQP subproblem can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "be solved exactly. We note that each Lanczos iteration involves computation of one matrix-vector", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 463, + 440, + 478 + ], + "score": 1.0, + "content": "product. Therefore, to satisfy the condition (24) in Lemma C.1, one needs to evaluate", + "type": "text" + }, + { + "bbox": [ + 441, + 463, + 505, + 477 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 252, + 491 + ], + "score": 1.0, + "content": "Hessian-vector products of the form", + "type": "text" + }, + { + "bbox": [ + 253, + 476, + 274, + 487 + ], + "score": 0.89, + "content": "\\mathbf { H } ^ { k } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 475, + 433, + 491 + ], + "score": 1.0, + "content": ". Similarly, to solve (10) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 433, + 477, + 458, + 488 + ], + "score": 0.91, + "content": "\\sqrt { \\epsilon L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 475, + 506, + 491 + ], + "score": 1.0, + "content": "w.h.p., one", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 488, + 414, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 177, + 502 + ], + "score": 1.0, + "content": "needs to evaluate", + "type": "text" + }, + { + "bbox": [ + 178, + 488, + 241, + 502 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 488, + 389, + 502 + ], + "score": 1.0, + "content": "Hessian-vector products of the form", + "type": "text" + }, + { + "bbox": [ + 390, + 489, + 410, + 500 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { t } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 488, + 414, + 502 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5, + "bbox_fs": [ + 102, + 403, + 506, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 506, + 634 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 345, + 518 + ], + "score": 1.0, + "content": "In MetaAlgorithm 7, to verify whether the candidate solution", + "type": "text" + }, + { + "bbox": [ + 345, + 506, + 356, + 516 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 505, + 405, + 518 + ], + "score": 1.0, + "content": "is indeed an", + "type": "text" + }, + { + "bbox": [ + 405, + 506, + 426, + 518 + ], + "score": 0.85, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "-SOSP, one needs at", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 515, + 508, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 128, + 531 + ], + "score": 1.0, + "content": "most", + "type": "text" + }, + { + "bbox": [ + 128, + 517, + 151, + 529 + ], + "score": 0.91, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 515, + 291, + 531 + ], + "score": 1.0, + "content": "stochastic gradient evaluations and", + "type": "text" + }, + { + "bbox": [ + 291, + 516, + 469, + 529 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\operatorname* { m i n } \\{ n , \\log ( 4 d / \\delta ) L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) \\} / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 515, + 508, + 531 + ], + "score": 1.0, + "content": "stochas-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 528, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 507, + 541 + ], + "score": 1.0, + "content": "tic Hessian-vector product evaluations, where the latter one follows from the proof of Theorem 7.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "We proceed to analyze the computational complexity of the INEXACTTRWEAK procedure. Recall that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 548, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 548, + 295, + 563 + ], + "score": 1.0, + "content": "the iteration complexity of MetaAlgorithm 7 is", + "type": "text" + }, + { + "bbox": [ + 295, + 550, + 366, + 562 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\log ( 1 / \\delta ) / \\epsilon ^ { 1 . 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 548, + 507, + 563 + ], + "score": 1.0, + "content": ". Following Lemma 4.2 and Corol-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 321, + 576 + ], + "score": 1.0, + "content": "lary 4.1, the stochastic first-order oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 321, + 562, + 457, + 575 + ], + "score": 0.87, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 560, + 506, + 576 + ], + "score": 1.0, + "content": ". Following", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 573, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 301, + 587 + ], + "score": 1.0, + "content": "the proof of Lemma 4.1 and Corollary 4.1, when", + "type": "text" + }, + { + "bbox": [ + 301, + 574, + 330, + 585 + ], + "score": 0.91, + "content": "p _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 573, + 507, + 587 + ], + "score": 1.0, + "content": ", the overall stochastic Hessian sample com-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 583, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 145, + 599 + ], + "score": 1.0, + "content": "plexity is", + "type": "text" + }, + { + "bbox": [ + 145, + 584, + 279, + 598 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 . 5 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 583, + 339, + 599 + ], + "score": 1.0, + "content": ". Since it takes", + "type": "text" + }, + { + "bbox": [ + 339, + 584, + 384, + 598 + ], + "score": 0.94, + "content": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 583, + 506, + 599 + ], + "score": 1.0, + "content": "Lanczos iterations to meet the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "condition (24) as stated above, the overall stochastic Hessian-vector product oracle complexity is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 606, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 249, + 621 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 606, + 507, + 623 + ], + "score": 1.0, + "content": ". Combining the stochastic first-order and Hessian-vector product", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 619, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 249, + 636 + ], + "score": 1.0, + "content": "complexities, the overall runtime is", + "type": "text" + }, + { + "bbox": [ + 250, + 620, + 438, + 634 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 619, + 443, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 622, + 506, + 634 + ], + "score": 0.993, + "content": "□", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 505, + 508, + 636 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 397, + 662 + ], + "lines": [ + { + "bbox": [ + 104, + 648, + 398, + 665 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 398, + 665 + ], + "score": 1.0, + "content": "E A FASTER HESSIAN-VECTOR BASED QCQP SOLVER", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 471, + 687 + ], + "score": 1.0, + "content": "We recall from the previous section that, to approximately solve a quadratic subproblem in", + "type": "text" + }, + { + "bbox": [ + 472, + 674, + 502, + 685 + ], + "score": 0.86, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 672, + 506, + 687 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 683, + 507, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 683, + 210, + 700 + ], + "score": 1.0, + "content": "Lanczos method requires", + "type": "text" + }, + { + "bbox": [ + 210, + 684, + 316, + 698 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 0 . 2 5 } , 1 / \\bar { \\epsilon } ^ { 1 . 2 5 } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 683, + 507, + 700 + ], + "score": 1.0, + "content": "stochastic Hessian-vector product evaluations.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 695, + 508, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 695, + 333, + 713 + ], + "score": 1.0, + "content": "In this section, we propose a faster QCQP solver with an", + "type": "text" + }, + { + "bbox": [ + 333, + 697, + 456, + 711 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n + n ^ { 0 . 7 5 } / \\epsilon ^ { 0 . 2 5 } , 1 / \\epsilon \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 695, + 508, + 713 + ], + "score": 1.0, + "content": "complexity.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 318, + 722 + ], + "score": 1.0, + "content": "Replacing Lanczos method with this QCQP solver in", + "type": "text" + }, + { + "bbox": [ + 318, + 710, + 349, + 721 + ], + "score": 0.78, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "results in a faster Hessian-free method,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 719, + 230, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 189, + 734 + ], + "score": 1.0, + "content": "which we refer to as", + "type": "text" + }, + { + "bbox": [ + 190, + 721, + 226, + 732 + ], + "score": 0.9, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 719, + 230, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 672, + 508, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 292, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 294, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 294, + 96 + ], + "score": 1.0, + "content": "E.1 CONVEX REFORMULATION OF QCQP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "To begin with, we present a known result that is key to achieve faster algorithm than Lanczos method.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "We summarize this result in Lemma E.1 which shows that the trust region subproblem is equivalent", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 184, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 184, + 137 + ], + "score": 1.0, + "content": "to a convex QCQP.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Lemma E.1. (Convex Reformulation of QCQP (Flippo & Jansen, 1996; Wang & Xia, 2017)) Denote", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 149, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 107, + 150, + 127, + 161 + ], + "score": 0.87, + "content": "\\lambda _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 149, + 242, + 164 + ], + "score": 1.0, + "content": "as the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 243, + 149, + 257, + 160 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 149, + 276, + 164 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 277, + 151, + 298, + 161 + ], + "score": 0.81, + "content": "\\mathbf { u } _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 149, + 506, + 164 + ], + "score": 1.0, + "content": "be a corresponding eigenvector. W.l.o.g., we assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 159, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 125, + 174 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 160, + 187, + 173 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 159, + 206, + 174 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 206, + 161, + 281, + 173 + ], + "score": 0.92, + "content": "\\mu = \\operatorname* { m i n } \\{ \\lambda _ { \\operatorname* { m i n } } , 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 159, + 506, + 174 + ], + "score": 1.0, + "content": ". Then the QCQP (8) is equivalent to the convex problem", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 179, + 425, + 205 + ], + "lines": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "spans": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\substack { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } } q ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\mu I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\mu r ^ { 2 }", + "type": "interline_equation", + "image_path": "3c259b5f80ea3f9312154d89b17ab811f991e2da8e57c54e7a7d957cbd040c5d.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 448, + 219 + ], + "score": 1.0, + "content": "in the sense that (8) and (38) have the same minimum function value. Moreover, when", + "type": "text" + }, + { + "bbox": [ + 449, + 206, + 488, + 217 + ], + "score": 0.89, + "content": "\\lambda _ { \\operatorname* { m i n } } < 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 204, + 506, + 219 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 286, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 270, + 230 + ], + "score": 1.0, + "content": "any optimal solution of (38), denoted by", + "type": "text" + }, + { + "bbox": [ + 270, + 216, + 282, + 229 + ], + "score": 0.89, + "content": "\\mathbf { h } _ { c } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 216, + 286, + 230 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 231, + 438, + 260 + ], + "lines": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "spans": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "score": 0.93, + "content": "\\mathbf { h } _ { c } ^ { k } + \\frac { \\sqrt { \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle ^ { 2 } - \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } \\big ( \\| \\mathbf { h } _ { c } ^ { k } \\| ^ { 2 } - r ^ { 2 } \\big ) } - \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle } { \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } } \\mathbf { u } _ { \\mathrm { m i n } }", + "type": "interline_equation", + "image_path": "4a84f0a66a70d1fd6e8264a455b9841b44c7da5a8599d395dd6b5468a6e797b6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 297, + 274 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 299, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 299, + 276 + ], + "score": 1.0, + "content": "is a global minimizer of the original QCQP (8).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 428, + 295 + ], + "score": 1.0, + "content": "To perform the above reformulation, one needs to compute the exact eigenpair", + "type": "text" + }, + { + "bbox": [ + 428, + 282, + 479, + 293 + ], + "score": 0.85, + "content": "\\left( \\lambda _ { \\operatorname* { m i n } } , \\mathbf { u } _ { \\operatorname* { m i n } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 281, + 505, + 295 + ], + "score": 1.0, + "content": ". Nev-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 437, + 308 + ], + "score": 1.0, + "content": "ertheless, as we shall see, it is sufficient to compute an approximate eigenpair", + "type": "text" + }, + { + "bbox": [ + 438, + 294, + 462, + 307 + ], + "score": 0.92, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 313, + 374, + 328 + ], + "lines": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "spans": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "score": 0.92, + "content": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ,", + "type": "interline_equation", + "image_path": "a85cc13309ad658a543ec13c6a3f9f3866bf41c82b4eb5baea8eb426643121dc.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 362, + 343 + ], + "score": 1.0, + "content": "where \u000f˜ is a target accuracy to be determined later. We note that", + "type": "text" + }, + { + "bbox": [ + 363, + 330, + 397, + 341 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 328, + 453, + 343 + ], + "score": 1.0, + "content": "w.l.o.g. since", + "type": "text" + }, + { + "bbox": [ + 454, + 329, + 503, + 342 + ], + "score": 0.93, + "content": "\\| \\mathbf { H } ^ { k } \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 328, + 506, + 343 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 341, + 437, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 437, + 352 + ], + "score": 1.0, + "content": "With this approximate eigenpair, it remains to solve the following convex problem", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 354, + 425, + 380 + ], + "lines": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "spans": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\tilde { q } ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 }", + "type": "interline_equation", + "image_path": "92370e579ccde63752f9debd6649e54b60e3b2dda0048a056aaecb071c1a9b48.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 462, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 462, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 133, + 399 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 383, + 212, + 397 + ], + "score": 0.93, + "content": "\\tilde { \\mu } = \\mathrm { m i n } \\{ 0 , \\tilde { \\lambda } - \\tilde { \\epsilon } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 384, + 462, + 399 + ], + "score": 1.0, + "content": ". One can check that the problem (41) well approximates (38).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 503, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 187, + 413 + ], + "score": 1.0, + "content": "Corollary E.1. Let", + "type": "text" + }, + { + "bbox": [ + 187, + 398, + 198, + 411 + ], + "score": 0.87, + "content": "q _ { * } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 397, + 216, + 413 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 398, + 227, + 411 + ], + "score": 0.86, + "content": "\\tilde { q } _ { * } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 397, + 505, + 413 + ], + "score": 1.0, + "content": "be the minimum function value of (38) and (41), respectively. Assume", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 410, + 269, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 243, + 424 + ], + "score": 0.9, + "content": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 411, + 269, + 425 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 271, + 425, + 340, + 440 + ], + "lines": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "spans": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "score": 0.92, + "content": "| q _ { * } ^ { k } - \\tilde { q } _ { * } ^ { k } | \\leq \\tilde { \\epsilon } r ^ { 2 } .", + "type": "interline_equation", + "image_path": "144b1097a8e6cfa77799b3ee5d9151f9f89fa95e3828e733548c43633f5362a3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 506, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "We note that the above convex reformulation approach divides an indefinite QCQP into two subprob-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 459, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 312, + 474 + ], + "score": 1.0, + "content": "lems: (i) computation of an approximate eigenpair", + "type": "text" + }, + { + "bbox": [ + 312, + 459, + 336, + 472 + ], + "score": 0.91, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "; (ii) solving the convex problem (41). As", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 365, + 484 + ], + "score": 1.0, + "content": "we shall see, by exploiting the finite-sum structure of the Hessian", + "type": "text" + }, + { + "bbox": [ + 366, + 471, + 380, + 482 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 471, + 506, + 484 + ], + "score": 1.0, + "content": ", these two subproblems can be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 482, + 496, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 496, + 495 + ], + "score": 1.0, + "content": "efficiently solved. We treat these two subproblems in the following two subsections, respectively.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 303, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 304, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 304, + 519 + ], + "score": 1.0, + "content": "E.2 FINDING THE SMALLEST EIGENVECTOR", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "To find a unit vector that satisfies requirement (40), we resort to the AppxPCA method (Allen-Zhu", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 537, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 338, + 552 + ], + "score": 1.0, + "content": "& Li, 2016), which first finds an approximate eigenvalue", + "type": "text" + }, + { + "bbox": [ + 339, + 539, + 395, + 549 + ], + "score": 0.9, + "content": "\\lambda = \\lambda _ { \\operatorname* { m i n } } - \\tilde { \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 537, + 506, + 552 + ], + "score": 1.0, + "content": "via binary search and then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 104, + 548, + 327, + 562 + ], + "score": 1.0, + "content": "applies Power method to the positive definite matrix", + "type": "text" + }, + { + "bbox": [ + 327, + 549, + 384, + 561 + ], + "score": 0.91, + "content": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "for a logarithmic number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 558, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 558, + 195, + 574 + ], + "score": 1.0, + "content": "iterations. Computing", + "type": "text" + }, + { + "bbox": [ + 196, + 560, + 258, + 573 + ], + "score": 0.92, + "content": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 558, + 316, + 574 + ], + "score": 1.0, + "content": "for any vector", + "type": "text" + }, + { + "bbox": [ + 317, + 563, + 324, + 570 + ], + "score": 0.71, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 558, + 433, + 574 + ], + "score": 1.0, + "content": "is equivalent to solving the", + "type": "text" + }, + { + "bbox": [ + 433, + 561, + 439, + 570 + ], + "score": 0.41, + "content": "\\tilde { \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 558, + 506, + 574 + ], + "score": 1.0, + "content": "-strongly convex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 570, + 240, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 240, + 584 + ], + "score": 1.0, + "content": "problem (Allen-Zhu & Li, 2018)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 585, + 390, + 609 + ], + "lines": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "spans": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\mathbf { u } } \\phi ^ { k } ( \\mathbf { u } ) : = \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\mathbf { H } ^ { k } - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle", + "type": "interline_equation", + "image_path": "dac887be88ba8de15c2391acc4b84c9a52c388b533f2345e8611cffc16c8fef5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 161, + 627 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 162, + 611, + 272, + 627 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\cal { S } | } \\sum _ { i \\in \\cal { S } } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 610, + 342, + 627 + ], + "score": 1.0, + "content": ". Specifically, in", + "type": "text" + }, + { + "bbox": [ + 343, + 612, + 374, + 624 + ], + "score": 0.87, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 610, + 405, + 627 + ], + "score": 1.0, + "content": ", either", + "type": "text" + }, + { + "bbox": [ + 405, + 612, + 440, + 624 + ], + "score": 0.92, + "content": "| S | = n", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 610, + 463, + 627 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 463, + 612, + 478, + 623 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 610, + 506, + 627 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 173, + 641 + ], + "score": 1.0, + "content": "full Hessian) or", + "type": "text" + }, + { + "bbox": [ + 173, + 627, + 255, + 640 + ], + "score": 0.92, + "content": "| S | = \\tilde { \\mathcal { O } } ( L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 626, + 367, + 641 + ], + "score": 1.0, + "content": "by Lemma 4.1. Therefore,", + "type": "text" + }, + { + "bbox": [ + 368, + 627, + 390, + 640 + ], + "score": 0.91, + "content": "\\phi ^ { k } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "can be expressed as sum of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 639, + 195, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 195, + 650 + ], + "score": 1.0, + "content": "non-convex functions", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 650, + 452, + 680 + ], + "lines": [ + { + "bbox": [ + 159, + 650, + 452, + 680 + ], + "spans": [ + { + "bbox": [ + 159, + 650, + 452, + 680 + ], + "score": 0.94, + "content": "\\phi ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\phi _ { i } ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\left( \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle \\right) .", + "type": "interline_equation", + "image_path": "eec1192412c143e85db823e72aa5225f155ff2f2d760377afc4b2cc2ceb28aab.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 159, + 650, + 452, + 660.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 159, + 660.0, + 452, + 670.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 159, + 670.0, + 452, + 680.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 683, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 215, + 697 + ], + "score": 1.0, + "content": "By observing that each", + "type": "text" + }, + { + "bbox": [ + 216, + 683, + 228, + 696 + ], + "score": 0.9, + "content": "\\phi _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 682, + 338, + 697 + ], + "score": 1.0, + "content": "is non-convex and has", + "type": "text" + }, + { + "bbox": [ + 338, + 684, + 363, + 696 + ], + "score": 0.88, + "content": "\\left( 4 L _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 682, + 506, + 697 + ], + "score": 1.0, + "content": "-Lipschitz gradient, we can use", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 507, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 332, + 709 + ], + "score": 1.0, + "content": "KatyushaXS (Allen-Zhu, 2018a) to solve problem (43) in", + "type": "text" + }, + { + "bbox": [ + 333, + 696, + 428, + 710 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 695, + 507, + 709 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 190, + 722 + ], + "score": 1.0, + "content": "vector product (i.e.,", + "type": "text" + }, + { + "bbox": [ + 190, + 709, + 241, + 722 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\mathbf { u } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "evaluations. The following result is taken from (Agarwal et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 438, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 438, + 733 + ], + "score": 1.0, + "content": "2017, Section G.3), which gives the overall computation complexity of AppxPCA.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 292, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 294, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 294, + 96 + ], + "score": 1.0, + "content": "E.1 CONVEX REFORMULATION OF QCQP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "To begin with, we present a known result that is key to achieve faster algorithm than Lanczos method.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "We summarize this result in Lemma E.1 which shows that the trust region subproblem is equivalent", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 184, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 184, + 137 + ], + "score": 1.0, + "content": "to a convex QCQP.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 506, + 137 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Lemma E.1. (Convex Reformulation of QCQP (Flippo & Jansen, 1996; Wang & Xia, 2017)) Denote", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 149, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 107, + 150, + 127, + 161 + ], + "score": 0.87, + "content": "\\lambda _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 149, + 242, + 164 + ], + "score": 1.0, + "content": "as the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 243, + 149, + 257, + 160 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 149, + 276, + 164 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 277, + 151, + 298, + 161 + ], + "score": 0.81, + "content": "\\mathbf { u } _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 149, + 506, + 164 + ], + "score": 1.0, + "content": "be a corresponding eigenvector. W.l.o.g., we assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 159, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 125, + 174 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 160, + 187, + 173 + ], + "score": 0.91, + "content": "\\langle \\mathbf { g } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 159, + 206, + 174 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 206, + 161, + 281, + 173 + ], + "score": 0.92, + "content": "\\mu = \\operatorname* { m i n } \\{ \\lambda _ { \\operatorname* { m i n } } , 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 159, + 506, + 174 + ], + "score": 1.0, + "content": ". Then the QCQP (8) is equivalent to the convex problem", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 137, + 506, + 174 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 179, + 425, + 205 + ], + "lines": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "spans": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\substack { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } } q ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\mu I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\mu r ^ { 2 }", + "type": "interline_equation", + "image_path": "3c259b5f80ea3f9312154d89b17ab811f991e2da8e57c54e7a7d957cbd040c5d.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 184, + 179, + 425, + 205 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 448, + 219 + ], + "score": 1.0, + "content": "in the sense that (8) and (38) have the same minimum function value. Moreover, when", + "type": "text" + }, + { + "bbox": [ + 449, + 206, + 488, + 217 + ], + "score": 0.89, + "content": "\\lambda _ { \\operatorname* { m i n } } < 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 204, + 506, + 219 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 286, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 270, + 230 + ], + "score": 1.0, + "content": "any optimal solution of (38), denoted by", + "type": "text" + }, + { + "bbox": [ + 270, + 216, + 282, + 229 + ], + "score": 0.89, + "content": "\\mathbf { h } _ { c } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 216, + 286, + 230 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 204, + 506, + 230 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 231, + 438, + 260 + ], + "lines": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "spans": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "score": 0.93, + "content": "\\mathbf { h } _ { c } ^ { k } + \\frac { \\sqrt { \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle ^ { 2 } - \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } \\big ( \\| \\mathbf { h } _ { c } ^ { k } \\| ^ { 2 } - r ^ { 2 } \\big ) } - \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle } { \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } } \\mathbf { u } _ { \\mathrm { m i n } }", + "type": "interline_equation", + "image_path": "4a84f0a66a70d1fd6e8264a455b9841b44c7da5a8599d395dd6b5468a6e797b6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 173, + 231, + 438, + 260 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 297, + 274 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 299, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 299, + 276 + ], + "score": 1.0, + "content": "is a global minimizer of the original QCQP (8).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 261, + 299, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 428, + 295 + ], + "score": 1.0, + "content": "To perform the above reformulation, one needs to compute the exact eigenpair", + "type": "text" + }, + { + "bbox": [ + 428, + 282, + 479, + 293 + ], + "score": 0.85, + "content": "\\left( \\lambda _ { \\operatorname* { m i n } } , \\mathbf { u } _ { \\operatorname* { m i n } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 281, + 505, + 295 + ], + "score": 1.0, + "content": ". Nev-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 437, + 308 + ], + "score": 1.0, + "content": "ertheless, as we shall see, it is sufficient to compute an approximate eigenpair", + "type": "text" + }, + { + "bbox": [ + 438, + 294, + 462, + 307 + ], + "score": 0.92, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 281, + 506, + 308 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 313, + 374, + 328 + ], + "lines": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "spans": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "score": 0.92, + "content": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ,", + "type": "interline_equation", + "image_path": "a85cc13309ad658a543ec13c6a3f9f3866bf41c82b4eb5baea8eb426643121dc.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 236, + 313, + 374, + 328 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 362, + 343 + ], + "score": 1.0, + "content": "where \u000f˜ is a target accuracy to be determined later. We note that", + "type": "text" + }, + { + "bbox": [ + 363, + 330, + 397, + 341 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 328, + 453, + 343 + ], + "score": 1.0, + "content": "w.l.o.g. since", + "type": "text" + }, + { + "bbox": [ + 454, + 329, + 503, + 342 + ], + "score": 0.93, + "content": "\\| \\mathbf { H } ^ { k } \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 328, + 506, + 343 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 341, + 437, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 437, + 352 + ], + "score": 1.0, + "content": "With this approximate eigenpair, it remains to solve the following convex problem", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 328, + 506, + 352 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 354, + 425, + 380 + ], + "lines": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "spans": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\tilde { q } ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 }", + "type": "interline_equation", + "image_path": "92370e579ccde63752f9debd6649e54b60e3b2dda0048a056aaecb071c1a9b48.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 184, + 354, + 425, + 380 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 462, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 462, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 133, + 399 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 383, + 212, + 397 + ], + "score": 0.93, + "content": "\\tilde { \\mu } = \\mathrm { m i n } \\{ 0 , \\tilde { \\lambda } - \\tilde { \\epsilon } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 384, + 462, + 399 + ], + "score": 1.0, + "content": ". One can check that the problem (41) well approximates (38).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 383, + 462, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 503, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 187, + 413 + ], + "score": 1.0, + "content": "Corollary E.1. Let", + "type": "text" + }, + { + "bbox": [ + 187, + 398, + 198, + 411 + ], + "score": 0.87, + "content": "q _ { * } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 397, + 216, + 413 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 398, + 227, + 411 + ], + "score": 0.86, + "content": "\\tilde { q } _ { * } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 397, + 505, + 413 + ], + "score": 1.0, + "content": "be the minimum function value of (38) and (41), respectively. Assume", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 410, + 269, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 243, + 424 + ], + "score": 0.9, + "content": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 411, + 269, + 425 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 397, + 505, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 271, + 425, + 340, + 440 + ], + "lines": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "spans": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "score": 0.92, + "content": "| q _ { * } ^ { k } - \\tilde { q } _ { * } ^ { k } | \\leq \\tilde { \\epsilon } r ^ { 2 } .", + "type": "interline_equation", + "image_path": "144b1097a8e6cfa77799b3ee5d9151f9f89fa95e3828e733548c43633f5362a3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 271, + 425, + 340, + 440 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 506, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "We note that the above convex reformulation approach divides an indefinite QCQP into two subprob-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 459, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 312, + 474 + ], + "score": 1.0, + "content": "lems: (i) computation of an approximate eigenpair", + "type": "text" + }, + { + "bbox": [ + 312, + 459, + 336, + 472 + ], + "score": 0.91, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "; (ii) solving the convex problem (41). As", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 365, + 484 + ], + "score": 1.0, + "content": "we shall see, by exploiting the finite-sum structure of the Hessian", + "type": "text" + }, + { + "bbox": [ + 366, + 471, + 380, + 482 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 471, + 506, + 484 + ], + "score": 1.0, + "content": ", these two subproblems can be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 482, + 496, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 496, + 495 + ], + "score": 1.0, + "content": "efficiently solved. We treat these two subproblems in the following two subsections, respectively.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 447, + 506, + 495 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 303, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 304, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 304, + 519 + ], + "score": 1.0, + "content": "E.2 FINDING THE SMALLEST EIGENVECTOR", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "To find a unit vector that satisfies requirement (40), we resort to the AppxPCA method (Allen-Zhu", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 537, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 338, + 552 + ], + "score": 1.0, + "content": "& Li, 2016), which first finds an approximate eigenvalue", + "type": "text" + }, + { + "bbox": [ + 339, + 539, + 395, + 549 + ], + "score": 0.9, + "content": "\\lambda = \\lambda _ { \\operatorname* { m i n } } - \\tilde { \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 537, + 506, + 552 + ], + "score": 1.0, + "content": "via binary search and then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 104, + 548, + 327, + 562 + ], + "score": 1.0, + "content": "applies Power method to the positive definite matrix", + "type": "text" + }, + { + "bbox": [ + 327, + 549, + 384, + 561 + ], + "score": 0.91, + "content": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "for a logarithmic number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 558, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 558, + 195, + 574 + ], + "score": 1.0, + "content": "iterations. Computing", + "type": "text" + }, + { + "bbox": [ + 196, + 560, + 258, + 573 + ], + "score": 0.92, + "content": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 } \\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 558, + 316, + 574 + ], + "score": 1.0, + "content": "for any vector", + "type": "text" + }, + { + "bbox": [ + 317, + 563, + 324, + 570 + ], + "score": 0.71, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 558, + 433, + 574 + ], + "score": 1.0, + "content": "is equivalent to solving the", + "type": "text" + }, + { + "bbox": [ + 433, + 561, + 439, + 570 + ], + "score": 0.41, + "content": "\\tilde { \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 558, + 506, + 574 + ], + "score": 1.0, + "content": "-strongly convex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 570, + 240, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 240, + 584 + ], + "score": 1.0, + "content": "problem (Allen-Zhu & Li, 2018)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 526, + 506, + 584 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 585, + 390, + 609 + ], + "lines": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "spans": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\mathbf { u } } \\phi ^ { k } ( \\mathbf { u } ) : = \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\mathbf { H } ^ { k } - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle", + "type": "interline_equation", + "image_path": "dac887be88ba8de15c2391acc4b84c9a52c388b533f2345e8611cffc16c8fef5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 585, + 390, + 609 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 161, + 627 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 162, + 611, + 272, + 627 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\cal { S } | } \\sum _ { i \\in \\cal { S } } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 610, + 342, + 627 + ], + "score": 1.0, + "content": ". Specifically, in", + "type": "text" + }, + { + "bbox": [ + 343, + 612, + 374, + 624 + ], + "score": 0.87, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 610, + 405, + 627 + ], + "score": 1.0, + "content": ", either", + "type": "text" + }, + { + "bbox": [ + 405, + 612, + 440, + 624 + ], + "score": 0.92, + "content": "| S | = n", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 610, + 463, + 627 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 463, + 612, + 478, + 623 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 610, + 506, + 627 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 173, + 641 + ], + "score": 1.0, + "content": "full Hessian) or", + "type": "text" + }, + { + "bbox": [ + 173, + 627, + 255, + 640 + ], + "score": 0.92, + "content": "| S | = \\tilde { \\mathcal { O } } ( L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 626, + 367, + 641 + ], + "score": 1.0, + "content": "by Lemma 4.1. Therefore,", + "type": "text" + }, + { + "bbox": [ + 368, + 627, + 390, + 640 + ], + "score": 0.91, + "content": "\\phi ^ { k } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "can be expressed as sum of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 639, + 195, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 195, + 650 + ], + "score": 1.0, + "content": "non-convex functions", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 610, + 506, + 650 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 650, + 452, + 680 + ], + "lines": [ + { + "bbox": [ + 159, + 650, + 452, + 680 + ], + "spans": [ + { + "bbox": [ + 159, + 650, + 452, + 680 + ], + "score": 0.94, + "content": "\\phi ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\phi _ { i } ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\left( \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle \\right) .", + "type": "interline_equation", + "image_path": "eec1192412c143e85db823e72aa5225f155ff2f2d760377afc4b2cc2ceb28aab.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 159, + 650, + 452, + 660.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 159, + 660.0, + 452, + 670.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 159, + 670.0, + 452, + 680.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 683, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 215, + 697 + ], + "score": 1.0, + "content": "By observing that each", + "type": "text" + }, + { + "bbox": [ + 216, + 683, + 228, + 696 + ], + "score": 0.9, + "content": "\\phi _ { i } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 682, + 338, + 697 + ], + "score": 1.0, + "content": "is non-convex and has", + "type": "text" + }, + { + "bbox": [ + 338, + 684, + 363, + 696 + ], + "score": 0.88, + "content": "\\left( 4 L _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 682, + 506, + 697 + ], + "score": 1.0, + "content": "-Lipschitz gradient, we can use", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 507, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 332, + 709 + ], + "score": 1.0, + "content": "KatyushaXS (Allen-Zhu, 2018a) to solve problem (43) in", + "type": "text" + }, + { + "bbox": [ + 333, + 696, + 428, + 710 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 695, + 507, + 709 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 190, + 722 + ], + "score": 1.0, + "content": "vector product (i.e.,", + "type": "text" + }, + { + "bbox": [ + 190, + 709, + 241, + 722 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\mathbf { u } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "evaluations. The following result is taken from (Agarwal et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 438, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 438, + 733 + ], + "score": 1.0, + "content": "2017, Section G.3), which gives the overall computation complexity of AppxPCA.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 682, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 237, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 238, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 238, + 97 + ], + "score": 1.0, + "content": "Algorithm 9 Fast QCQP Solver", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 98, + 201, + 110 + ], + "lines": [ + { + "bbox": [ + 105, + 96, + 202, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 96, + 138, + 113 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 139, + 98, + 202, + 111 + ], + "score": 0.35, + "content": "\\mathbf { H } ^ { k } , \\mathbf { g } ^ { k } , r , \\tilde { \\epsilon } , \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 109, + 106, + 506, + 166 + ], + "lines": [ + { + "bbox": [ + 110, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 210, + 124 + ], + "score": 1.0, + "content": "1: Use AppxPCA to find", + "type": "text" + }, + { + "bbox": [ + 211, + 110, + 236, + 123 + ], + "score": 0.91, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "satisfying (40), in which the matrix inverse is solved by KatyushaXS;", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 120, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 109, + 120, + 306, + 138 + ], + "score": 1.0, + "content": "2: Use KatyushaXW to solve (41) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 307, + 124, + 316, + 135 + ], + "score": 0.87, + "content": "\\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 120, + 388, + 138 + ], + "score": 1.0, + "content": ", i.e., find a vector", + "type": "text" + }, + { + "bbox": [ + 388, + 122, + 397, + 135 + ], + "score": 0.78, + "content": "\\tilde { \\mathbf { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 120, + 435, + 138 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 435, + 123, + 504, + 136 + ], + "score": 0.91, + "content": "\\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } \\leq \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 122, + 133, + 214, + 148 + ], + "spans": [ + { + "bbox": [ + 122, + 133, + 214, + 148 + ], + "score": 1.0, + "content": "with high probability;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 146, + 375, + 166 + ], + "spans": [ + { + "bbox": [ + 110, + 149, + 152, + 165 + ], + "score": 1.0, + "content": "3: Return", + "type": "text" + }, + { + "bbox": [ + 153, + 146, + 375, + 166 + ], + "score": 0.74, + "content": "\\tilde { \\mathbf { h } } + ( \\sqrt { \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ^ { 2 } - \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } ( \\| \\tilde { \\mathbf { h } } \\| ^ { 2 } - r ^ { 2 } ) } - \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ) \\tilde { \\mathbf { u } } / \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } .", + "type": "inline_equation", + "image_path": "5b6256759112b969590d667ee6c75be81d877badc23a90cb567f0b4aa0bdf962.jpg" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 177, + 202, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 204, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 204, + 192 + ], + "score": 1.0, + "content": "Algorithm 10 STRfree+", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 109, + 192, + 424, + 259 + ], + "lines": [ + { + "bbox": [ + 111, + 192, + 287, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 192, + 287, + 204 + ], + "score": 1.0, + "content": "1: In the same setting as MetaAlgorithm 7,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 111, + 202, + 325, + 216 + ], + "spans": [ + { + "bbox": [ + 111, + 203, + 121, + 214 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 132, + 202, + 246, + 216 + ], + "score": 1.0, + "content": "construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 247, + 203, + 259, + 214 + ], + "score": 0.86, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 202, + 325, + 216 + ], + "score": 1.0, + "content": "by Estimator 4;", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 212, + 275, + 227 + ], + "spans": [ + { + "bbox": [ + 111, + 214, + 121, + 226 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 212, + 246, + 227 + ], + "score": 1.0, + "content": "construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 246, + 214, + 261, + 224 + ], + "score": 0.86, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 212, + 275, + 227 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 111, + 223, + 258, + 238 + ], + "spans": [ + { + "bbox": [ + 111, + 225, + 121, + 237 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 142, + 223, + 182, + 238 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 182, + 225, + 252, + 237 + ], + "score": 0.92, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 223, + 258, + 238 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 234, + 424, + 250 + ], + "spans": [ + { + "bbox": [ + 110, + 236, + 121, + 248 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 234, + 209, + 250 + ], + "score": 1.0, + "content": "Option II: Draw", + "type": "text" + }, + { + "bbox": [ + 210, + 239, + 216, + 246 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 234, + 298, + 250 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 298, + 236, + 308, + 246 + ], + "score": 0.82, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 234, + 338, + 250 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 338, + 235, + 420, + 248 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 234, + 424, + 250 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 247, + 320, + 259 + ], + "spans": [ + { + "bbox": [ + 111, + 248, + 121, + 259 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 247, + 320, + 259 + ], + "score": 1.0, + "content": "use Algorithm 9 to solve QCQP subproblems.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 502, + 309 + ], + "lines": [ + { + "bbox": [ + 104, + 266, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 178, + 285 + ], + "score": 1.0, + "content": "Lemma E.2. Let", + "type": "text" + }, + { + "bbox": [ + 178, + 268, + 320, + 285 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\cal S } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\in \\mathbb { R } ^ { d \\times d } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 266, + 350, + 285 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 350, + 269, + 425, + 282 + ], + "score": 0.93, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 266, + 506, + 285 + ], + "score": 1.0, + "content": ". With probability at", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 127, + 298 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 128, + 285, + 152, + 297 + ], + "score": 0.54, + "content": "1 - p ,", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 283, + 337, + 298 + ], + "score": 1.0, + "content": ", AppxPCA produces a unit vector u satisfying", + "type": "text" + }, + { + "bbox": [ + 337, + 284, + 421, + 296 + ], + "score": 0.9, + "content": "\\mathbf { u } ^ { T } \\mathbf { H } ^ { k } \\mathbf { u } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 283, + 505, + 298 + ], + "score": 1.0, + "content": ". The total stochastic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 385, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 285, + 310 + ], + "score": 1.0, + "content": "Hessian-vector product oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 285, + 296, + 380, + 310 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 295, + 385, + 310 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 322, + 262, + 335 + ], + "lines": [ + { + "bbox": [ + 104, + 320, + 264, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 264, + 338 + ], + "score": 1.0, + "content": "E.3 SOLVING THE CONVEX QCQP", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "In what follows, we show that the convex problem (41) can be solved efficiently. We first observe that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 355, + 503, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 503, + 368 + ], + "score": 1.0, + "content": "problem (41) has a finite-sum structure and can be rewritten as an unconstrained problem of the form", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 372, + 482, + 403 + ], + "lines": [ + { + "bbox": [ + 110, + 372, + 482, + 403 + ], + "spans": [ + { + "bbox": [ + 110, + 372, + 482, + 403 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\mathbf { h \\in \\mathbb { R } } ^ { d } } \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\tilde { q } _ { i } ^ { k } ( \\mathbf { h } ) + \\Psi ( \\mathbf { h } ) = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\Big ( \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 } \\Big ) + \\Psi ( \\mathbf { h } ) ,", + "type": "interline_equation", + "image_path": "3801b173622be69c84e2ae4917f4dd8581c66820bf6fb61fa7f318f2e17b01f4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 110, + 372, + 482, + 382.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 110, + 382.3333333333333, + 482, + 392.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 110, + 392.66666666666663, + 482, + 402.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 506, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 135, + 423 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 410, + 181, + 423 + ], + "score": 0.93, + "content": "\\Psi ( { \\bf h } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 410, + 194, + 423 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 194, + 410, + 234, + 423 + ], + "score": 0.92, + "content": "\\| \\mathbf { h } \\| \\leq r", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 410, + 282, + 423 + ], + "score": 1.0, + "content": ", otherwise", + "type": "text" + }, + { + "bbox": [ + 283, + 410, + 342, + 422 + ], + "score": 0.9, + "content": "\\Psi ( \\mathbf { h } ) \\ = \\ + \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 410, + 429, + 423 + ], + "score": 1.0, + "content": ". We note that each", + "type": "text" + }, + { + "bbox": [ + 429, + 410, + 454, + 423 + ], + "score": 0.93, + "content": "\\tilde { q } _ { i } ^ { k } ( \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "in (45) has", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 422, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 130, + 434 + ], + "score": 0.87, + "content": "\\left( 4 L _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 422, + 280, + 435 + ], + "score": 1.0, + "content": "-Lipschitz continuous gradient since", + "type": "text" + }, + { + "bbox": [ + 280, + 422, + 354, + 434 + ], + "score": 0.9, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 422, + 373, + 435 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 374, + 422, + 408, + 433 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 422, + 506, + 435 + ], + "score": 1.0, + "content": ". Therefore, we can use", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 152, + 446 + ], + "score": 1.0, + "content": "KatyushaX", + "type": "text" + }, + { + "bbox": [ + 152, + 433, + 160, + 443 + ], + "score": 0.26, + "content": "\\mathrm { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "(Allen-Zhu, 2018a) to solve (45). By (Allen-Zhu, 2018a, Theorem 4.6), KatyushaXW", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 507, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 203, + 457 + ], + "score": 1.0, + "content": "finds a point h such that", + "type": "text" + }, + { + "bbox": [ + 204, + 445, + 284, + 458 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } ] \\leq \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 445, + 309, + 457 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 309, + 444, + 428, + 458 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } } \\cdot r / \\sqrt { \\tilde { \\epsilon } _ { 1 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 445, + 507, + 457 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 389, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 199, + 468 + ], + "score": 1.0, + "content": "vector products, where", + "type": "text" + }, + { + "bbox": [ + 200, + 457, + 209, + 468 + ], + "score": 0.88, + "content": "\\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 457, + 389, + 468 + ], + "score": 1.0, + "content": "is the target accuracy to be determined later.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 482, + 253, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 254, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 254, + 495 + ], + "score": 1.0, + "content": "E.4 PUTTING IT ALL TOGETHER", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "The complete procedure of our fast QCQP solver is summarized in Algorithm 9. Combining all the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 210, + 529 + ], + "score": 1.0, + "content": "above results and setting", + "type": "text" + }, + { + "bbox": [ + 211, + 515, + 262, + 529 + ], + "score": 0.86, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 515, + 267, + 529 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 267, + 515, + 321, + 528 + ], + "score": 0.86, + "content": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 515, + 343, + 529 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 343, + 515, + 381, + 527 + ], + "score": 0.92, + "content": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 515, + 506, + 529 + ], + "score": 1.0, + "content": ", one can find an approximate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 103, + 524, + 508, + 547 + ], + "spans": [ + { + "bbox": [ + 103, + 524, + 315, + 547 + ], + "score": 1.0, + "content": "solution to QCQP (8) satisfying requirement (24) in", + "type": "text" + }, + { + "bbox": [ + 315, + 528, + 426, + 542 + ], + "score": 0.92, + "content": "{ \\tilde { \\mathcal { O } } } ( | S | + | S | ^ { 3 / 4 } L _ { 2 } ^ { 0 . 2 5 } / \\epsilon ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 524, + 508, + 547 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 406, + 552 + ], + "score": 1.0, + "content": "vector product evaluations. By replacing Lanczos method with this solver in", + "type": "text" + }, + { + "bbox": [ + 406, + 541, + 436, + 551 + ], + "score": 0.87, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 541, + 505, + 552 + ], + "score": 1.0, + "content": ", we derive a new", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 217, + 564 + ], + "score": 1.0, + "content": "Hessian-free method called", + "type": "text" + }, + { + "bbox": [ + 217, + 552, + 253, + 563 + ], + "score": 0.91, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 551, + 506, + 564 + ], + "score": 1.0, + "content": ", which is summarized in Algorithm 10. The following theorem", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 562, + 417, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 288, + 575 + ], + "score": 1.0, + "content": "establishes the overall runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 289, + 563, + 325, + 574 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 562, + 383, + 575 + ], + "score": 1.0, + "content": "for finding an", + "type": "text" + }, + { + "bbox": [ + 383, + 564, + 388, + 572 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 562, + 417, + 575 + ], + "score": 1.0, + "content": "-SOSP.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 506, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 385, + 592 + ], + "score": 1.0, + "content": "Theorem E.1. Consider Algorithm 10 for solving problem (1). Let", + "type": "text" + }, + { + "bbox": [ + 385, + 579, + 422, + 591 + ], + "score": 0.87, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 578, + 425, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 577, + 477, + 592 + ], + "score": 0.86, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 578, + 481, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 482, + 579, + 505, + 591 + ], + "score": 0.77, + "content": "K =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 588, + 508, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 159, + 607 + ], + "score": 0.91, + "content": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 592, + 163, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 593, + 227, + 608 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } } ( 2 / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 592, + 230, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 595, + 269, + 606 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 592, + 272, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 595, + 311, + 606 + ], + "score": 0.85, + "content": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 592, + 332, + 608 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 346, + 588, + 508, + 612 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). The hyper-parameters√", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 608, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 431, + 620 + ], + "score": 1.0, + "content": "in Estimator 4 are set to the same values as those in Lemma 4.2. Besides, let", + "type": "text" + }, + { + "bbox": [ + 431, + 608, + 486, + 620 + ], + "score": 0.92, + "content": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 609, + 505, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 146, + 630 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 618, + 264, + 632 + ], + "score": 1.0, + "content": "in Algorithm 9. To find an", + "type": "text" + }, + { + "bbox": [ + 264, + 620, + 329, + 631 + ], + "score": 0.65, + "content": "O ( \\epsilon ) { - } S O S P ~ w . p", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 618, + 367, + 632 + ], + "score": 1.0, + "content": ". at least", + "type": "text" + }, + { + "bbox": [ + 368, + 620, + 392, + 630 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 618, + 506, + 632 + ], + "score": 1.0, + "content": ", the runtime complexity is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 629, + 347, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 343, + 645 + ], + "score": 0.83, + "content": "\\tilde { \\mathcal { O } } ( d \\mathrm { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 629, + 347, + 646 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 324, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 324, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 324, + 672 + ], + "score": 1.0, + "content": "Proof. The proof directly follows from that in Sec. D.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 270, + 699 + ], + "score": 1.0, + "content": "We compare the runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 270, + 687, + 301, + 698 + ], + "score": 0.88, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 686, + 320, + 699 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 687, + 357, + 698 + ], + "score": 0.9, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 686, + 505, + 699 + ], + "score": 1.0, + "content": "with existing Hessian free methods", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 696, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 230, + 711 + ], + "score": 1.0, + "content": "in Table 2. One can see that", + "type": "text" + }, + { + "bbox": [ + 230, + 698, + 261, + 709 + ], + "score": 0.85, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 696, + 472, + 711 + ], + "score": 1.0, + "content": "strictly outperforms Hessian-free Cubic. Besides,", + "type": "text" + }, + { + "bbox": [ + 473, + 698, + 504, + 709 + ], + "score": 0.81, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 212, + 723 + ], + "score": 1.0, + "content": "outperforms Fast-Cubic if", + "type": "text" + }, + { + "bbox": [ + 212, + 709, + 273, + 722 + ], + "score": 0.92, + "content": "n \\ge \\Omega ( 1 / \\epsilon ^ { 4 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", which is a mild condition for large-scale problems in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 206, + 732 + ], + "score": 1.0, + "content": "moderate accuracy case.", + "type": "text" + }, + { + "bbox": [ + 207, + 721, + 243, + 732 + ], + "score": 0.85, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "strictly outperforms both Hessian-free Cubic and Fast-Cubic. We", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 659, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 496, + 661, + 504, + 669 + ], + "spans": [ + { + "bbox": [ + 496, + 661, + 504, + 669 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 237, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 238, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 238, + 97 + ], + "score": 1.0, + "content": "Algorithm 9 Fast QCQP Solver", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 98, + 201, + 110 + ], + "lines": [ + { + "bbox": [ + 105, + 96, + 202, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 96, + 138, + 113 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 139, + 98, + 202, + 111 + ], + "score": 0.35, + "content": "\\mathbf { H } ^ { k } , \\mathbf { g } ^ { k } , r , \\tilde { \\epsilon } , \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 96, + 202, + 113 + ] + }, + { + "type": "list", + "bbox": [ + 109, + 106, + 506, + 166 + ], + "lines": [ + { + "bbox": [ + 110, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 210, + 124 + ], + "score": 1.0, + "content": "1: Use AppxPCA to find", + "type": "text" + }, + { + "bbox": [ + 211, + 110, + 236, + 123 + ], + "score": 0.91, + "content": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "satisfying (40), in which the matrix inverse is solved by KatyushaXS;", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 120, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 109, + 120, + 306, + 138 + ], + "score": 1.0, + "content": "2: Use KatyushaXW to solve (41) up to accuracy", + "type": "text" + }, + { + "bbox": [ + 307, + 124, + 316, + 135 + ], + "score": 0.87, + "content": "\\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 120, + 388, + 138 + ], + "score": 1.0, + "content": ", i.e., find a vector", + "type": "text" + }, + { + "bbox": [ + 388, + 122, + 397, + 135 + ], + "score": 0.78, + "content": "\\tilde { \\mathbf { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 120, + 435, + 138 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 435, + 123, + 504, + 136 + ], + "score": 0.91, + "content": "\\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } \\leq \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 133, + 214, + 148 + ], + "spans": [ + { + "bbox": [ + 122, + 133, + 214, + 148 + ], + "score": 1.0, + "content": "with high probability;", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 146, + 375, + 166 + ], + "spans": [ + { + "bbox": [ + 110, + 149, + 152, + 165 + ], + "score": 1.0, + "content": "3: Return", + "type": "text" + }, + { + "bbox": [ + 153, + 146, + 375, + 166 + ], + "score": 0.74, + "content": "\\tilde { \\mathbf { h } } + ( \\sqrt { \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ^ { 2 } - \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } ( \\| \\tilde { \\mathbf { h } } \\| ^ { 2 } - r ^ { 2 } ) } - \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ) \\tilde { \\mathbf { u } } / \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } .", + "type": "inline_equation", + "image_path": "5b6256759112b969590d667ee6c75be81d877badc23a90cb567f0b4aa0bdf962.jpg" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 109, + 109, + 505, + 166 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 177, + 202, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 204, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 204, + 192 + ], + "score": 1.0, + "content": "Algorithm 10 STRfree+", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "index", + "bbox": [ + 109, + 192, + 424, + 259 + ], + "lines": [ + { + "bbox": [ + 111, + 192, + 287, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 192, + 287, + 204 + ], + "score": 1.0, + "content": "1: In the same setting as MetaAlgorithm 7,", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 202, + 325, + 216 + ], + "spans": [ + { + "bbox": [ + 111, + 203, + 121, + 214 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 132, + 202, + 246, + 216 + ], + "score": 1.0, + "content": "construct gradient estimator", + "type": "text" + }, + { + "bbox": [ + 247, + 203, + 259, + 214 + ], + "score": 0.86, + "content": "\\mathbf { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 202, + 325, + 216 + ], + "score": 1.0, + "content": "by Estimator 4;", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 212, + 275, + 227 + ], + "spans": [ + { + "bbox": [ + 111, + 214, + 121, + 226 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 212, + 246, + 227 + ], + "score": 1.0, + "content": "construct Hessian estimator", + "type": "text" + }, + { + "bbox": [ + 246, + 214, + 261, + 224 + ], + "score": 0.86, + "content": "\\mathbf { H } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 212, + 275, + 227 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 223, + 258, + 238 + ], + "spans": [ + { + "bbox": [ + 111, + 225, + 121, + 237 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 142, + 223, + 182, + 238 + ], + "score": 1.0, + "content": "Option I:", + "type": "text" + }, + { + "bbox": [ + 182, + 225, + 252, + 237 + ], + "score": 0.92, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 223, + 258, + 238 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 234, + 424, + 250 + ], + "spans": [ + { + "bbox": [ + 110, + 236, + 121, + 248 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 234, + 209, + 250 + ], + "score": 1.0, + "content": "Option II: Draw", + "type": "text" + }, + { + "bbox": [ + 210, + 239, + 216, + 246 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 234, + 298, + 250 + ], + "score": 1.0, + "content": "samples indexed by", + "type": "text" + }, + { + "bbox": [ + 298, + 236, + 308, + 246 + ], + "score": 0.82, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 234, + 338, + 250 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 338, + 235, + 420, + 248 + ], + "score": 0.91, + "content": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 234, + 424, + 250 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 247, + 320, + 259 + ], + "spans": [ + { + "bbox": [ + 111, + 248, + 121, + 259 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 247, + 320, + 259 + ], + "score": 1.0, + "content": "use Algorithm 9 to solve QCQP subproblems.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 9.5, + "bbox_fs": [ + 110, + 192, + 424, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 502, + 309 + ], + "lines": [ + { + "bbox": [ + 104, + 266, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 178, + 285 + ], + "score": 1.0, + "content": "Lemma E.2. Let", + "type": "text" + }, + { + "bbox": [ + 178, + 268, + 320, + 285 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\cal S } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\in \\mathbb { R } ^ { d \\times d } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 266, + 350, + 285 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 350, + 269, + 425, + 282 + ], + "score": 0.93, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 266, + 506, + 285 + ], + "score": 1.0, + "content": ". With probability at", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 127, + 298 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 128, + 285, + 152, + 297 + ], + "score": 0.54, + "content": "1 - p ,", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 283, + 337, + 298 + ], + "score": 1.0, + "content": ", AppxPCA produces a unit vector u satisfying", + "type": "text" + }, + { + "bbox": [ + 337, + 284, + 421, + 296 + ], + "score": 0.9, + "content": "\\mathbf { u } ^ { T } \\mathbf { H } ^ { k } \\mathbf { u } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } .", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 283, + 505, + 298 + ], + "score": 1.0, + "content": ". The total stochastic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 385, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 285, + 310 + ], + "score": 1.0, + "content": "Hessian-vector product oracle complexity is", + "type": "text" + }, + { + "bbox": [ + 285, + 296, + 380, + 310 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 295, + 385, + 310 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 266, + 506, + 310 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 322, + 262, + 335 + ], + "lines": [ + { + "bbox": [ + 104, + 320, + 264, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 264, + 338 + ], + "score": 1.0, + "content": "E.3 SOLVING THE CONVEX QCQP", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "In what follows, we show that the convex problem (41) can be solved efficiently. We first observe that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 355, + 503, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 503, + 368 + ], + "score": 1.0, + "content": "problem (41) has a finite-sum structure and can be rewritten as an unconstrained problem of the form", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 343, + 506, + 368 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 372, + 482, + 403 + ], + "lines": [ + { + "bbox": [ + 110, + 372, + 482, + 403 + ], + "spans": [ + { + "bbox": [ + 110, + 372, + 482, + 403 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\mathbf { h \\in \\mathbb { R } } ^ { d } } \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\tilde { q } _ { i } ^ { k } ( \\mathbf { h } ) + \\Psi ( \\mathbf { h } ) = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\Big ( \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 } \\Big ) + \\Psi ( \\mathbf { h } ) ,", + "type": "interline_equation", + "image_path": "3801b173622be69c84e2ae4917f4dd8581c66820bf6fb61fa7f318f2e17b01f4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 110, + 372, + 482, + 382.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 110, + 382.3333333333333, + 482, + 392.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 110, + 392.66666666666663, + 482, + 402.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 506, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 135, + 423 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 410, + 181, + 423 + ], + "score": 0.93, + "content": "\\Psi ( { \\bf h } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 410, + 194, + 423 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 194, + 410, + 234, + 423 + ], + "score": 0.92, + "content": "\\| \\mathbf { h } \\| \\leq r", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 410, + 282, + 423 + ], + "score": 1.0, + "content": ", otherwise", + "type": "text" + }, + { + "bbox": [ + 283, + 410, + 342, + 422 + ], + "score": 0.9, + "content": "\\Psi ( \\mathbf { h } ) \\ = \\ + \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 410, + 429, + 423 + ], + "score": 1.0, + "content": ". We note that each", + "type": "text" + }, + { + "bbox": [ + 429, + 410, + 454, + 423 + ], + "score": 0.93, + "content": "\\tilde { q } _ { i } ^ { k } ( \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "in (45) has", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 422, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 130, + 434 + ], + "score": 0.87, + "content": "\\left( 4 L _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 422, + 280, + 435 + ], + "score": 1.0, + "content": "-Lipschitz continuous gradient since", + "type": "text" + }, + { + "bbox": [ + 280, + 422, + 354, + 434 + ], + "score": 0.9, + "content": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 422, + 373, + 435 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 374, + 422, + 408, + 433 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 422, + 506, + 435 + ], + "score": 1.0, + "content": ". Therefore, we can use", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 152, + 446 + ], + "score": 1.0, + "content": "KatyushaX", + "type": "text" + }, + { + "bbox": [ + 152, + 433, + 160, + 443 + ], + "score": 0.26, + "content": "\\mathrm { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "(Allen-Zhu, 2018a) to solve (45). By (Allen-Zhu, 2018a, Theorem 4.6), KatyushaXW", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 507, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 203, + 457 + ], + "score": 1.0, + "content": "finds a point h such that", + "type": "text" + }, + { + "bbox": [ + 204, + 445, + 284, + 458 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } ] \\leq \\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 445, + 309, + 457 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 309, + 444, + 428, + 458 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } } \\cdot r / \\sqrt { \\tilde { \\epsilon } _ { 1 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 445, + 507, + 457 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 389, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 199, + 468 + ], + "score": 1.0, + "content": "vector products, where", + "type": "text" + }, + { + "bbox": [ + 200, + 457, + 209, + 468 + ], + "score": 0.88, + "content": "\\tilde { \\epsilon } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 457, + 389, + 468 + ], + "score": 1.0, + "content": "is the target accuracy to be determined later.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 410, + 507, + 468 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 482, + 253, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 254, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 254, + 495 + ], + "score": 1.0, + "content": "E.4 PUTTING IT ALL TOGETHER", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "The complete procedure of our fast QCQP solver is summarized in Algorithm 9. Combining all the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 210, + 529 + ], + "score": 1.0, + "content": "above results and setting", + "type": "text" + }, + { + "bbox": [ + 211, + 515, + 262, + 529 + ], + "score": 0.86, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 515, + 267, + 529 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 267, + 515, + 321, + 528 + ], + "score": 0.86, + "content": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 515, + 343, + 529 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 343, + 515, + 381, + 527 + ], + "score": 0.92, + "content": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 515, + 506, + 529 + ], + "score": 1.0, + "content": ", one can find an approximate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 103, + 524, + 508, + 547 + ], + "spans": [ + { + "bbox": [ + 103, + 524, + 315, + 547 + ], + "score": 1.0, + "content": "solution to QCQP (8) satisfying requirement (24) in", + "type": "text" + }, + { + "bbox": [ + 315, + 528, + 426, + 542 + ], + "score": 0.92, + "content": "{ \\tilde { \\mathcal { O } } } ( | S | + | S | ^ { 3 / 4 } L _ { 2 } ^ { 0 . 2 5 } / \\epsilon ^ { 0 . 2 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 524, + 508, + 547 + ], + "score": 1.0, + "content": "stochastic Hessian-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 406, + 552 + ], + "score": 1.0, + "content": "vector product evaluations. By replacing Lanczos method with this solver in", + "type": "text" + }, + { + "bbox": [ + 406, + 541, + 436, + 551 + ], + "score": 0.87, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 541, + 505, + 552 + ], + "score": 1.0, + "content": ", we derive a new", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 217, + 564 + ], + "score": 1.0, + "content": "Hessian-free method called", + "type": "text" + }, + { + "bbox": [ + 217, + 552, + 253, + 563 + ], + "score": 0.91, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 551, + 506, + 564 + ], + "score": 1.0, + "content": ", which is summarized in Algorithm 10. The following theorem", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 562, + 417, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 288, + 575 + ], + "score": 1.0, + "content": "establishes the overall runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 289, + 563, + 325, + 574 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 562, + 383, + 575 + ], + "score": 1.0, + "content": "for finding an", + "type": "text" + }, + { + "bbox": [ + 383, + 564, + 388, + 572 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 562, + 417, + 575 + ], + "score": 1.0, + "content": "-SOSP.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 103, + 502, + 508, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 506, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 385, + 592 + ], + "score": 1.0, + "content": "Theorem E.1. Consider Algorithm 10 for solving problem (1). Let", + "type": "text" + }, + { + "bbox": [ + 385, + 579, + 422, + 591 + ], + "score": 0.87, + "content": "\\zeta = 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 578, + 425, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 577, + 477, + 592 + ], + "score": 0.86, + "content": "r = \\sqrt { \\epsilon / L _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 578, + 481, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 482, + 579, + 505, + 591 + ], + "score": 0.77, + "content": "K =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 588, + 508, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 159, + 607 + ], + "score": 0.91, + "content": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 592, + 163, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 593, + 227, + 608 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } } ( 2 / \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 592, + 230, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 595, + 269, + 606 + ], + "score": 0.82, + "content": "c _ { 1 } = 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 592, + 272, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 595, + 311, + 606 + ], + "score": 0.85, + "content": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 592, + 332, + 608 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 346, + 588, + 508, + 612 + ], + "score": 1.0, + "content": "32L21\u000fL2 log(4d/δ). The hyper-parameters√", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 608, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 431, + 620 + ], + "score": 1.0, + "content": "in Estimator 4 are set to the same values as those in Lemma 4.2. Besides, let", + "type": "text" + }, + { + "bbox": [ + 431, + 608, + 486, + 620 + ], + "score": 0.92, + "content": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 609, + 505, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 146, + 630 + ], + "score": 0.91, + "content": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 618, + 264, + 632 + ], + "score": 1.0, + "content": "in Algorithm 9. To find an", + "type": "text" + }, + { + "bbox": [ + 264, + 620, + 329, + 631 + ], + "score": 0.65, + "content": "O ( \\epsilon ) { - } S O S P ~ w . p", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 618, + 367, + 632 + ], + "score": 1.0, + "content": ". at least", + "type": "text" + }, + { + "bbox": [ + 368, + 620, + 392, + 630 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 618, + 506, + 632 + ], + "score": 1.0, + "content": ", the runtime complexity is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 629, + 347, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 343, + 645 + ], + "score": 0.83, + "content": "\\tilde { \\mathcal { O } } ( d \\mathrm { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 629, + 347, + 646 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 577, + 508, + 646 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 324, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 324, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 324, + 672 + ], + "score": 1.0, + "content": "Proof. The proof directly follows from that in Sec. D.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 658, + 324, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 270, + 699 + ], + "score": 1.0, + "content": "We compare the runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 270, + 687, + 301, + 698 + ], + "score": 0.88, + "content": "\\operatorname { S T R } _ { \\mathrm { f r e e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 686, + 320, + 699 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 687, + 357, + 698 + ], + "score": 0.9, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 686, + 505, + 699 + ], + "score": 1.0, + "content": "with existing Hessian free methods", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 696, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 230, + 711 + ], + "score": 1.0, + "content": "in Table 2. One can see that", + "type": "text" + }, + { + "bbox": [ + 230, + 698, + 261, + 709 + ], + "score": 0.85, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 696, + 472, + 711 + ], + "score": 1.0, + "content": "strictly outperforms Hessian-free Cubic. Besides,", + "type": "text" + }, + { + "bbox": [ + 473, + 698, + 504, + 709 + ], + "score": 0.81, + "content": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 212, + 723 + ], + "score": 1.0, + "content": "outperforms Fast-Cubic if", + "type": "text" + }, + { + "bbox": [ + 212, + 709, + 273, + 722 + ], + "score": 0.92, + "content": "n \\ge \\Omega ( 1 / \\epsilon ^ { 4 / 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", which is a mild condition for large-scale problems in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 206, + 732 + ], + "score": 1.0, + "content": "moderate accuracy case.", + "type": "text" + }, + { + "bbox": [ + 207, + 721, + 243, + 732 + ], + "score": 0.85, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "strictly outperforms both Hessian-free Cubic and Fast-Cubic. We", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "note that the runtime analyses in (Tripuraneni et al., 2018; Zhou & Gu, 2019) rely on an additional", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 389, + 337, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 249, + 402 + ], + "score": 1.0, + "content": "assumption which states that for all", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 250, + 392, + 257, + 400 + ], + "score": 0.73, + "content": "\\mathbf { x }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 257, + 389, + 337, + 402 + ], + "score": 1.0, + "content": ", with probability 1,", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 686, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 83, + 503, + 331 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 83, + 503, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 83, + 503, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 503, + 331 + ], + "score": 0.975, + "type": "image", + "image_path": "95ff5517569e6471795a7c5ec47d8ab253bfdb1a9cc4c1823c6362cb6ef03d6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 83, + 503, + 165.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 165.66666666666669, + 503, + 248.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 248.33333333333337, + 503, + 331.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 343, + 504, + 366 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "score": 1.0, + "content": "Figure 4: Comparison of gradient norm on both the non-convex logistic regression and nonlinear", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 354, + 198, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 198, + 367 + ], + "score": 1.0, + "content": "least square problems.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 105, + 379, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "note that the runtime analyses in (Tripuraneni et al., 2018; Zhou & Gu, 2019) rely on an additional", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 389, + 337, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 249, + 402 + ], + "score": 1.0, + "content": "assumption which states that for all", + "type": "text" + }, + { + "bbox": [ + 250, + 392, + 257, + 400 + ], + "score": 0.73, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 389, + 337, + 402 + ], + "score": 1.0, + "content": ", with probability 1,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 407, + 359, + 421 + ], + "lines": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "spans": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla F ( \\mathbf { x } ) \\| \\leq \\sigma . } \\end{array}", + "type": "interline_equation", + "image_path": "509f068284501f3903883673b0d3857c02310b9d5bdc531a8c42ef5487a8f873.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 426, + 506, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "Under this additional assumption, one can use the same argument as in Section B.2 and B.3 to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 436, + 507, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 150, + 453 + ], + "score": 1.0, + "content": "prove that", + "type": "text" + }, + { + "bbox": [ + 150, + 439, + 181, + 450 + ], + "score": 0.87, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 436, + 320, + 453 + ], + "score": 1.0, + "content": "achieves a runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 321, + 437, + 502, + 451 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , n ^ { 0 . 5 } / \\epsilon ^ { 2 } + 1 / \\epsilon ^ { 2 . 7 5 } , 1 / \\epsilon ^ { 3 } \\} ) ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 436, + 507, + 453 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 450, + 508, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 261, + 464 + ], + "score": 1.0, + "content": "Similarly, the runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 261, + 451, + 298, + 462 + ], + "score": 0.91, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 450, + 341, + 464 + ], + "score": 1.0, + "content": "would be", + "type": "text" + }, + { + "bbox": [ + 342, + 451, + 508, + 464 + ], + "score": 0.88, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } +", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 461, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 164, + 475 + ], + "score": 0.92, + "content": "\\sqrt { n } / \\epsilon ^ { 2 } , \\dot { 1 } / \\epsilon ^ { 3 } \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 461, + 244, + 477 + ], + "score": 1.0, + "content": "). In this sense, both", + "type": "text" + }, + { + "bbox": [ + 244, + 463, + 274, + 474 + ], + "score": 0.88, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 461, + 291, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 463, + 328, + 474 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 461, + 459, + 477 + ], + "score": 1.0, + "content": "outperform Stochastic Cubic and", + "type": "text" + }, + { + "bbox": [ + 459, + 464, + 503, + 474 + ], + "score": 0.8, + "content": "\\mathrm { S R V R C _ { \\mathrm { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 461, + 507, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "table", + "bbox": [ + 166, + 499, + 440, + 560 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 208, + 479, + 403, + 491 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 478, + 403, + 493 + ], + "spans": [ + { + "bbox": [ + 206, + 478, + 403, + 493 + ], + "score": 1.0, + "content": "Table 3: Descriptions of the five testing datasets.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "table_body", + "bbox": [ + 166, + 499, + 440, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 499, + 440, + 560 + ], + "spans": [ + { + "bbox": [ + 166, + 499, + 440, + 560 + ], + "score": 0.979, + "html": "
#sample#feature#sample#feature
a9a32.561123w8a49,749300
ijcnn49,99022phishing7,60468
codrna28.3058mnist60,000784
epsilon40,0002,000
", + "type": "table", + "image_path": "aaa7db88de47855f51ef9ff0d5360222271a70e204d05e9934103bd4e1614d5a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 166, + 499, + 440, + 519.3333333333334 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 519.3333333333334, + 440, + 539.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 539.6666666666667, + 440, + 560.0000000000001 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 13.0 + }, + { + "type": "title", + "bbox": [ + 106, + 577, + 328, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 328, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 328, + 591 + ], + "score": 1.0, + "content": "F ADDITIONAL EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 268, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 270, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 270, + 639 + ], + "score": 1.0, + "content": "F.1 MORE EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 660 + ], + "score": 1.0, + "content": "Descriptions of Testing Datasets. We briefly introduce the seven testing datasets in the manuscript.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "score": 1.0, + "content": "Among them, six datasets are provided by the LibSVM website2, including (a9a, ijcnn, codrna,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 670, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 681 + ], + "score": 1.0, + "content": "phishing, w8a and epsilon). The detailed information is summarized in Table 3. We can observe", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 680, + 472, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 472, + 693 + ], + "score": 1.0, + "content": "that these datasets are different from each other in feature dimension, training samples, etc.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 700, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "1To obtain this complexity, one needs to replace the full gradient in line 2 of Estimator 4 (and line 6 of", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 709, + 384, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 331, + 722 + ], + "score": 1.0, + "content": "MetaAlgorithm 7) with a mini-batch stochastic gradient when", + "type": "text" + }, + { + "bbox": [ + 331, + 710, + 380, + 721 + ], + "score": 0.92, + "content": "\\overline { { n } } \\geq \\Omega ( 1 / \\epsilon ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 709, + 384, + 722 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 324, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 324, + 733 + ], + "score": 1.0, + "content": "2https://www.csie.ntu.edu.tw/ cjlin/libsvmtools/datasets/", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 83, + 503, + 331 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 83, + 503, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 83, + 503, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 503, + 331 + ], + "score": 0.975, + "type": "image", + "image_path": "95ff5517569e6471795a7c5ec47d8ab253bfdb1a9cc4c1823c6362cb6ef03d6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 83, + 503, + 165.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 165.66666666666669, + 503, + 248.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 248.33333333333337, + 503, + 331.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 343, + 504, + 366 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "score": 1.0, + "content": "Figure 4: Comparison of gradient norm on both the non-convex logistic regression and nonlinear", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 354, + 198, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 198, + 367 + ], + "score": 1.0, + "content": "least square problems.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 105, + 379, + 504, + 402 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 378, + 505, + 402 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 407, + 359, + 421 + ], + "lines": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "spans": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla F ( \\mathbf { x } ) \\| \\leq \\sigma . } \\end{array}", + "type": "interline_equation", + "image_path": "509f068284501f3903883673b0d3857c02310b9d5bdc531a8c42ef5487a8f873.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 252, + 407, + 359, + 421 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 426, + 506, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "Under this additional assumption, one can use the same argument as in Section B.2 and B.3 to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 436, + 507, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 150, + 453 + ], + "score": 1.0, + "content": "prove that", + "type": "text" + }, + { + "bbox": [ + 150, + 439, + 181, + 450 + ], + "score": 0.87, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 436, + 320, + 453 + ], + "score": 1.0, + "content": "achieves a runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 321, + 437, + 502, + 451 + ], + "score": 0.9, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , n ^ { 0 . 5 } / \\epsilon ^ { 2 } + 1 / \\epsilon ^ { 2 . 7 5 } , 1 / \\epsilon ^ { 3 } \\} ) ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 436, + 507, + 453 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 450, + 508, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 261, + 464 + ], + "score": 1.0, + "content": "Similarly, the runtime complexity of", + "type": "text" + }, + { + "bbox": [ + 261, + 451, + 298, + 462 + ], + "score": 0.91, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 450, + 341, + 464 + ], + "score": 1.0, + "content": "would be", + "type": "text" + }, + { + "bbox": [ + 342, + 451, + 508, + 464 + ], + "score": 0.88, + "content": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } +", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 461, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 164, + 475 + ], + "score": 0.92, + "content": "\\sqrt { n } / \\epsilon ^ { 2 } , \\dot { 1 } / \\epsilon ^ { 3 } \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 461, + 244, + 477 + ], + "score": 1.0, + "content": "). In this sense, both", + "type": "text" + }, + { + "bbox": [ + 244, + 463, + 274, + 474 + ], + "score": 0.88, + "content": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 461, + 291, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 463, + 328, + 474 + ], + "score": 0.89, + "content": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 461, + 459, + 477 + ], + "score": 1.0, + "content": "outperform Stochastic Cubic and", + "type": "text" + }, + { + "bbox": [ + 459, + 464, + 503, + 474 + ], + "score": 0.8, + "content": "\\mathrm { S R V R C _ { \\mathrm { f r e e } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 461, + 507, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 426, + 508, + 477 + ] + }, + { + "type": "table", + "bbox": [ + 166, + 499, + 440, + 560 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 208, + 479, + 403, + 491 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 478, + 403, + 493 + ], + "spans": [ + { + "bbox": [ + 206, + 478, + 403, + 493 + ], + "score": 1.0, + "content": "Table 3: Descriptions of the five testing datasets.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "table_body", + "bbox": [ + 166, + 499, + 440, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 499, + 440, + 560 + ], + "spans": [ + { + "bbox": [ + 166, + 499, + 440, + 560 + ], + "score": 0.979, + "html": "
#sample#feature#sample#feature
a9a32.561123w8a49,749300
ijcnn49,99022phishing7,60468
codrna28.3058mnist60,000784
epsilon40,0002,000
", + "type": "table", + "image_path": "aaa7db88de47855f51ef9ff0d5360222271a70e204d05e9934103bd4e1614d5a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 166, + 499, + 440, + 519.3333333333334 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 519.3333333333334, + 440, + 539.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 539.6666666666667, + 440, + 560.0000000000001 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 13.0 + }, + { + "type": "title", + "bbox": [ + 106, + 577, + 328, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 328, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 328, + 591 + ], + "score": 1.0, + "content": "F ADDITIONAL EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 268, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 270, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 270, + 639 + ], + "score": 1.0, + "content": "F.1 MORE EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 660 + ], + "score": 1.0, + "content": "Descriptions of Testing Datasets. We briefly introduce the seven testing datasets in the manuscript.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "score": 1.0, + "content": "Among them, six datasets are provided by the LibSVM website2, including (a9a, ijcnn, codrna,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 670, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 681 + ], + "score": 1.0, + "content": "phishing, w8a and epsilon). The detailed information is summarized in Table 3. We can observe", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 680, + 472, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 472, + 693 + ], + "score": 1.0, + "content": "that these datasets are different from each other in feature dimension, training samples, etc.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 646, + 507, + 693 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 507, + 95 + ], + "score": 1.0, + "content": "Experimental Settings. In the manuscript, following SVRC (Zhou et al., 2018c) and Lite-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 502, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 405, + 107 + ], + "score": 1.0, + "content": "SVRC (Zhou et al., 2018b), we select hyper parameters from a set, namely", + "type": "text" + }, + { + "bbox": [ + 406, + 95, + 416, + 105 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 92, + 439, + 107 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 440, + 93, + 502, + 106 + ], + "score": 0.92, + "content": "\\{ 0 . 2 n , 0 . 6 n , n \\}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 117, + 115 + ], + "score": 0.81, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 102, + 140, + 118 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 141, + 105, + 221, + 116 + ], + "score": 0.89, + "content": "\\lbrace 0 . 0 1 n , 0 . 1 n , 0 . 2 n \\rbrace", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 102, + 224, + 118 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 225, + 106, + 236, + 116 + ], + "score": 0.83, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 102, + 253, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 253, + 106, + 264, + 116 + ], + "score": 0.86, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 102, + 288, + 118 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 288, + 104, + 406, + 116 + ], + "score": 0.87, + "content": "\\{ 0 . 0 1 n ^ { 0 . 5 } , 0 . 0 5 n ^ { 0 . 5 } , 0 . 1 n ^ { 0 . 5 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 102, + 507, + 118 + ], + "score": 1.0, + "content": ". For the Hessian estima-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 221, + 127 + ], + "score": 1.0, + "content": "tion at the beginning of each", + "type": "text" + }, + { + "bbox": [ + 221, + 117, + 232, + 127 + ], + "score": 0.86, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "iterations, we use full Hessian. Similarly, for the gradient estimation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 470, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 204, + 139 + ], + "score": 1.0, + "content": "at the beginning of each", + "type": "text" + }, + { + "bbox": [ + 204, + 128, + 215, + 138 + ], + "score": 0.85, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 126, + 470, + 139 + ], + "score": 1.0, + "content": "iterations, we adopt the full gradient as the gradient estimation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "Memory Analysis. SVRC, Lite-SVRC, and our method need to store the previous and current", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 338, + 167 + ], + "score": 1.0, + "content": "gradient and Hessian and thus their memory complexity is", + "type": "text" + }, + { + "bbox": [ + 339, + 154, + 379, + 165 + ], + "score": 0.88, + "content": "2 ( d ^ { 2 } + d )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 154, + 506, + 167 + ], + "score": 1.0, + "content": ". TR, CR (ARC) and SCR need", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 339, + 178 + ], + "score": 1.0, + "content": "to compute current and Hessian and thus has complexity", + "type": "text" + }, + { + "bbox": [ + 340, + 165, + 368, + 176 + ], + "score": 0.88, + "content": "d ^ { 2 } + d", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 164, + 505, + 178 + ], + "score": 1.0, + "content": ". So these memory is of the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "order but our method is much faster than TR, CR and SCR both validated by theory and experiments.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 201, + 222, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 223, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 223, + 213 + ], + "score": 1.0, + "content": "F.2 MORE EXPERIMENTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 505, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "Here we give more experimental results on the gradient norm v.s. the algorithm running time and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 246 + ], + "score": 1.0, + "content": "the Hessian sample complexity. Due to the space limit, in the manuscript we only provide the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "gradient-norm related results on the codrna dataset. Here we provide results of a9a and ijcnn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "datasets in Figure 4. One can observe that on both the logistic regression with non-convex regularizer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 265, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 278 + ], + "score": 1.0, + "content": "and the nonlinear least square problems, the proposed algorithm always shows sharper convergence", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "behavior in terms of both the running time and the Hessian sample complexity. These observations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "are consistent with the results in Figure 2 in the manuscript. All these results demonstrate the high", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 299, + 433, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 433, + 311 + ], + "score": 1.0, + "content": "efficiency of our proposed algorithm and also confirm our theoretical implication.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 507, + 95 + ], + "score": 1.0, + "content": "Experimental Settings. In the manuscript, following SVRC (Zhou et al., 2018c) and Lite-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 502, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 405, + 107 + ], + "score": 1.0, + "content": "SVRC (Zhou et al., 2018b), we select hyper parameters from a set, namely", + "type": "text" + }, + { + "bbox": [ + 406, + 95, + 416, + 105 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 92, + 439, + 107 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 440, + 93, + 502, + 106 + ], + "score": 0.92, + "content": "\\{ 0 . 2 n , 0 . 6 n , n \\}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 117, + 115 + ], + "score": 0.81, + "content": "s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 102, + 140, + 118 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 141, + 105, + 221, + 116 + ], + "score": 0.89, + "content": "\\lbrace 0 . 0 1 n , 0 . 1 n , 0 . 2 n \\rbrace", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 102, + 224, + 118 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 225, + 106, + 236, + 116 + ], + "score": 0.83, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 102, + 253, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 253, + 106, + 264, + 116 + ], + "score": 0.86, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 102, + 288, + 118 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 288, + 104, + 406, + 116 + ], + "score": 0.87, + "content": "\\{ 0 . 0 1 n ^ { 0 . 5 } , 0 . 0 5 n ^ { 0 . 5 } , 0 . 1 n ^ { 0 . 5 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 102, + 507, + 118 + ], + "score": 1.0, + "content": ". For the Hessian estima-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 221, + 127 + ], + "score": 1.0, + "content": "tion at the beginning of each", + "type": "text" + }, + { + "bbox": [ + 221, + 117, + 232, + 127 + ], + "score": 0.86, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "iterations, we use full Hessian. Similarly, for the gradient estimation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 470, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 204, + 139 + ], + "score": 1.0, + "content": "at the beginning of each", + "type": "text" + }, + { + "bbox": [ + 204, + 128, + 215, + 138 + ], + "score": 0.85, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 126, + 470, + 139 + ], + "score": 1.0, + "content": "iterations, we adopt the full gradient as the gradient estimation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 507, + 139 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "Memory Analysis. SVRC, Lite-SVRC, and our method need to store the previous and current", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 338, + 167 + ], + "score": 1.0, + "content": "gradient and Hessian and thus their memory complexity is", + "type": "text" + }, + { + "bbox": [ + 339, + 154, + 379, + 165 + ], + "score": 0.88, + "content": "2 ( d ^ { 2 } + d )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 154, + 506, + 167 + ], + "score": 1.0, + "content": ". TR, CR (ARC) and SCR need", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 339, + 178 + ], + "score": 1.0, + "content": "to compute current and Hessian and thus has complexity", + "type": "text" + }, + { + "bbox": [ + 340, + 165, + 368, + 176 + ], + "score": 0.88, + "content": "d ^ { 2 } + d", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 164, + 505, + 178 + ], + "score": 1.0, + "content": ". So these memory is of the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "order but our method is much faster than TR, CR and SCR both validated by theory and experiments.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 143, + 506, + 189 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 201, + 222, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 223, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 223, + 213 + ], + "score": 1.0, + "content": "F.2 MORE EXPERIMENTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 505, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "Here we give more experimental results on the gradient norm v.s. the algorithm running time and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 246 + ], + "score": 1.0, + "content": "the Hessian sample complexity. Due to the space limit, in the manuscript we only provide the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "gradient-norm related results on the codrna dataset. Here we provide results of a9a and ijcnn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "datasets in Figure 4. One can observe that on both the logistic regression with non-convex regularizer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 265, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 278 + ], + "score": 1.0, + "content": "and the nonlinear least square problems, the proposed algorithm always shows sharper convergence", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "behavior in terms of both the running time and the Hessian sample complexity. These observations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "are consistent with the results in Figure 2 in the manuscript. All these results demonstrate the high", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 299, + 433, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 433, + 311 + ], + "score": 1.0, + "content": "efficiency of our proposed algorithm and also confirm our theoretical implication.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 222, + 506, + 311 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/HkxJpnVtPr/HkxJpnVtPr_model.json b/parse/train/HkxJpnVtPr/HkxJpnVtPr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..44c42bf2c66fe3a72c2978fa5ec0504e48c6b864 --- /dev/null +++ b/parse/train/HkxJpnVtPr/HkxJpnVtPr_model.json @@ -0,0 +1,47315 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1362, + 1406, + 1362, + 1406, + 1703, + 297, + 1703 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 398, + 587, + 1305, + 587, + 1305, + 907, + 398, + 907 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1716, + 1405, + 1716, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1164, + 1403, + 1164, + 1403, + 1290, + 298, + 1290 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 299, + 218, + 1408, + 218, + 1408, + 323, + 299, + 323 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 681, + 1080, + 1019, + 1080, + 1019, + 1148, + 681, + 1148 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 587, + 1308, + 1110, + 1308, + 1110, + 1350, + 587, + 1350 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1032, + 1100, + 1032, + 1100, + 1066, + 297, + 1066 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 301, + 963, + 573, + 963, + 573, + 998, + 301, + 998 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1099, + 1400, + 1099, + 1400, + 1129, + 1366, + 1129 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 927, + 519, + 927, + 553, + 773, + 553 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.738 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1315, + 1399, + 1315, + 1399, + 1345, + 1366, + 1345 + ], + "score": 0.721 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1316, + 1399, + 1316, + 1399, + 1345, + 1366, + 1345 + ], + "score": 0.248 + }, + { + "category_id": 13, + "poly": [ + 536, + 1808, + 651, + 1808, + 651, + 1846, + 536, + 1846 + ], + "score": 0.94, + "latex": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 3 . 5 } )" + }, + { + "category_id": 14, + "poly": [ + 677, + 1077, + 1019, + 1077, + 1019, + 1149, + 677, + 1149 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\mathbf { x } \\in \\mathbb { R } ^ { d } } F ( \\mathbf { x } ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( \\mathbf { x } ) ," + }, + { + "category_id": 13, + "poly": [ + 702, + 1808, + 816, + 1808, + 816, + 1846, + 702, + 1846 + ], + "score": 0.94, + "latex": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1486, + 1403, + 1486, + 1403, + 1521, + 1285, + 1521 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( n / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1998, + 1386, + 1998, + 1386, + 2037, + 1235, + 2037 + ], + "score": 0.93, + "latex": "{ \\tilde { \\mathcal { O } } } ( n ^ { 2 \\bar { / } 3 } / \\epsilon ^ { 2 . \\bar { 5 } } )" + }, + { + "category_id": 13, + "poly": [ + 724, + 1484, + 847, + 1484, + 847, + 1521, + 724, + 1521 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )" + }, + { + "category_id": 13, + "poly": [ + 586, + 775, + 726, + 775, + 726, + 814, + 586, + 814 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 783, + 810, + 880, + 810, + 880, + 847, + 783, + 847 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( n ^ { 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1998, + 451, + 1998, + 451, + 2036, + 298, + 2036 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } \\bar { / } \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1010, + 743, + 1090, + 743, + 1090, + 778, + 1010, + 778 + ], + "score": 0.93, + "latex": "( \\epsilon , \\sqrt { \\epsilon } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1934, + 445, + 1934, + 445, + 1972, + 298, + 1972 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 8 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1424, + 1266, + 1424, + 1266, + 1458, + 1204, + 1458 + ], + "score": 0.92, + "latex": "F ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 328, + 1670, + 390, + 1670, + 390, + 1704, + 328, + 1704 + ], + "score": 0.92, + "latex": "F ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 397, + 680, + 521, + 680, + 521, + 717, + 397, + 717 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )" + }, + { + "category_id": 13, + "poly": [ + 840, + 1163, + 1012, + 1163, + 1012, + 1198, + 840, + 1198 + ], + "score": 0.91, + "latex": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 702, + 1257, + 782, + 1257, + 782, + 1291, + 702, + 1291 + ], + "score": 0.91, + "latex": "( \\epsilon , \\sqrt { \\epsilon } )" + }, + { + "category_id": 14, + "poly": [ + 585, + 1304, + 1112, + 1304, + 1112, + 1349, + 585, + 1349 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\| \\nabla F ( { \\bf x } _ { \\epsilon } ) \\| \\le \\epsilon \\quad \\mathrm { a n d } \\quad \\nabla ^ { 2 } F ( { \\bf x } _ { \\epsilon } ) \\succcurlyeq - \\sqrt { L _ { 2 } \\epsilon } { \\bf I } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 572, + 1199, + 606, + 1199, + 606, + 1228, + 572, + 1228 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1168, + 1285, + 1168, + 1285, + 1197, + 1251, + 1197 + ], + "score": 0.88, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1262, + 1297, + 1262, + 1297, + 1285, + 1283, + 1285 + ], + "score": 0.63, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 217.0, + 1413.0, + 217.0, + 1413.0, + 273.0, + 292.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 278.0, + 799.0, + 278.0, + 799.0, + 327.0, + 296.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 578.0, + 960.0, + 578.0, + 1007.0, + 294.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 518.0, + 932.0, + 518.0, + 932.0, + 556.0, + 770.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 1408.0, + 1361.0, + 1408.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1392.0, + 1409.0, + 1392.0, + 1409.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 1203.0, + 1421.0, + 1203.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1421.0, + 1407.0, + 1421.0, + 1407.0, + 1461.0, + 1267.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1456.0, + 1407.0, + 1456.0, + 1407.0, + 1487.0, + 296.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1482.0, + 723.0, + 1482.0, + 723.0, + 1522.0, + 292.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1482.0, + 1284.0, + 1482.0, + 1284.0, + 1522.0, + 848.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1482.0, + 1407.0, + 1482.0, + 1407.0, + 1522.0, + 1404.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1551.0, + 295.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 1406.0, + 1549.0, + 1406.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 1408.0, + 1578.0, + 1408.0, + 1614.0, + 294.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1606.0, + 1407.0, + 1606.0, + 1407.0, + 1648.0, + 296.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1406.0, + 1639.0, + 1406.0, + 1675.0, + 294.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 327.0, + 1669.0, + 327.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1669.0, + 1169.0, + 1669.0, + 1169.0, + 1705.0, + 391.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 591.0, + 1307.0, + 591.0, + 1307.0, + 621.0, + 396.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 620.0, + 1305.0, + 620.0, + 1305.0, + 654.0, + 394.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 651.0, + 1306.0, + 651.0, + 1306.0, + 685.0, + 394.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 678.0, + 1309.0, + 678.0, + 1309.0, + 720.0, + 522.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 713.0, + 1306.0, + 713.0, + 1306.0, + 749.0, + 393.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 743.0, + 1009.0, + 743.0, + 1009.0, + 780.0, + 392.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 743.0, + 1306.0, + 743.0, + 1306.0, + 780.0, + 1091.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 778.0, + 585.0, + 778.0, + 585.0, + 815.0, + 394.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 778.0, + 1305.0, + 778.0, + 1305.0, + 815.0, + 727.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 809.0, + 782.0, + 809.0, + 782.0, + 850.0, + 392.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 809.0, + 1307.0, + 809.0, + 1307.0, + 850.0, + 881.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 842.0, + 1304.0, + 842.0, + 1304.0, + 879.0, + 394.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 875.0, + 1171.0, + 875.0, + 1171.0, + 909.0, + 395.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1748.0, + 296.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1745.0, + 1406.0, + 1745.0, + 1406.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1807.0, + 535.0, + 1807.0, + 535.0, + 1848.0, + 294.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1807.0, + 701.0, + 1807.0, + 701.0, + 1848.0, + 652.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1807.0, + 1406.0, + 1807.0, + 1406.0, + 1848.0, + 817.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 1406.0, + 1843.0, + 1406.0, + 1879.0, + 294.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1870.0, + 1405.0, + 1870.0, + 1405.0, + 1908.0, + 294.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1900.0, + 1405.0, + 1900.0, + 1405.0, + 1938.0, + 292.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1930.0, + 297.0, + 1930.0, + 297.0, + 1976.0, + 292.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1930.0, + 1406.0, + 1930.0, + 1406.0, + 1976.0, + 446.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1968.0, + 1403.0, + 1968.0, + 1403.0, + 2001.0, + 296.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1997.0, + 1234.0, + 1997.0, + 1234.0, + 2038.0, + 452.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 1997.0, + 1400.0, + 1997.0, + 1400.0, + 2038.0, + 1387.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 839.0, + 1163.0, + 839.0, + 1200.0, + 293.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1163.0, + 1250.0, + 1163.0, + 1250.0, + 1200.0, + 1013.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1163.0, + 1407.0, + 1163.0, + 1407.0, + 1200.0, + 1286.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1198.0, + 571.0, + 1198.0, + 571.0, + 1231.0, + 296.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1198.0, + 1405.0, + 1198.0, + 1405.0, + 1231.0, + 607.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1225.0, + 1407.0, + 1225.0, + 1407.0, + 1263.0, + 292.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1258.0, + 701.0, + 1258.0, + 701.0, + 1292.0, + 292.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1258.0, + 1282.0, + 1258.0, + 1282.0, + 1292.0, + 783.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1258.0, + 1388.0, + 1258.0, + 1388.0, + 1292.0, + 1298.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1103.0, + 1030.0, + 1103.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1200, + 1406, + 1200, + 1406, + 1819, + 297, + 1819 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 357, + 359, + 1342, + 359, + 1342, + 653, + 357, + 653 + ], + "score": 0.984, + "html": "
AlgorithmSFOSSO
TR (Conn et al., 2000; Curtis et al., 2017)CR (Nesterov & Polyak, 2006)SCR (Kohler & Lucchi, 2017a)SVRC (Zhou et al., 2018c)Lite-SVRC (Zhou et al., 2018b)0(共n01.5013.52.5O n共0(1.50(1(.5)6国1.5
STRi (this paper)STR2 (this paper)O(min{n1.5,1.5O(min{1,1.5
" + }, + { + "category_id": 1, + "poly": [ + 297, + 672, + 1405, + 672, + 1405, + 1137, + 297, + 1137 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1894, + 1403, + 1894, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 6, + "poly": [ + 297, + 223, + 1405, + 223, + 1405, + 347, + 297, + 347 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 299, + 1845, + 552, + 1845, + 552, + 1880, + 299, + 1880 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 300, + 1166, + 564, + 1166, + 564, + 1196, + 300, + 1196 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.705 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.278 + }, + { + "category_id": 13, + "poly": [ + 470, + 1040, + 621, + 1040, + 621, + 1078, + 470, + 1078 + ], + "score": 0.94, + "latex": "{ \\tilde { \\mathcal { O } } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 837, + 1691, + 988, + 1691, + 988, + 1729, + 837, + 1729 + ], + "score": 0.94, + "latex": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1691, + 1282, + 1691, + 1282, + 1729, + 1130, + 1729 + ], + "score": 0.94, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 843, + 1627, + 941, + 1627, + 941, + 1663, + 843, + 1663 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( n ^ { 1 / 5 } )" + }, + { + "category_id": 13, + "poly": [ + 503, + 1895, + 551, + 1895, + 551, + 1929, + 503, + 1929 + ], + "score": 0.92, + "latex": "\\| \\mathbf { v } \\|" + }, + { + "category_id": 13, + "poly": [ + 586, + 1959, + 903, + 1959, + 903, + 2008, + 586, + 2008 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { f ( \\mathbf { x } ; \\mathcal { S } ) \\ \\stackrel { \\mathrm { d e f } } { = } \\ \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } f _ { i } ( \\mathbf { x } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1896, + 1159, + 1896, + 1159, + 1929, + 1105, + 1929 + ], + "score": 0.91, + "latex": "\\| \\mathbf { A } \\|" + }, + { + "category_id": 13, + "poly": [ + 767, + 915, + 1045, + 915, + 1045, + 953, + 767, + 953 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ 1 / \\epsilon ^ { 2 } , \\sqrt { n } / \\epsilon ^ { 1 . 5 } \\} )" + }, + { + "category_id": 13, + "poly": [ + 1173, + 494, + 1268, + 494, + 1268, + 532, + 1173, + 532 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\frac { n ^ { 4 / 5 } } { \\epsilon ^ { 1 . 5 } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 933, + 533, + 1029, + 533, + 1029, + 571, + 933, + 571 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\frac { n ^ { 2 / 3 } } { \\epsilon ^ { 2 . 5 } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 786, + 980, + 853, + 980, + 853, + 1011, + 786, + 1011 + ], + "score": 0.9, + "latex": "\\mathrm { { S T R } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 933, + 494, + 1029, + 494, + 1029, + 532, + 933, + 532 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\frac { n ^ { 4 / 5 } } { \\epsilon ^ { 1 . 5 } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1173, + 533, + 1268, + 533, + 1268, + 570, + 1173, + 570 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\textstyle { \\frac { n ^ { 2 / 3 } } { \\epsilon ^ { 1 . 5 } } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1121, + 573, + 1320, + 573, + 1320, + 611, + 1121, + 611 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\frac { 1 } { \\epsilon ^ { 2 } } , \\frac { \\sqrt { n } } { \\epsilon ^ { 1 . 5 } } \\} ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1076, + 1315, + 1076, + 1315, + 1107, + 1213, + 1107 + ], + "score": 0.89, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 937, + 458, + 1025, + 458, + 1025, + 493, + 937, + 493 + ], + "score": 0.89, + "latex": "\\tilde { \\mathcal { O } } ( \\textstyle \\frac { 1 } { \\epsilon ^ { 3 . 5 } } )" + }, + { + "category_id": 13, + "poly": [ + 1177, + 459, + 1264, + 459, + 1264, + 493, + 1177, + 493 + ], + "score": 0.89, + "latex": "\\textstyle { \\mathcal { O } } ( { \\frac { 1 } { \\epsilon ^ { 2 . 5 } } } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 980, + 365, + 980, + 365, + 1011, + 297, + 1011 + ], + "score": 0.89, + "latex": "\\mathrm { { S T R } _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 588, + 919, + 655, + 919, + 655, + 951, + 588, + 951 + ], + "score": 0.89, + "latex": "\\operatorname { S T R } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 573, + 824, + 641, + 824, + 641, + 855, + 573, + 855 + ], + "score": 0.89, + "latex": "\\mathrm { { S T R } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 391, + 316, + 457, + 316, + 457, + 347, + 391, + 347 + ], + "score": 0.88, + "latex": "\\mathrm { { S T R _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 286, + 363, + 286, + 363, + 316, + 297, + 316 + ], + "score": 0.88, + "latex": "\\mathrm { { S T R } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1172, + 612, + 1268, + 612, + 1268, + 651, + 1172, + 651 + ], + "score": 0.87, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\frac { n ^ { 3 / 4 } } { \\epsilon ^ { 1 . 5 } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 875, + 573, + 1088, + 573, + 1088, + 612, + 875, + 612 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\frac { n } { \\epsilon ^ { 1 . 5 } } , \\frac { \\sqrt { n } } { \\epsilon ^ { 2 } } \\} ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1011, + 1295, + 1011, + 1295, + 1042, + 1226, + 1042 + ], + "score": 0.86, + "latex": "\\mathrm { { S T R _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 396, + 1264, + 396, + 1264, + 426, + 1177, + 426 + ], + "score": 0.85, + "latex": "\\textstyle { \\mathcal { O } } ( { \\frac { n } { \\epsilon ^ { 1 . 5 } } } )" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1076, + 1157, + 1076, + 1157, + 1107, + 1070, + 1107 + ], + "score": 0.84, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 932, + 612, + 1029, + 612, + 1029, + 651, + 932, + 651 + ], + "score": 0.83, + "latex": "\\tilde { \\mathcal { O } } \\big ( \\frac { n ^ { 3 / 4 } } { \\epsilon ^ { 1 . 5 } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1177, + 428, + 1264, + 428, + 1264, + 458, + 1177, + 458 + ], + "score": 0.83, + "latex": "\\mathcal { O } ( \\textstyle \\frac { n } { \\epsilon ^ { 1 . 5 } } )" + }, + { + "category_id": 13, + "poly": [ + 937, + 427, + 1025, + 427, + 1025, + 458, + 937, + 458 + ], + "score": 0.82, + "latex": "\\mathcal { O } ( \\textstyle \\frac { n } { \\epsilon ^ { 1 . 5 } } )" + }, + { + "category_id": 13, + "poly": [ + 937, + 396, + 1025, + 396, + 1025, + 426, + 937, + 426 + ], + "score": 0.81, + "latex": "\\textstyle { \\mathcal { O } } ( { \\frac { n } { \\epsilon ^ { 1 . 5 } } } )" + }, + { + "category_id": 13, + "poly": [ + 573, + 1928, + 596, + 1928, + 596, + 1954, + 573, + 1954 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 990, + 1901, + 1011, + 1901, + 1011, + 1924, + 990, + 1924 + ], + "score": 0.52, + "latex": "\\mathbf { v }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 220.0, + 1407.0, + 220.0, + 1407.0, + 261.0, + 291.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 252.0, + 1407.0, + 252.0, + 1407.0, + 290.0, + 292.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 321.0, + 364.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 390.0, + 317.0, + 390.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 317.0, + 890.0, + 317.0, + 890.0, + 350.0, + 458.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1841.0, + 557.0, + 1841.0, + 557.0, + 1887.0, + 291.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1164.0, + 568.0, + 1164.0, + 568.0, + 1199.0, + 297.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1200.0, + 1406.0, + 1200.0, + 1406.0, + 1235.0, + 296.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1261.0, + 1404.0, + 1261.0, + 1404.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1294.0, + 1404.0, + 1294.0, + 1404.0, + 1325.0, + 296.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 1404.0, + 1322.0, + 1404.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1388.0, + 295.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1383.0, + 1407.0, + 1383.0, + 1407.0, + 1420.0, + 292.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1404.0, + 1413.0, + 1404.0, + 1448.0, + 295.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 1406.0, + 1443.0, + 1406.0, + 1480.0, + 294.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1406.0, + 1506.0, + 1406.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1567.0, + 1404.0, + 1567.0, + 1404.0, + 1598.0, + 295.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1628.0, + 842.0, + 1628.0, + 842.0, + 1663.0, + 292.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1628.0, + 1408.0, + 1628.0, + 1408.0, + 1663.0, + 942.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1661.0, + 1406.0, + 1661.0, + 1406.0, + 1695.0, + 295.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1688.0, + 836.0, + 1688.0, + 836.0, + 1732.0, + 291.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1688.0, + 1129.0, + 1688.0, + 1129.0, + 1732.0, + 989.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1688.0, + 1408.0, + 1688.0, + 1408.0, + 1732.0, + 1283.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 1406.0, + 1723.0, + 1406.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1754.0, + 1404.0, + 1754.0, + 1404.0, + 1790.0, + 294.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1788.0, + 1368.0, + 1788.0, + 1368.0, + 1819.0, + 296.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 671.0, + 1405.0, + 671.0, + 1405.0, + 706.0, + 297.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 704.0, + 1403.0, + 704.0, + 1403.0, + 736.0, + 296.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 768.0, + 294.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 797.0, + 295.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 792.0, + 1405.0, + 792.0, + 1405.0, + 829.0, + 294.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 824.0, + 572.0, + 824.0, + 572.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 824.0, + 1406.0, + 824.0, + 1406.0, + 859.0, + 642.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 1406.0, + 854.0, + 1406.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 913.0, + 587.0, + 913.0, + 587.0, + 956.0, + 291.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 913.0, + 766.0, + 913.0, + 766.0, + 956.0, + 656.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 913.0, + 1407.0, + 913.0, + 1407.0, + 956.0, + 1046.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 1406.0, + 949.0, + 1406.0, + 984.0, + 294.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 979.0, + 785.0, + 979.0, + 785.0, + 1014.0, + 366.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 979.0, + 1405.0, + 979.0, + 1405.0, + 1014.0, + 854.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1010.0, + 1225.0, + 1010.0, + 1225.0, + 1046.0, + 295.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1046.0, + 1296.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1039.0, + 469.0, + 1039.0, + 469.0, + 1081.0, + 291.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1039.0, + 1407.0, + 1039.0, + 1407.0, + 1081.0, + 622.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1077.0, + 1069.0, + 1077.0, + 1069.0, + 1109.0, + 296.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1077.0, + 1212.0, + 1077.0, + 1212.0, + 1109.0, + 1158.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1077.0, + 1403.0, + 1077.0, + 1403.0, + 1109.0, + 1316.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1106.0, + 944.0, + 1106.0, + 944.0, + 1142.0, + 295.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 502.0, + 1892.0, + 502.0, + 1929.0, + 295.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1892.0, + 989.0, + 1892.0, + 989.0, + 1929.0, + 552.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1892.0, + 1104.0, + 1892.0, + 1104.0, + 1929.0, + 1012.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1892.0, + 1405.0, + 1892.0, + 1405.0, + 1929.0, + 1160.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1926.0, + 572.0, + 1926.0, + 572.0, + 1961.0, + 295.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1926.0, + 1405.0, + 1926.0, + 1405.0, + 1961.0, + 597.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1947.0, + 585.0, + 1947.0, + 585.0, + 2011.0, + 288.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1947.0, + 1410.0, + 1947.0, + 1410.0, + 2011.0, + 904.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 759.0, + 2002.0, + 759.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1356, + 1406, + 1356, + 1406, + 1522, + 297, + 1522 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1872, + 1406, + 1872, + 1406, + 1967, + 297, + 1967 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 901, + 1401, + 901, + 1401, + 965, + 297, + 965 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 294, + 1630, + 1402, + 1630, + 1402, + 1696, + 294, + 1696 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 619, + 1716, + 1078, + 1716, + 1078, + 1789, + 619, + 1789 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 552, + 975, + 1148, + 975, + 1148, + 1047, + 552, + 1047 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1143, + 1405, + 1143, + 1405, + 1206, + 298, + 1206 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 550, + 1977, + 1148, + 1977, + 1148, + 2045, + 550, + 2045 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 1793, + 1402, + 1793, + 1402, + 1856, + 296, + 1856 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 741, + 1094, + 953, + 1094, + 953, + 1133, + 741, + 1133 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 651, + 1250, + 1048, + 1250, + 1048, + 1292, + 651, + 1292 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 581, + 1399, + 581, + 1399, + 645, + 297, + 645 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 635, + 773, + 1064, + 773, + 1064, + 815, + 635, + 815 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 1563, + 583, + 1563, + 583, + 1599, + 300, + 1599 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 299, + 275, + 1402, + 275, + 1402, + 558, + 299, + 558 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 858, + 74, + 858, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 1211, + 1102, + 1211, + 1102, + 1243, + 297, + 1243 + ], + "score": 0.913 + }, + { + "category_id": 8, + "poly": [ + 644, + 690, + 1050, + 690, + 1050, + 729, + 644, + 729 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 298, + 844, + 666, + 844, + 666, + 876, + 298, + 876 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 302, + 1054, + 1073, + 1054, + 1073, + 1088, + 302, + 1088 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 298, + 1301, + 1283, + 1301, + 1283, + 1339, + 298, + 1339 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 296, + 649, + 1351, + 649, + 1351, + 685, + 296, + 685 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 300, + 734, + 1346, + 734, + 1346, + 768, + 300, + 768 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1103, + 1400, + 1103, + 1400, + 1132, + 1366, + 1132 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1257, + 1400, + 1257, + 1400, + 1287, + 1365, + 1287 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1733, + 1400, + 1733, + 1400, + 1763, + 1366, + 1763 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1365, + 991, + 1400, + 991, + 1400, + 1020, + 1365, + 1020 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 695, + 1400, + 695, + 1400, + 724, + 1366, + 724 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1998, + 1400, + 1998, + 1400, + 2028, + 1365, + 2028 + ], + "score": 0.86 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 839, + 228, + 839, + 263, + 299, + 263 + ], + "score": 0.844 + }, + { + "category_id": 9, + "poly": [ + 1366, + 779, + 1400, + 779, + 1400, + 809, + 1366, + 809 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.674 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.533 + }, + { + "category_id": 13, + "poly": [ + 945, + 1419, + 1068, + 1419, + 1068, + 1457, + 945, + 1457 + ], + "score": 0.94, + "latex": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )" + }, + { + "category_id": 14, + "poly": [ + 618, + 1712, + 1080, + 1712, + 1080, + 1791, + 618, + 1791 + ], + "score": 0.94, + "latex": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } , \\mathbf { h } \\rangle ." + }, + { + "category_id": 13, + "poly": [ + 365, + 1140, + 477, + 1140, + 477, + 1177, + 365, + 1177 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 800, + 1302, + 1024, + 1302, + 1024, + 1339, + 800, + 1339 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\succcurlyeq 0" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1871, + 1202, + 1871, + 1202, + 1907, + 1079, + 1907 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )" + }, + { + "category_id": 13, + "poly": [ + 449, + 1933, + 559, + 1933, + 559, + 1968, + 449, + 1968 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } F ( \\bar { \\mathbf { x } } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1933, + 396, + 1933, + 396, + 1968, + 298, + 1968 + ], + "score": 0.93, + "latex": "\\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 564, + 649, + 709, + 649, + 709, + 683, + 564, + 683 + ], + "score": 0.93, + "latex": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 588, + 1454, + 700, + 1454, + 700, + 1492, + 588, + 1492 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( 1 / \\sqrt { k } )" + }, + { + "category_id": 14, + "poly": [ + 649, + 1250, + 1049, + 1250, + 1049, + 1294, + 649, + 1294 + ], + "score": 0.92, + "latex": "\\left( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) + \\lambda \\mathbf { I } \\right) \\mathbf { h } ^ { k } = - \\nabla F ( \\mathbf { x } ^ { k } ) ," + }, + { + "category_id": 13, + "poly": [ + 564, + 733, + 709, + 733, + 709, + 767, + 564, + 767 + ], + "score": 0.92, + "latex": "f _ { i } : \\mathbb { R } ^ { d } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 296, + 612, + 537, + 612, + 537, + 648, + 296, + 648 + ], + "score": 0.92, + "latex": "\\Delta = \\bar { F ( \\mathbf { x } ^ { 0 } ) } - F ( \\mathbf { x } ^ { * } )" + }, + { + "category_id": 14, + "poly": [ + 549, + 971, + 1146, + 971, + 1146, + 1049, + 549, + 1049 + ], + "score": 0.91, + "latex": "\\mathbf { h } ^ { k } : = \\operatorname * { a r g m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\langle \\nabla F ( \\mathbf { x } ^ { k } ) , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\mathbf { h } , \\mathbf { h } \\rangle ," + }, + { + "category_id": 14, + "poly": [ + 551, + 1974, + 1149, + 1974, + 1149, + 2046, + 551, + 2046 + ], + "score": 0.91, + "latex": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\epsilon } { 6 } , \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\frac { \\sqrt { \\epsilon L _ { 2 } } } { 3 } ." + }, + { + "category_id": 14, + "poly": [ + 742, + 1094, + 956, + 1094, + 956, + 1133, + 742, + 1133 + ], + "score": 0.91, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k } ." + }, + { + "category_id": 14, + "poly": [ + 632, + 772, + 1065, + 772, + 1065, + 813, + 632, + 813 + ], + "score": 0.91, + "latex": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 2 } \\| \\mathbf { x } - \\mathbf { y } \\| ." + }, + { + "category_id": 13, + "poly": [ + 511, + 462, + 636, + 462, + 636, + 494, + 511, + 494 + ], + "score": 0.9, + "latex": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1301, + 1275, + 1301, + 1275, + 1339, + 1077, + 1339 + ], + "score": 0.9, + "latex": "\\lambda ( \\| \\mathbf { h } ^ { k } \\| - r ) = 0 ." + }, + { + "category_id": 13, + "poly": [ + 567, + 1305, + 637, + 1305, + 637, + 1335, + 567, + 1335 + ], + "score": 0.9, + "latex": "\\lambda \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 386, + 339, + 456, + 339, + 456, + 366, + 386, + 366 + ], + "score": 0.89, + "latex": "k = 0" + }, + { + "category_id": 14, + "poly": [ + 644, + 691, + 1051, + 691, + 1051, + 729, + 644, + 729 + ], + "score": 0.89, + "latex": "\\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla f _ { i } ( \\mathbf { y } ) \\| \\leq L _ { 1 } \\| \\mathbf { x } - \\mathbf { y } \\| ." + }, + { + "category_id": 13, + "poly": [ + 411, + 427, + 577, + 427, + 577, + 464, + 411, + 464 + ], + "score": 0.89, + "latex": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 757, + 653, + 791, + 653, + 791, + 682, + 757, + 682 + ], + "score": 0.89, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 602, + 1902, + 643, + 1902, + 643, + 1932, + 602, + 1932 + ], + "score": 0.89, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1357, + 1080, + 1357, + 1080, + 1388, + 1044, + 1388 + ], + "score": 0.89, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 993, + 1662, + 1033, + 1662, + 1033, + 1690, + 993, + 1690 + ], + "score": 0.89, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 701, + 1660, + 734, + 1660, + 734, + 1694, + 701, + 1694 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 580, + 367, + 612, + 367, + 612, + 396, + 580, + 396 + ], + "score": 0.88, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 758, + 736, + 791, + 736, + 791, + 766, + 758, + 766 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1821, + 1336, + 1821, + 1336, + 1851, + 1302, + 1851 + ], + "score": 0.87, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 494, + 367, + 528, + 367, + 528, + 396, + 494, + 396 + ], + "score": 0.87, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 520, + 1902, + 553, + 1902, + 553, + 1934, + 520, + 1934 + ], + "score": 0.87, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1821, + 1397, + 1821, + 1397, + 1851, + 1366, + 1851 + ], + "score": 0.86, + "latex": "\\lambda ^ { \\dot { k } }" + }, + { + "category_id": 13, + "poly": [ + 1229, + 584, + 1261, + 584, + 1261, + 611, + 1229, + 611 + ], + "score": 0.85, + "latex": "\\mathbf { x } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 384, + 397, + 587, + 397, + 587, + 427, + 384, + 427 + ], + "score": 0.85, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 489, + 338, + 566, + 338, + 566, + 366, + 489, + 366 + ], + "score": 0.81, + "latex": "K - 1" + }, + { + "category_id": 13, + "poly": [ + 518, + 275, + 551, + 275, + 551, + 305, + 518, + 305 + ], + "score": 0.8, + "latex": "\\mathbf { x } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 452, + 1391, + 473, + 1391, + 473, + 1417, + 452, + 1417 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 914, + 278, + 942, + 278, + 942, + 304, + 914, + 304 + ], + "score": 0.78, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 371, + 1062, + 387, + 1062, + 387, + 1083, + 371, + 1083 + ], + "score": 0.77, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1225, + 733, + 1342, + 733, + 1342, + 768, + 1225, + 768 + ], + "score": 0.75, + "latex": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 502, + 584, + 528, + 584, + 528, + 610, + 502, + 610 + ], + "score": 0.75, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1230, + 648, + 1347, + 648, + 1347, + 683, + 1230, + 683 + ], + "score": 0.75, + "latex": "\\mathbf { x } , \\mathbf { y } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 661, + 284, + 677, + 284, + 677, + 304, + 661, + 304 + ], + "score": 0.74, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1367, + 273, + 1401, + 273, + 1401, + 309, + 1367, + 309 + ], + "score": 0.72, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 391, + 305, + 433, + 305, + 433, + 336, + 391, + 336 + ], + "score": 0.64, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1558.0, + 587.0, + 1558.0, + 587.0, + 1608.0, + 290.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 298.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 841.0, + 667.0, + 841.0, + 667.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 842.0, + 225.0, + 842.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1352.0, + 1043.0, + 1352.0, + 1043.0, + 1396.0, + 291.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1352.0, + 1407.0, + 1352.0, + 1407.0, + 1396.0, + 1081.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1389.0, + 451.0, + 1389.0, + 451.0, + 1422.0, + 295.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1422.0, + 474.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1419.0, + 944.0, + 1419.0, + 944.0, + 1459.0, + 292.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1419.0, + 1407.0, + 1419.0, + 1407.0, + 1459.0, + 1069.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 587.0, + 1457.0, + 587.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1457.0, + 1406.0, + 1457.0, + 1406.0, + 1492.0, + 701.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1488.0, + 545.0, + 1488.0, + 545.0, + 1522.0, + 295.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1868.0, + 1078.0, + 1868.0, + 1078.0, + 1910.0, + 292.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1868.0, + 1407.0, + 1868.0, + 1407.0, + 1910.0, + 1203.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1899.0, + 519.0, + 1899.0, + 519.0, + 1939.0, + 292.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1899.0, + 601.0, + 1899.0, + 601.0, + 1939.0, + 554.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1899.0, + 1406.0, + 1899.0, + 1406.0, + 1939.0, + 644.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1928.0, + 448.0, + 1928.0, + 448.0, + 1972.0, + 397.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1928.0, + 712.0, + 1928.0, + 712.0, + 1972.0, + 560.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 898.0, + 1405.0, + 898.0, + 1405.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 932.0, + 973.0, + 932.0, + 973.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1631.0, + 1409.0, + 1631.0, + 1409.0, + 1667.0, + 296.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 700.0, + 1659.0, + 700.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1659.0, + 992.0, + 1659.0, + 992.0, + 1698.0, + 735.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1698.0, + 1034.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1136.0, + 364.0, + 1136.0, + 364.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1136.0, + 1406.0, + 1136.0, + 1406.0, + 1180.0, + 478.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1172.0, + 1244.0, + 1172.0, + 1244.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1826.0, + 296.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1301.0, + 1819.0, + 1301.0, + 1856.0, + 292.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1819.0, + 1365.0, + 1819.0, + 1365.0, + 1856.0, + 1337.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1819.0, + 1407.0, + 1819.0, + 1407.0, + 1856.0, + 1398.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 578.0, + 501.0, + 578.0, + 501.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 578.0, + 1228.0, + 578.0, + 1228.0, + 618.0, + 529.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 578.0, + 1405.0, + 578.0, + 1405.0, + 618.0, + 1262.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 606.0, + 295.0, + 606.0, + 295.0, + 650.0, + 292.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 606.0, + 551.0, + 606.0, + 551.0, + 650.0, + 538.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 272.0, + 517.0, + 272.0, + 517.0, + 310.0, + 293.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 272.0, + 660.0, + 272.0, + 660.0, + 310.0, + 552.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 272.0, + 913.0, + 272.0, + 913.0, + 310.0, + 678.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 272.0, + 1366.0, + 272.0, + 1366.0, + 310.0, + 943.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 305.0, + 390.0, + 305.0, + 390.0, + 338.0, + 336.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 305.0, + 438.0, + 305.0, + 438.0, + 338.0, + 434.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 335.0, + 385.0, + 335.0, + 385.0, + 367.0, + 305.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 335.0, + 488.0, + 335.0, + 488.0, + 367.0, + 457.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 335.0, + 606.0, + 335.0, + 606.0, + 367.0, + 567.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 367.0, + 339.0, + 367.0, + 339.0, + 400.0, + 308.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 361.0, + 493.0, + 361.0, + 493.0, + 405.0, + 381.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 361.0, + 579.0, + 361.0, + 579.0, + 405.0, + 529.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 361.0, + 787.0, + 361.0, + 787.0, + 405.0, + 613.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 397.0, + 340.0, + 397.0, + 340.0, + 432.0, + 305.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 388.0, + 383.0, + 388.0, + 383.0, + 435.0, + 379.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 388.0, + 603.0, + 388.0, + 603.0, + 435.0, + 588.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 428.0, + 340.0, + 428.0, + 340.0, + 463.0, + 305.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 423.0, + 410.0, + 423.0, + 410.0, + 466.0, + 378.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 423.0, + 643.0, + 423.0, + 643.0, + 466.0, + 578.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 461.0, + 340.0, + 461.0, + 340.0, + 497.0, + 305.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 460.0, + 510.0, + 460.0, + 510.0, + 495.0, + 420.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 460.0, + 650.0, + 460.0, + 650.0, + 495.0, + 637.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 495.0, + 339.0, + 495.0, + 339.0, + 527.0, + 308.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 493.0, + 465.0, + 493.0, + 465.0, + 525.0, + 382.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 522.0, + 438.0, + 522.0, + 438.0, + 555.0, + 304.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1209.0, + 1099.0, + 1209.0, + 1099.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1051.0, + 370.0, + 1051.0, + 370.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1051.0, + 1073.0, + 1051.0, + 1073.0, + 1092.0, + 388.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 566.0, + 1297.0, + 566.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1297.0, + 799.0, + 1297.0, + 799.0, + 1343.0, + 638.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1297.0, + 1076.0, + 1297.0, + 1076.0, + 1343.0, + 1025.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1297.0, + 1284.0, + 1297.0, + 1284.0, + 1343.0, + 1276.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 647.0, + 563.0, + 647.0, + 563.0, + 688.0, + 292.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 647.0, + 756.0, + 647.0, + 756.0, + 688.0, + 710.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 647.0, + 1229.0, + 647.0, + 1229.0, + 688.0, + 792.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 647.0, + 1352.0, + 647.0, + 1352.0, + 688.0, + 1348.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 563.0, + 731.0, + 563.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 731.0, + 757.0, + 731.0, + 757.0, + 772.0, + 710.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 731.0, + 1224.0, + 731.0, + 1224.0, + 772.0, + 792.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 731.0, + 1347.0, + 731.0, + 1347.0, + 772.0, + 1343.0, + 772.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1145, + 1405, + 1145, + 1405, + 1512, + 297, + 1512 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 975, + 1404, + 975, + 1404, + 1130, + 297, + 1130 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1940, + 1402, + 1940, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 301, + 612, + 1401, + 612, + 1401, + 705, + 301, + 705 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 822, + 1404, + 822, + 1404, + 951, + 297, + 951 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 713, + 1406, + 713, + 1406, + 814, + 297, + 814 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 298, + 1627, + 1404, + 1627, + 1404, + 1848, + 298, + 1848 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 300, + 1884, + 620, + 1884, + 620, + 1915, + 300, + 1915 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 299, + 1557, + 1020, + 1557, + 1020, + 1594, + 299, + 1594 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 511, + 229, + 511, + 261, + 298, + 261 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.769 + }, + { + "category_id": 5, + "poly": [ + 301, + 274, + 951, + 274, + 951, + 589, + 301, + 589 + ], + "score": 0.517, + "html": "
1:for k= 1 to K do 2: 3: Compute hk and Xk by solving (8);Input:initial point x°,step size r,number of iterations K Construct gradient estimator gk by Estimator 4; Construct Hessian estimator Hk by Estimator 3;
" + }, + { + "category_id": 1, + "poly": [ + 295, + 274, + 957, + 274, + 957, + 589, + 295, + 589 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 734, + 1810, + 871, + 1810, + 871, + 1849, + 734, + 1849 + ], + "score": 0.94, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 376, + 852, + 548, + 852, + 548, + 887, + 376, + 887 + ], + "score": 0.94, + "latex": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1056, + 778, + 1192, + 778, + 1192, + 817, + 1056, + 817 + ], + "score": 0.93, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1004, + 638, + 1004, + 638, + 1039, + 394, + 1039 + ], + "score": 0.93, + "latex": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } } ^ { \\bullet } > 0" + }, + { + "category_id": 13, + "poly": [ + 1080, + 884, + 1203, + 884, + 1203, + 921, + 1080, + 921 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( 1 / k ^ { 2 / 3 } )" + }, + { + "category_id": 13, + "poly": [ + 605, + 852, + 795, + 852, + 795, + 887, + 605, + 887 + ], + "score": 0.93, + "latex": "\\mathbf { H } ^ { k } = \\nabla ^ { 2 } F ( \\mathbf { \\bar { x } } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 793, + 1036, + 906, + 1036, + 906, + 1071, + 793, + 1071 + ], + "score": 0.93, + "latex": "\\| \\mathbf { h } ^ { k } \\| = r" + }, + { + "category_id": 13, + "poly": [ + 298, + 778, + 539, + 778, + 539, + 815, + 298, + 815 + ], + "score": 0.92, + "latex": "K = \\mathcal { O } ( \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 511, + 490, + 636, + 490, + 636, + 524, + 511, + 524 + ], + "score": 0.9, + "latex": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 411, + 456, + 577, + 456, + 577, + 493, + 411, + 493 + ], + "score": 0.89, + "latex": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 734, + 1658, + 800, + 1658, + 800, + 1689, + 734, + 1689 + ], + "score": 0.89, + "latex": "\\mathrm { { S T R } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 911, + 1717, + 946, + 1717, + 946, + 1751, + 911, + 1751 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 507, + 744, + 549, + 744, + 549, + 775, + 507, + 775 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 580, + 396, + 612, + 396, + 612, + 425, + 580, + 425 + ], + "score": 0.88, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 421, + 744, + 455, + 744, + 455, + 777, + 421, + 777 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1717, + 1294, + 1717, + 1294, + 1747, + 1253, + 1747 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 494, + 396, + 528, + 396, + 528, + 425, + 494, + 425 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 385, + 307, + 456, + 307, + 456, + 335, + 385, + 335 + ], + "score": 0.87, + "latex": "k = 1" + }, + { + "category_id": 13, + "poly": [ + 693, + 1941, + 732, + 1941, + 732, + 1970, + 693, + 1970 + ], + "score": 0.87, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 385, + 426, + 588, + 426, + 588, + 455, + 385, + 455 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 553, + 1973, + 581, + 1973, + 581, + 2005, + 553, + 2005 + ], + "score": 0.86, + "latex": "s _ { 2 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 705, + 366, + 746, + 366, + 746, + 395, + 705, + 395 + ], + "score": 0.85, + "latex": "\\bar { \\mathbf { H } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 708, + 334, + 741, + 334, + 741, + 366, + 708, + 366 + ], + "score": 0.85, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 521, + 274, + 553, + 274, + 553, + 304, + 521, + 304 + ], + "score": 0.84, + "latex": "\\mathbf { x } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1976, + 373, + 1976, + 373, + 2003, + 344, + 2003 + ], + "score": 0.83, + "latex": "s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 745, + 1190, + 745, + 1190, + 778, + 1132, + 778 + ], + "score": 0.82, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1948, + 1109, + 1948, + 1109, + 1975, + 1080, + 1975 + ], + "score": 0.8, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 489, + 308, + 518, + 308, + 518, + 334, + 489, + 334 + ], + "score": 0.74, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 666, + 283, + 682, + 283, + 682, + 303, + 666, + 303 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 807, + 747, + 825, + 747, + 825, + 774, + 807, + 774 + ], + "score": 0.68, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 925, + 276, + 955, + 276, + 955, + 304, + 925, + 304 + ], + "score": 0.61, + "latex": "K" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 623.0, + 1884.0, + 623.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1555.0, + 1024.0, + 1555.0, + 1024.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 515.0, + 226.0, + 515.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1142.0, + 1406.0, + 1142.0, + 1406.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 1403.0, + 1175.0, + 1403.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1204.0, + 1405.0, + 1204.0, + 1405.0, + 1242.0, + 294.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1405.0, + 1236.0, + 1405.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1303.0, + 294.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1363.0, + 295.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 1405.0, + 1359.0, + 1405.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1423.0, + 295.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1456.0, + 294.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 1406.0, + 1449.0, + 1406.0, + 1487.0, + 292.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1479.0, + 981.0, + 1479.0, + 981.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 973.0, + 1406.0, + 973.0, + 1406.0, + 1011.0, + 294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 999.0, + 393.0, + 999.0, + 393.0, + 1043.0, + 292.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 999.0, + 1409.0, + 999.0, + 1409.0, + 1043.0, + 639.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1034.0, + 792.0, + 1034.0, + 792.0, + 1074.0, + 292.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1034.0, + 1404.0, + 1034.0, + 1404.0, + 1074.0, + 907.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1064.0, + 1405.0, + 1064.0, + 1405.0, + 1104.0, + 292.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1096.0, + 1262.0, + 1096.0, + 1262.0, + 1135.0, + 292.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1940.0, + 692.0, + 1940.0, + 692.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1940.0, + 1079.0, + 1940.0, + 1079.0, + 1977.0, + 733.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1977.0, + 1110.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 343.0, + 1972.0, + 343.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1972.0, + 552.0, + 1972.0, + 552.0, + 2006.0, + 374.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2006.0, + 582.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 644.0, + 296.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 643.0, + 1409.0, + 643.0, + 1409.0, + 677.0, + 295.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 672.0, + 1006.0, + 672.0, + 1006.0, + 708.0, + 296.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 857.0, + 295.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 848.0, + 375.0, + 848.0, + 375.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 848.0, + 604.0, + 848.0, + 604.0, + 889.0, + 549.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 889.0, + 796.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 882.0, + 1079.0, + 882.0, + 1079.0, + 925.0, + 290.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 882.0, + 1410.0, + 882.0, + 1410.0, + 925.0, + 1204.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 917.0, + 1407.0, + 917.0, + 1407.0, + 953.0, + 292.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 1406.0, + 712.0, + 1406.0, + 751.0, + 294.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 743.0, + 420.0, + 743.0, + 420.0, + 782.0, + 295.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 743.0, + 506.0, + 743.0, + 506.0, + 782.0, + 456.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 743.0, + 806.0, + 743.0, + 806.0, + 782.0, + 550.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 743.0, + 1131.0, + 743.0, + 1131.0, + 782.0, + 826.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 782.0, + 1191.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 775.0, + 297.0, + 775.0, + 297.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 775.0, + 1055.0, + 775.0, + 1055.0, + 820.0, + 540.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 775.0, + 1204.0, + 775.0, + 1204.0, + 820.0, + 1193.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 733.0, + 1657.0, + 733.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1657.0, + 1404.0, + 1657.0, + 1404.0, + 1692.0, + 801.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 910.0, + 1717.0, + 910.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1717.0, + 1252.0, + 1717.0, + 1252.0, + 1753.0, + 947.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1717.0, + 1404.0, + 1717.0, + 1404.0, + 1753.0, + 1295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1404.0, + 1749.0, + 1404.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1779.0, + 1405.0, + 1779.0, + 1405.0, + 1813.0, + 293.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1814.0, + 733.0, + 1814.0, + 733.0, + 1849.0, + 296.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1814.0, + 1160.0, + 1814.0, + 1160.0, + 1849.0, + 872.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 274.0, + 520.0, + 274.0, + 520.0, + 308.0, + 298.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 274.0, + 665.0, + 274.0, + 665.0, + 308.0, + 554.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 274.0, + 924.0, + 274.0, + 924.0, + 308.0, + 683.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 306.0, + 384.0, + 306.0, + 384.0, + 338.0, + 309.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 306.0, + 488.0, + 306.0, + 488.0, + 338.0, + 457.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 306.0, + 560.0, + 306.0, + 560.0, + 338.0, + 519.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 336.0, + 340.0, + 336.0, + 340.0, + 369.0, + 308.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 334.0, + 707.0, + 334.0, + 707.0, + 370.0, + 382.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 334.0, + 923.0, + 334.0, + 923.0, + 370.0, + 742.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 367.0, + 339.0, + 367.0, + 339.0, + 400.0, + 307.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 362.0, + 704.0, + 362.0, + 704.0, + 402.0, + 381.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 362.0, + 929.0, + 362.0, + 929.0, + 402.0, + 747.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 398.0, + 338.0, + 398.0, + 338.0, + 429.0, + 309.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 389.0, + 493.0, + 389.0, + 493.0, + 435.0, + 381.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 389.0, + 579.0, + 389.0, + 579.0, + 435.0, + 529.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 389.0, + 789.0, + 389.0, + 789.0, + 435.0, + 613.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 429.0, + 338.0, + 429.0, + 338.0, + 459.0, + 309.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 417.0, + 384.0, + 417.0, + 384.0, + 463.0, + 381.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 417.0, + 602.0, + 417.0, + 602.0, + 463.0, + 589.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 460.0, + 338.0, + 460.0, + 338.0, + 490.0, + 309.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 451.0, + 410.0, + 451.0, + 410.0, + 496.0, + 379.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 451.0, + 644.0, + 451.0, + 644.0, + 496.0, + 578.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 493.0, + 338.0, + 493.0, + 338.0, + 524.0, + 309.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 487.0, + 510.0, + 487.0, + 510.0, + 525.0, + 420.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 487.0, + 652.0, + 487.0, + 652.0, + 525.0, + 637.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 523.0, + 340.0, + 523.0, + 340.0, + 555.0, + 307.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 522.0, + 464.0, + 522.0, + 464.0, + 554.0, + 379.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 551.0, + 439.0, + 551.0, + 439.0, + 587.0, + 306.0, + 587.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1121, + 1405, + 1121, + 1405, + 1365, + 296, + 1365 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 789, + 1405, + 789, + 1405, + 975, + 297, + 975 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1880, + 1403, + 1880, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1453, + 1405, + 1453, + 1405, + 1577, + 298, + 1577 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 989, + 1405, + 989, + 1405, + 1113, + 296, + 1113 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 292, + 1592, + 1406, + 1592, + 1406, + 1863, + 292, + 1863 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 307, + 611, + 1263, + 611, + 1263, + 765, + 307, + 765 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 300, + 267, + 1368, + 267, + 1368, + 545, + 300, + 545 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 303, + 569, + 767, + 569, + 767, + 601, + 303, + 601 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 299, + 230, + 652, + 230, + 652, + 260, + 299, + 260 + ], + "score": 0.824 + }, + { + "category_id": 0, + "poly": [ + 302, + 1396, + 767, + 1396, + 767, + 1429, + 302, + 1429 + ], + "score": 0.792 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 302, + 1396, + 767, + 1396, + 767, + 1429, + 302, + 1429 + ], + "score": 0.12 + }, + { + "category_id": 13, + "poly": [ + 1033, + 1120, + 1179, + 1120, + 1179, + 1160, + 1033, + 1160 + ], + "score": 0.94, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 852, + 1669, + 951, + 1669, + 951, + 1704, + 852, + 1704 + ], + "score": 0.93, + "latex": "\\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1631, + 1186, + 1631, + 1186, + 1669, + 1038, + 1669 + ], + "score": 0.92, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 523, + 1715, + 638, + 1715, + 638, + 1749, + 523, + 1749 + ], + "score": 0.92, + "latex": "1 - \\delta / K _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1943, + 1285, + 1943, + 1285, + 1973, + 1169, + 1973 + ], + "score": 0.92, + "latex": "K _ { 0 } = 2 K" + }, + { + "category_id": 13, + "poly": [ + 925, + 1704, + 1349, + 1704, + 1349, + 1759, + 925, + 1759 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon L _ { 2 } / ( c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } ) } \\rbrace } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 358, + 568, + 358, + 568, + 393, + 372, + 393 + ], + "score": 0.91, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1156, + 1403, + 1156, + 1403, + 1192, + 1292, + 1192 + ], + "score": 0.91, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 436, + 1821, + 912, + 1821, + 912, + 1860, + 436, + 1860 + ], + "score": 0.91, + "latex": "\\mathbf { g } ^ { k } i s \\operatorname* { m i n } \\{ n , \\sqrt { 4 c n L _ { 1 } ^ { 2 } \\log { ( K _ { 0 } / \\delta ) } / ( \\epsilon L _ { 2 } ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 822, + 479, + 1352, + 479, + 1352, + 515, + 822, + 515 + ], + "score": 0.91, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ) - \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { H } ) + \\mathbf { H } ^ { k - 1 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 699, + 1254, + 699, + 1254, + 736, + 782, + 736 + ], + "score": 0.91, + "latex": "\\mathbf { g } ^ { k } = \\nabla f ( \\mathbf { x } ^ { k } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } ;" + }, + { + "category_id": 13, + "poly": [ + 297, + 1755, + 756, + 1755, + 756, + 1795, + 297, + 1795 + ], + "score": 0.91, + "latex": "s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { c n L _ { 1 } ^ { 2 } \\log ( K _ { 0 } / \\delta ) / ( \\epsilon L _ { 2 } ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 368, + 301, + 536, + 301, + 536, + 331, + 368, + 331 + ], + "score": 0.91, + "latex": "\\mod ( k , p _ { 2 } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 359, + 791, + 514, + 791, + 514, + 825, + 359, + 825 + ], + "score": 0.91, + "latex": "( \\epsilon < \\mathcal { O } ( 1 / n ) )" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1192, + 1148, + 1192, + 1148, + 1225, + 1034, + 1225 + ], + "score": 0.91, + "latex": "1 - \\delta / K _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 409, + 1190, + 752, + 1190, + 752, + 1226, + 409, + 1226 + ], + "score": 0.9, + "latex": "\\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } / 3" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1668, + 1345, + 1668, + 1345, + 1704, + 1070, + 1704 + ], + "score": 0.9, + "latex": "\\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6" + }, + { + "category_id": 13, + "poly": [ + 830, + 1225, + 1043, + 1225, + 1043, + 1260, + 830, + 1260 + ], + "score": 0.9, + "latex": "p _ { 2 } = L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 817, + 419, + 1050, + 419, + 1050, + 454, + 817, + 454 + ], + "score": 0.9, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 822, + 821, + 978, + 821, + 978, + 854, + 822, + 854 + ], + "score": 0.9, + "latex": "( \\epsilon > \\mathcal { O } ( 1 / n ) )" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1484, + 1248, + 1484, + 1248, + 1514, + 1207, + 1514 + ], + "score": 0.89, + "latex": "\\bar { \\mathbf { H } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 395, + 1159, + 475, + 1159, + 475, + 1190, + 395, + 1190 + ], + "score": 0.89, + "latex": "k \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 349, + 1260, + 722, + 1260, + 722, + 1293, + 349, + 1293 + ], + "score": 0.89, + "latex": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1193, + 1401, + 1193, + 1401, + 1226, + 1285, + 1226 + ], + "score": 0.89, + "latex": "\\boldsymbol { p } _ { 2 } = \\sqrt { n }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1227, + 617, + 1227, + 617, + 1259, + 346, + 1259 + ], + "score": 0.88, + "latex": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 987, + 1762, + 1096, + 1762, + 1096, + 1790, + 987, + 1790 + ], + "score": 0.88, + "latex": "c = 1 1 5 2" + }, + { + "category_id": 13, + "poly": [ + 440, + 421, + 468, + 421, + 468, + 454, + 440, + 454 + ], + "score": 0.88, + "latex": "s _ { 2 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1668, + 518, + 1668, + 518, + 1703, + 485, + 1703 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 787, + 1319, + 954, + 1319, + 954, + 1365, + 787, + 1365 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\frac { 6 4 L _ { 1 } } { \\sqrt { \\epsilon L _ { 2 } } } \\log \\frac { d K _ { 0 } } { \\delta } \\biggr \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1359, + 1288, + 1400, + 1288, + 1400, + 1317, + 1359, + 1317 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1715, + 810, + 1715, + 810, + 1747, + 735, + 1747 + ], + "score": 0.88, + "latex": "k \\geq 0 ," + }, + { + "category_id": 13, + "poly": [ + 862, + 1157, + 904, + 1157, + 904, + 1189, + 862, + 1189 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1514, + 330, + 1514, + 330, + 1548, + 297, + 1548 + ], + "score": 0.87, + "latex": "\\bar { \\mathbf { g } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1225, + 1398, + 1225, + 1398, + 1261, + 1056, + 1261 + ], + "score": 0.87, + "latex": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 940, + 1261, + 980, + 1261, + 980, + 1290, + 940, + 1290 + ], + "score": 0.87, + "latex": "K _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1762, + 1188, + 1762, + 1188, + 1791, + 1149, + 1791 + ], + "score": 0.87, + "latex": "K _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 630, + 1483, + 663, + 1483, + 663, + 1518, + 630, + 1518 + ], + "score": 0.87, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 544, + 915, + 571, + 915, + 571, + 944, + 544, + 944 + ], + "score": 0.87, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 697, + 421, + 731, + 421, + 731, + 449, + 697, + 449 + ], + "score": 0.86, + "latex": "\\mathcal { H } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 848, + 852, + 890, + 852, + 890, + 881, + 848, + 881 + ], + "score": 0.86, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1520, + 1261, + 1520, + 1261, + 1547, + 1232, + 1547 + ], + "score": 0.86, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 493, + 1549, + 522, + 1549, + 522, + 1577, + 493, + 1577 + ], + "score": 0.85, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 477, + 1319, + 775, + 1319, + 775, + 1362, + 477, + 1362 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { 2 s _ { 2 } = \\operatorname* { m i n } \\{ 6 4 \\sqrt { n } \\log \\frac { d K _ { 0 } } { \\delta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 574, + 857, + 604, + 857, + 604, + 884, + 574, + 884 + ], + "score": 0.85, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 540, + 274, + 569, + 274, + 569, + 300, + 540, + 300 + ], + "score": 0.85, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 384, + 641, + 560, + 641, + 560, + 675, + 384, + 675 + ], + "score": 0.83, + "latex": "\\mathbf { g } ^ { k } : = \\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 454, + 488, + 482, + 488, + 482, + 512, + 454, + 512 + ], + "score": 0.82, + "latex": "s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 796, + 1944, + 815, + 1944, + 815, + 1970, + 796, + 1970 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 710, + 703, + 732, + 703, + 732, + 733, + 710, + 733 + ], + "score": 0.8, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1944, + 1401, + 1944, + 1401, + 1970, + 1372, + 1970 + ], + "score": 0.8, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 454, + 709, + 482, + 709, + 482, + 733, + 454, + 733 + ], + "score": 0.79, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 368, + 612, + 536, + 612, + 536, + 641, + 368, + 641 + ], + "score": 0.79, + "latex": "\\mod ( k , p _ { 1 } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 435, + 1823, + 469, + 1823, + 469, + 1858, + 435, + 1858 + ], + "score": 0.76, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 557, + 396, + 577, + 396, + 577, + 418, + 557, + 418 + ], + "score": 0.75, + "latex": "\\diamond" + }, + { + "category_id": 13, + "poly": [ + 710, + 483, + 738, + 483, + 738, + 510, + 710, + 510 + ], + "score": 0.75, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 755, + 269, + 783, + 269, + 783, + 302, + 755, + 302 + ], + "score": 0.72, + "latex": "s _ { 2 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 555, + 335, + 575, + 335, + 575, + 357, + 555, + 357 + ], + "score": 0.7, + "latex": "\\diamond" + }, + { + "category_id": 13, + "poly": [ + 716, + 274, + 744, + 274, + 744, + 300, + 716, + 300 + ], + "score": 0.64, + "latex": "s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 839, + 1262, + 863, + 1262, + 863, + 1287, + 839, + 1287 + ], + "score": 0.47, + "latex": "\\boldsymbol { { I I } }" + }, + { + "category_id": 13, + "poly": [ + 733, + 1229, + 750, + 1229, + 750, + 1255, + 733, + 1255 + ], + "score": 0.43, + "latex": "I ," + }, + { + "category_id": 13, + "poly": [ + 905, + 395, + 920, + 395, + 920, + 417, + 905, + 417 + ], + "score": 0.36, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1639, + 1349, + 1639, + 1349, + 1665, + 1329, + 1665 + ], + "score": 0.32, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 868, + 336, + 883, + 336, + 883, + 357, + 868, + 357 + ], + "score": 0.3, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 562.0, + 771.0, + 562.0, + 771.0, + 607.0, + 296.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 653.0, + 226.0, + 653.0, + 263.0, + 295.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1391.0, + 772.0, + 1391.0, + 772.0, + 1435.0, + 292.0, + 1435.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": [ + 294.0, + 1122.0, + 1032.0, + 1122.0, + 1032.0, + 1159.0, + 294.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1122.0, + 1408.0, + 1122.0, + 1408.0, + 1159.0, + 1180.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 394.0, + 1156.0, + 394.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1156.0, + 861.0, + 1156.0, + 861.0, + 1193.0, + 476.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1156.0, + 1291.0, + 1156.0, + 1291.0, + 1193.0, + 905.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 408.0, + 1188.0, + 408.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1188.0, + 1033.0, + 1188.0, + 1033.0, + 1227.0, + 753.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1188.0, + 1284.0, + 1188.0, + 1284.0, + 1227.0, + 1149.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1188.0, + 1406.0, + 1188.0, + 1406.0, + 1227.0, + 1402.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 345.0, + 1224.0, + 345.0, + 1261.0, + 294.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1224.0, + 732.0, + 1224.0, + 732.0, + 1261.0, + 618.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1224.0, + 829.0, + 1224.0, + 829.0, + 1261.0, + 751.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1224.0, + 1055.0, + 1224.0, + 1055.0, + 1261.0, + 1044.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1261.0, + 1399.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1260.0, + 348.0, + 1260.0, + 348.0, + 1293.0, + 296.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1260.0, + 838.0, + 1260.0, + 838.0, + 1293.0, + 723.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1260.0, + 939.0, + 1260.0, + 939.0, + 1293.0, + 864.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1260.0, + 1407.0, + 1260.0, + 1407.0, + 1293.0, + 981.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 1358.0, + 1287.0, + 1358.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1287.0, + 1405.0, + 1287.0, + 1405.0, + 1323.0, + 1401.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 476.0, + 1302.0, + 476.0, + 1372.0, + 293.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1302.0, + 786.0, + 1302.0, + 786.0, + 1372.0, + 776.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1312.0, + 965.0, + 1312.0, + 965.0, + 1358.5, + 887.0, + 1358.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1338.5, + 846.0, + 1338.5, + 846.0, + 1367.0, + 781.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1338.5, + 936.0, + 1338.5, + 936.0, + 1359.5, + 898.0, + 1359.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 790.0, + 358.0, + 790.0, + 358.0, + 826.0, + 295.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 790.0, + 1405.0, + 790.0, + 1405.0, + 826.0, + 515.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 821.0, + 821.0, + 821.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 821.0, + 1405.0, + 821.0, + 1405.0, + 856.0, + 979.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 850.0, + 573.0, + 850.0, + 573.0, + 886.0, + 295.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 850.0, + 847.0, + 850.0, + 847.0, + 886.0, + 605.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 850.0, + 1406.0, + 850.0, + 1406.0, + 886.0, + 891.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 883.0, + 1403.0, + 883.0, + 1403.0, + 915.0, + 296.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 913.0, + 543.0, + 913.0, + 543.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 913.0, + 1406.0, + 913.0, + 1406.0, + 948.0, + 572.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 943.0, + 445.0, + 943.0, + 445.0, + 974.0, + 292.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1908.0, + 1404.0, + 1908.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 795.0, + 1943.0, + 795.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1943.0, + 1168.0, + 1943.0, + 1168.0, + 1976.0, + 816.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1943.0, + 1371.0, + 1943.0, + 1371.0, + 1976.0, + 1286.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 835.0, + 2003.0, + 835.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1452.0, + 1403.0, + 1452.0, + 1403.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1484.0, + 629.0, + 1484.0, + 629.0, + 1518.0, + 292.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1484.0, + 1206.0, + 1484.0, + 1206.0, + 1518.0, + 664.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1484.0, + 1407.0, + 1484.0, + 1407.0, + 1518.0, + 1249.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1512.0, + 296.0, + 1512.0, + 296.0, + 1551.0, + 291.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1512.0, + 1231.0, + 1512.0, + 1231.0, + 1551.0, + 331.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1551.0, + 1262.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1547.0, + 492.0, + 1547.0, + 492.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1547.0, + 838.0, + 1547.0, + 838.0, + 1578.0, + 523.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1025.0, + 291.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1018.0, + 1406.0, + 1018.0, + 1406.0, + 1056.0, + 293.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1086.0, + 293.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1080.0, + 496.0, + 1080.0, + 496.0, + 1115.0, + 292.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1592.0, + 1408.0, + 1592.0, + 1408.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1635.0, + 1037.0, + 1635.0, + 1037.0, + 1671.0, + 294.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1635.0, + 1328.0, + 1635.0, + 1328.0, + 1671.0, + 1187.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1671.0, + 1350.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1667.0, + 484.0, + 1667.0, + 484.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1667.0, + 851.0, + 1667.0, + 851.0, + 1707.0, + 519.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1667.0, + 1069.0, + 1667.0, + 1069.0, + 1707.0, + 952.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1667.0, + 1405.0, + 1667.0, + 1405.0, + 1707.0, + 1346.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1708.0, + 522.0, + 1708.0, + 522.0, + 1756.0, + 291.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1708.0, + 734.0, + 1708.0, + 734.0, + 1756.0, + 639.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1708.0, + 924.0, + 1708.0, + 924.0, + 1756.0, + 811.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1708.0, + 1408.0, + 1708.0, + 1408.0, + 1756.0, + 1350.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1760.0, + 986.0, + 1760.0, + 986.0, + 1796.0, + 757.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1760.0, + 1148.0, + 1760.0, + 1148.0, + 1796.0, + 1097.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1760.0, + 1404.0, + 1760.0, + 1404.0, + 1796.0, + 1189.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1404.0, + 1788.0, + 1404.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 434.0, + 1823.0, + 434.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1823.0, + 921.0, + 1823.0, + 921.0, + 1863.0, + 913.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 607.0, + 367.0, + 607.0, + 367.0, + 646.0, + 307.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 607.0, + 600.0, + 607.0, + 600.0, + 646.0, + 537.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 640.0, + 341.0, + 640.0, + 341.0, + 673.0, + 307.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 633.0, + 383.0, + 633.0, + 383.0, + 678.0, + 377.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 633.0, + 576.0, + 633.0, + 576.0, + 678.0, + 561.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 669.0, + 399.0, + 669.0, + 399.0, + 706.0, + 305.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 703.0, + 342.0, + 703.0, + 342.0, + 734.0, + 307.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 695.0, + 453.0, + 695.0, + 453.0, + 740.0, + 375.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 695.0, + 709.0, + 695.0, + 709.0, + 740.0, + 483.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 695.0, + 781.0, + 695.0, + 781.0, + 740.0, + 733.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 695.0, + 1266.0, + 695.0, + 1266.0, + 740.0, + 1255.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 731.0, + 423.0, + 731.0, + 423.0, + 766.0, + 303.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 267.0, + 539.0, + 267.0, + 539.0, + 303.0, + 295.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 267.0, + 715.0, + 267.0, + 715.0, + 303.0, + 570.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 267.0, + 754.0, + 267.0, + 754.0, + 303.0, + 745.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 267.0, + 902.0, + 267.0, + 902.0, + 303.0, + 784.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 297.0, + 367.0, + 297.0, + 367.0, + 334.0, + 305.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 297.0, + 601.0, + 297.0, + 601.0, + 334.0, + 537.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 329.0, + 339.0, + 329.0, + 339.0, + 360.0, + 307.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 328.0, + 496.0, + 328.0, + 496.0, + 362.0, + 379.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 327.0, + 554.0, + 327.0, + 554.0, + 364.0, + 551.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 327.0, + 867.0, + 327.0, + 867.0, + 364.0, + 576.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 327.0, + 895.0, + 327.0, + 895.0, + 364.0, + 884.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 359.0, + 341.0, + 359.0, + 341.0, + 393.0, + 306.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 350.0, + 371.0, + 350.0, + 371.0, + 396.0, + 366.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 350.0, + 582.0, + 350.0, + 582.0, + 396.0, + 569.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 389.0, + 340.0, + 389.0, + 340.0, + 424.0, + 306.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 389.0, + 504.0, + 389.0, + 504.0, + 424.0, + 379.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 392.0, + 556.0, + 392.0, + 556.0, + 421.0, + 551.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 392.0, + 904.0, + 392.0, + 904.0, + 421.0, + 578.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 392.0, + 934.0, + 392.0, + 934.0, + 421.0, + 921.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 421.0, + 339.0, + 421.0, + 339.0, + 452.0, + 307.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 415.0, + 439.0, + 415.0, + 439.0, + 456.0, + 364.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 415.0, + 696.0, + 415.0, + 696.0, + 456.0, + 469.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 415.0, + 816.0, + 415.0, + 816.0, + 456.0, + 732.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 415.0, + 1063.0, + 415.0, + 1063.0, + 456.0, + 1051.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 451.0, + 347.0, + 451.0, + 347.0, + 483.0, + 307.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 451.0, + 398.0, + 451.0, + 398.0, + 484.0, + 336.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 480.0, + 341.0, + 480.0, + 341.0, + 515.0, + 306.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 478.0, + 453.0, + 478.0, + 453.0, + 513.0, + 378.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 478.0, + 709.0, + 478.0, + 709.0, + 513.0, + 483.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 478.0, + 821.0, + 478.0, + 821.0, + 513.0, + 739.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 478.0, + 1363.0, + 478.0, + 1363.0, + 513.0, + 1353.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 511.0, + 422.0, + 511.0, + 422.0, + 545.0, + 304.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1391.0, + 772.0, + 1391.0, + 772.0, + 1435.0, + 292.0, + 1435.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1066, + 1407, + 1066, + 1407, + 1366, + 296, + 1366 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1485, + 1407, + 1485, + 1407, + 1676, + 296, + 1676 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 295, + 861, + 1407, + 861, + 1407, + 1040, + 295, + 1040 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1686, + 1404, + 1686, + 1404, + 1783, + 298, + 1783 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 295, + 1883, + 1405, + 1883, + 1405, + 1948, + 295, + 1948 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 297, + 1968, + 1435, + 1968, + 1435, + 2044, + 297, + 2044 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 299, + 1411, + 1034, + 1411, + 1034, + 1450, + 299, + 1450 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 307, + 653, + 1310, + 653, + 1310, + 839, + 307, + 839 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 300, + 1824, + 768, + 1824, + 768, + 1856, + 300, + 1856 + ], + "score": 0.847 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 513, + 229, + 513, + 261, + 298, + 261 + ], + "score": 0.846 + }, + { + "category_id": 1, + "poly": [ + 304, + 305, + 947, + 305, + 947, + 586, + 304, + 586 + ], + "score": 0.815 + }, + { + "category_id": 0, + "poly": [ + 302, + 611, + 769, + 611, + 769, + 643, + 302, + 643 + ], + "score": 0.81 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 295, + 274, + 956, + 274, + 956, + 307, + 295, + 307 + ], + "score": 0.592 + }, + { + "category_id": 13, + "poly": [ + 322, + 1331, + 504, + 1331, + 504, + 1366, + 322, + 1366 + ], + "score": 0.94, + "latex": "1 / { \\epsilon } \\le n \\le 1 / \\bar { \\epsilon } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 653, + 1914, + 922, + 1914, + 922, + 1948, + 653, + 1948 + ], + "score": 0.94, + "latex": "\\mathbf { x } ( a ) = a \\bar { \\mathbf { x } } ^ { t } + ( 1 - a ) \\tilde { \\mathbf { x } }" + }, + { + "category_id": 13, + "poly": [ + 860, + 1608, + 1012, + 1608, + 1012, + 1646, + 860, + 1646 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 553, + 1131, + 667, + 1131, + 667, + 1169, + 553, + 1169 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 2 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 680, + 1232, + 860, + 1232, + 860, + 1270, + 680, + 1270 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1684, + 1195, + 1684, + 1195, + 1723, + 1055, + 1723 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1165, + 451, + 1165, + 451, + 1204, + 298, + 1204 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } \\bar { ( } n ^ { 2 / 3 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 705, + 1296, + 951, + 1296, + 951, + 1335, + 705, + 1335 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( n / \\epsilon ^ { 1 . 5 } , n / \\epsilon ^ { 2 } , 1 / \\epsilon ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 973, + 1232, + 1176, + 1232, + 1176, + 1269, + 973, + 1269 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 651, + 1066, + 927, + 1066, + 927, + 1104, + 651, + 1104 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } \\} )" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1200, + 1395, + 1200, + 1395, + 1235, + 1315, + 1235 + ], + "score": 0.91, + "latex": "( \\epsilon , \\sqrt { \\epsilon } )" + }, + { + "category_id": 13, + "poly": [ + 511, + 490, + 636, + 490, + 636, + 524, + 511, + 524 + ], + "score": 0.9, + "latex": "{ \\bf x } _ { \\epsilon } = { \\bf x } ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1267, + 1331, + 1267, + 1331, + 1299, + 1046, + 1299 + ], + "score": 0.9, + "latex": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma" + }, + { + "category_id": 13, + "poly": [ + 602, + 1687, + 643, + 1687, + 643, + 1718, + 602, + 1718 + ], + "score": 0.9, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1517, + 1196, + 1517, + 1196, + 1548, + 1129, + 1548 + ], + "score": 0.89, + "latex": "\\mathrm { { S T R } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 675, + 1689, + 740, + 1689, + 740, + 1720, + 675, + 1720 + ], + "score": 0.89, + "latex": "\\operatorname { S T R } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1300, + 1267, + 1300, + 1267, + 1335, + 1065, + 1335 + ], + "score": 0.89, + "latex": "\\tilde { \\mathcal { O } } ( \\sqrt { n } / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1965, + 1428, + 1965, + 1428, + 2045, + 310, + 2045 + ], + "score": 0.89, + "latex": "\\nabla f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla f _ { i } ( \\widetilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\| = \\| \\int _ { 0 } ^ { 1 } [ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ( a ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ] ( \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } ) \\mathbf { d } a \\| \\leq \\frac { L _ { 2 } } { 2 } \\| \\mathbf { x } ^ { t } - \\widetilde { \\mathbf { x } } \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 458, + 1721, + 524, + 1721, + 524, + 1751, + 458, + 1751 + ], + "score": 0.89, + "latex": "\\mathrm { { S T R _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 448, + 1103, + 514, + 1103, + 514, + 1132, + 448, + 1132 + ], + "score": 0.88, + "latex": "\\operatorname { S T R } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 411, + 456, + 578, + 456, + 578, + 493, + 411, + 493 + ], + "score": 0.88, + "latex": "\\lambda ^ { k } \\le 3 \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 580, + 396, + 612, + 396, + 612, + 425, + 580, + 425 + ], + "score": 0.88, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 806, + 893, + 840, + 893, + 840, + 926, + 806, + 926 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 538, + 923, + 578, + 923, + 578, + 953, + 538, + 953 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 494, + 396, + 528, + 396, + 528, + 425, + 494, + 425 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 385, + 307, + 456, + 307, + 456, + 335, + 385, + 335 + ], + "score": 0.88, + "latex": "k = 1" + }, + { + "category_id": 13, + "poly": [ + 594, + 997, + 1001, + 997, + 1001, + 1039, + 594, + 1039 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { \\sqrt { n L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { L _ { 1 } \\Delta } { \\epsilon ^ { 2 } } \\} \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 385, + 426, + 588, + 426, + 588, + 455, + 385, + 455 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 705, + 366, + 746, + 366, + 746, + 395, + 705, + 395 + ], + "score": 0.85, + "latex": "\\bar { \\mathbf { H } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 708, + 334, + 741, + 334, + 741, + 366, + 708, + 366 + ], + "score": 0.85, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 815, + 865, + 882, + 865, + 882, + 894, + 815, + 894 + ], + "score": 0.85, + "latex": "\\mathrm { S T R _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 521, + 274, + 553, + 274, + 553, + 304, + 521, + 304 + ], + "score": 0.84, + "latex": "\\mathbf { x } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 925, + 1150, + 925, + 1150, + 954, + 1087, + 954 + ], + "score": 0.84, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 454, + 751, + 482, + 751, + 482, + 774, + 454, + 774 + ], + "score": 0.83, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 381, + 772, + 1305, + 772, + 1305, + 809, + 381, + 809 + ], + "score": 0.79, + "latex": "\\mathbf { g } ^ { k } = \\bar { \\nabla } f ( \\mathbf { x } ^ { k ^ { \\prime } } ; \\mathcal { G } ) - \\nabla f ( \\mathbf { x } ^ { k ^ { \\prime } - 1 } ; \\mathcal { G } ) + \\mathbf { g } ^ { k - 1 } + [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ;" + }, + { + "category_id": 13, + "poly": [ + 711, + 746, + 731, + 746, + 731, + 774, + 711, + 774 + ], + "score": 0.76, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 489, + 308, + 518, + 308, + 518, + 334, + 489, + 334 + ], + "score": 0.74, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 533, + 681, + 697, + 681, + 697, + 717, + 533, + 717 + ], + "score": 0.74, + "latex": "\\mathbf { g } ^ { k } : = \\nabla F ( \\tilde { \\mathbf { x } } )" + }, + { + "category_id": 13, + "poly": [ + 632, + 1106, + 646, + 1106, + 646, + 1129, + 632, + 1129 + ], + "score": 0.73, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 666, + 283, + 682, + 283, + 682, + 303, + 666, + 303 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 637, + 955, + 1027, + 955, + 1027, + 997, + 637, + 997 + ], + "score": 0.7, + "latex": "\\begin{array} { r l } { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { n \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } , \\frac { \\sqrt { n } L _ { 1 } } { \\epsilon ^ { 2 } } \\log ( \\frac { L _ { 2 } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) \\} ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 925, + 276, + 955, + 276, + 955, + 304, + 925, + 304 + ], + "score": 0.6, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 695, + 926, + 737, + 926, + 737, + 953, + 695, + 953 + ], + "score": 0.57, + "latex": "1 2 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 368, + 654, + 537, + 654, + 537, + 684, + 368, + 684 + ], + "score": 0.56, + "latex": "\\mod ( k , p _ { 1 } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 430, + 684, + 524, + 684, + 524, + 714, + 430, + 714 + ], + "score": 0.51, + "latex": "\\widetilde \\mathbf { x } : = \\mathbf { x } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 638, + 955, + 814, + 955, + 814, + 997, + 638, + 997 + ], + "score": 0.5, + "latex": "\\begin{array} { r l r } { { \\mathcal { O } ( \\operatorname* { m i n } \\{ \\frac { n \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } } } & { { } } & { } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1051, + 897, + 1070, + 897, + 1070, + 922, + 1051, + 922 + ], + "score": 0.36, + "latex": "^ 3" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1411.0, + 1036.0, + 1411.0, + 1036.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 772.0, + 1818.0, + 772.0, + 1864.0, + 292.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 518.0, + 223.0, + 518.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 604.0, + 772.0, + 604.0, + 772.0, + 648.0, + 296.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1063.0, + 650.0, + 1063.0, + 650.0, + 1106.0, + 293.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1063.0, + 1407.0, + 1063.0, + 1407.0, + 1106.0, + 928.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 447.0, + 1098.0, + 447.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1098.0, + 631.0, + 1098.0, + 631.0, + 1135.0, + 515.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1098.0, + 1405.0, + 1098.0, + 1405.0, + 1135.0, + 647.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1130.0, + 552.0, + 1130.0, + 552.0, + 1172.0, + 291.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1130.0, + 1408.0, + 1130.0, + 1408.0, + 1172.0, + 668.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 297.0, + 1165.0, + 297.0, + 1206.0, + 294.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1165.0, + 1408.0, + 1165.0, + 1408.0, + 1206.0, + 452.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1314.0, + 1201.0, + 1314.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1236.0, + 1396.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1232.0, + 679.0, + 1232.0, + 679.0, + 1271.0, + 291.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1232.0, + 972.0, + 1232.0, + 972.0, + 1271.0, + 861.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1232.0, + 1409.0, + 1232.0, + 1409.0, + 1271.0, + 1177.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1264.0, + 1045.0, + 1264.0, + 1045.0, + 1301.0, + 291.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1264.0, + 1407.0, + 1264.0, + 1407.0, + 1301.0, + 1332.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1296.0, + 704.0, + 1296.0, + 704.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1296.0, + 1064.0, + 1296.0, + 1064.0, + 1337.0, + 952.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1296.0, + 1410.0, + 1296.0, + 1410.0, + 1337.0, + 1268.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1330.0, + 321.0, + 1330.0, + 321.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1330.0, + 1320.0, + 1330.0, + 1320.0, + 1367.0, + 505.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1487.0, + 1405.0, + 1487.0, + 1405.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 1128.0, + 1516.0, + 1128.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1516.0, + 1409.0, + 1516.0, + 1409.0, + 1552.0, + 1197.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1581.0, + 295.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1577.0, + 1405.0, + 1577.0, + 1405.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1608.0, + 859.0, + 1608.0, + 859.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1608.0, + 1409.0, + 1608.0, + 1409.0, + 1648.0, + 1013.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1637.0, + 391.0, + 1637.0, + 391.0, + 1678.0, + 292.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 862.0, + 814.0, + 862.0, + 814.0, + 897.0, + 297.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 862.0, + 1405.0, + 862.0, + 1405.0, + 897.0, + 883.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 893.0, + 805.0, + 893.0, + 805.0, + 928.0, + 293.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 893.0, + 1050.0, + 893.0, + 1050.0, + 928.0, + 841.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 893.0, + 1405.0, + 893.0, + 1405.0, + 928.0, + 1071.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 537.0, + 922.0, + 537.0, + 959.0, + 293.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 922.0, + 694.0, + 922.0, + 694.0, + 959.0, + 579.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 922.0, + 1086.0, + 922.0, + 1086.0, + 959.0, + 738.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 922.0, + 1406.0, + 922.0, + 1406.0, + 959.0, + 1151.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 948.0, + 1414.0, + 948.0, + 1414.0, + 1055.0, + 1028.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 993.0, + 593.0, + 993.0, + 593.0, + 1038.0, + 293.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.75, + 948.0, + 955.75, + 948.0, + 955.75, + 1000.5, + 800.75, + 1000.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 951.0, + 829.0, + 951.0, + 829.0, + 1002.0, + 286.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 975.0, + 799.0, + 975.0, + 799.0, + 999.5, + 747.0, + 999.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1016.5, + 754.0, + 1016.5, + 754.0, + 1039.5, + 707.0, + 1039.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1683.0, + 601.0, + 1683.0, + 601.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1683.0, + 674.0, + 1683.0, + 674.0, + 1726.0, + 644.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1683.0, + 1054.0, + 1683.0, + 1054.0, + 1726.0, + 741.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1683.0, + 1404.0, + 1683.0, + 1404.0, + 1726.0, + 1196.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1720.0, + 457.0, + 1720.0, + 457.0, + 1754.0, + 296.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1720.0, + 1404.0, + 1720.0, + 1404.0, + 1754.0, + 525.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1751.0, + 1105.0, + 1751.0, + 1105.0, + 1785.0, + 294.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1403.0, + 1882.0, + 1403.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 652.0, + 1910.0, + 652.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1910.0, + 1289.0, + 1910.0, + 1289.0, + 1952.0, + 923.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 652.0, + 367.0, + 652.0, + 367.0, + 685.0, + 309.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 652.0, + 599.0, + 652.0, + 599.0, + 685.0, + 538.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 683.0, + 344.0, + 683.0, + 344.0, + 715.0, + 308.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 677.0, + 429.0, + 677.0, + 429.0, + 719.0, + 378.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 677.0, + 532.0, + 677.0, + 532.0, + 719.0, + 525.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 710.0, + 399.0, + 710.0, + 399.0, + 748.0, + 303.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 744.0, + 341.0, + 744.0, + 341.0, + 776.0, + 306.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 743.0, + 453.0, + 743.0, + 453.0, + 777.0, + 382.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 743.0, + 710.0, + 743.0, + 710.0, + 777.0, + 483.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 743.0, + 744.0, + 743.0, + 744.0, + 777.0, + 732.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 773.0, + 341.0, + 773.0, + 341.0, + 807.0, + 306.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 766.0, + 380.0, + 766.0, + 380.0, + 812.0, + 376.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 766.0, + 1313.0, + 766.0, + 1313.0, + 812.0, + 1306.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 803.0, + 423.0, + 803.0, + 423.0, + 839.0, + 303.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 302.0, + 384.0, + 302.0, + 384.0, + 339.0, + 309.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 302.0, + 488.0, + 302.0, + 488.0, + 339.0, + 457.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 302.0, + 560.0, + 302.0, + 560.0, + 339.0, + 519.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 336.0, + 338.0, + 336.0, + 338.0, + 368.0, + 310.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 332.0, + 707.0, + 332.0, + 707.0, + 371.0, + 380.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 332.0, + 923.0, + 332.0, + 923.0, + 371.0, + 742.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 364.0, + 339.0, + 364.0, + 339.0, + 399.0, + 308.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 359.0, + 704.0, + 359.0, + 704.0, + 402.0, + 381.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 359.0, + 928.0, + 359.0, + 928.0, + 402.0, + 747.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 397.0, + 338.0, + 397.0, + 338.0, + 429.0, + 309.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 391.0, + 493.0, + 391.0, + 493.0, + 435.0, + 380.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 391.0, + 579.0, + 391.0, + 579.0, + 435.0, + 529.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 391.0, + 790.0, + 391.0, + 790.0, + 435.0, + 613.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 428.0, + 338.0, + 428.0, + 338.0, + 459.0, + 309.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 416.0, + 384.0, + 416.0, + 384.0, + 464.0, + 379.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 416.0, + 605.0, + 416.0, + 605.0, + 464.0, + 589.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 459.0, + 338.0, + 459.0, + 338.0, + 490.0, + 309.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 451.0, + 410.0, + 451.0, + 410.0, + 496.0, + 380.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 451.0, + 645.0, + 451.0, + 645.0, + 496.0, + 579.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 492.0, + 340.0, + 492.0, + 340.0, + 526.0, + 308.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 488.0, + 510.0, + 488.0, + 510.0, + 524.0, + 419.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 488.0, + 651.0, + 488.0, + 651.0, + 524.0, + 637.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 523.0, + 341.0, + 523.0, + 341.0, + 556.0, + 306.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 521.0, + 464.0, + 521.0, + 464.0, + 554.0, + 378.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 550.0, + 440.0, + 550.0, + 440.0, + 586.0, + 302.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 270.0, + 520.0, + 270.0, + 520.0, + 311.0, + 293.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 270.0, + 665.0, + 270.0, + 665.0, + 311.0, + 554.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 270.0, + 924.0, + 270.0, + 924.0, + 311.0, + 683.0, + 311.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1695, + 1407, + 1695, + 1407, + 2036, + 296, + 2036 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 1165, + 1406, + 1165, + 1406, + 1445, + 296, + 1445 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 464, + 1405, + 464, + 1405, + 628, + 297, + 628 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 331, + 1404, + 331, + 1404, + 455, + 297, + 455 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 651, + 1405, + 651, + 1405, + 776, + 298, + 776 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 783, + 1404, + 783, + 1404, + 902, + 297, + 902 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1534, + 1405, + 1534, + 1405, + 1606, + 299, + 1606 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 659, + 1456, + 1039, + 1456, + 1039, + 1518, + 659, + 1518 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 927, + 1401, + 927, + 1401, + 998, + 299, + 998 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 606, + 276, + 1092, + 276, + 1092, + 319, + 606, + 319 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1402, + 228, + 1402, + 263, + 296, + 263 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 300, + 1040, + 1092, + 1040, + 1092, + 1078, + 300, + 1078 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1108, + 846, + 1108, + 846, + 1142, + 300, + 1142 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1460, + 1400, + 1460, + 1400, + 1491, + 1352, + 1491 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 1640, + 770, + 1640, + 770, + 1672, + 301, + 1672 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.762 + }, + { + "category_id": 14, + "poly": [ + 657, + 1455, + 1039, + 1455, + 1039, + 1519, + 657, + 1519 + ], + "score": 0.94, + "latex": "\\mathbf { v } ^ { t } : = \\operatorname * { a r g m i n } _ { \\| \\mathbf { v } \\| \\leq 1 } \\psi _ { t } ( \\mathbf { v } ) = \\langle \\mathbf { H } ^ { t } \\mathbf { v } , \\mathbf { v } \\rangle ," + }, + { + "category_id": 13, + "poly": [ + 1002, + 464, + 1138, + 464, + 1138, + 503, + 1002, + 503 + ], + "score": 0.93, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 637, + 1410, + 744, + 1410, + 744, + 1445, + 637, + 1445 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 644, + 960, + 795, + 960, + 795, + 998, + 644, + 998 + ], + "score": 0.93, + "latex": "{ \\tilde { \\mathcal { O } } } ( n ^ { 4 / 5 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 611, + 1534, + 719, + 1534, + 719, + 1569, + 611, + 1569 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1569, + 789, + 1569, + 789, + 1606, + 676, + 1606 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1171, + 924, + 1323, + 924, + 1323, + 964, + 1171, + 964 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 3 / 4 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 567, + 1572, + 643, + 1572, + 643, + 1606, + 567, + 1606 + ], + "score": 0.92, + "latex": "( 1 - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 551, + 815, + 840, + 815, + 840, + 859, + 551, + 859 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 856, + 603, + 856, + 603, + 900, + 297, + 900 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\frac { n ^ { 0 . 7 5 } \\sqrt { L _ { 2 } } \\Delta } { \\epsilon ^ { 1 . 5 } } \\log ( \\frac { d \\sqrt { L _ { 2 } } \\Delta } { \\delta \\epsilon ^ { 1 . 5 } } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 938, + 592, + 1225, + 592, + 1225, + 628, + 938, + 628 + ], + "score": 0.92, + "latex": "2 s _ { 1 } = 2 n ^ { 0 . \\dot { 7 } 5 } c \\log ( K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1381, + 1400, + 1381, + 1400, + 1414, + 1279, + 1414 + ], + "score": 0.92, + "latex": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\|" + }, + { + "category_id": 13, + "poly": [ + 754, + 534, + 860, + 534, + 860, + 567, + 754, + 567 + ], + "score": 0.92, + "latex": "1 - \\delta / K _ { 0 }" + }, + { + "category_id": 14, + "poly": [ + 604, + 276, + 1092, + 276, + 1092, + 318, + 604, + 318 + ], + "score": 0.91, + "latex": "\\mathbf { c } ^ { k } = [ \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) - \\nabla ^ { 2 } f ( \\tilde { \\mathbf { x } } ; \\mathcal { G } ) ] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ," + }, + { + "category_id": 13, + "poly": [ + 639, + 1319, + 780, + 1319, + 780, + 1353, + 639, + 1353 + ], + "score": 0.91, + "latex": "\\Theta ( \\log ( 1 / \\bar { \\delta } ) )" + }, + { + "category_id": 13, + "poly": [ + 964, + 532, + 1087, + 532, + 1087, + 565, + 964, + 565 + ], + "score": 0.91, + "latex": "p _ { 1 } = n ^ { 0 . 2 5 }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 500, + 1220, + 500, + 1220, + 535, + 1122, + 535 + ], + "score": 0.91, + "latex": "\\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 430, + 744, + 544, + 744, + 544, + 775, + 430, + 775 + ], + "score": 0.91, + "latex": "K _ { 0 } = 2 K" + }, + { + "category_id": 13, + "poly": [ + 993, + 1289, + 1107, + 1289, + 1107, + 1323, + 993, + 1323 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 533, + 487, + 533, + 487, + 566, + 298, + 566 + ], + "score": 0.91, + "latex": "\\nabla F ( \\mathbf { x } ^ { k } ) \\| \\leq \\epsilon / 6" + }, + { + "category_id": 13, + "poly": [ + 1323, + 1321, + 1403, + 1321, + 1403, + 1353, + 1323, + 1353 + ], + "score": 0.9, + "latex": "( 1 - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 898, + 1380, + 956, + 1380, + 956, + 1414, + 898, + 1414 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 533, + 565, + 571, + 565, + 571, + 595, + 533, + 595 + ], + "score": 0.89, + "latex": "K _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 876, + 593, + 909, + 593, + 909, + 627, + 876, + 627 + ], + "score": 0.89, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1726, + 1314, + 1726, + 1314, + 1757, + 1273, + 1757 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1727, + 1397, + 1727, + 1397, + 1761, + 1363, + 1761 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1330, + 500, + 1405, + 500, + 1405, + 535, + 1330, + 535 + ], + "score": 0.88, + "latex": "\\| \\mathbf { g } ^ { k } - \\mathbf { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 343, + 502, + 412, + 502, + 412, + 532, + 343, + 532 + ], + "score": 0.88, + "latex": "k \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1140, + 532, + 1398, + 532, + 1398, + 566, + 1140, + 566 + ], + "score": 0.88, + "latex": "s _ { 1 } \\doteq \\dot { n } ^ { 0 . 7 5 } c \\log ( \\ddot { K _ { 0 } } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 369, + 1535, + 406, + 1535, + 406, + 1565, + 369, + 1565 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 768, + 500, + 801, + 500, + 801, + 534, + 768, + 534 + ], + "score": 0.87, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 978, + 1818, + 1020, + 1818, + 1020, + 1849, + 978, + 1849 + ], + "score": 0.87, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1293, + 330, + 1325, + 330, + 1325, + 361, + 1293, + 361 + ], + "score": 0.87, + "latex": "\\mathbf { c } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 1699, + 1155, + 1699, + 1155, + 1729, + 1071, + 1729 + ], + "score": 0.87, + "latex": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 783, + 2003, + 866, + 2003, + 866, + 2035, + 783, + 2035 + ], + "score": 0.87, + "latex": "{ \\bf S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 929, + 1123, + 929, + 1123, + 961, + 1056, + 961 + ], + "score": 0.87, + "latex": "\\mathrm { { S T R _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1571, + 355, + 1571, + 355, + 1606, + 298, + 1606 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 474, + 1729, + 558, + 1729, + 558, + 1760, + 474, + 1760 + ], + "score": 0.87, + "latex": "\\mathrm { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 425, + 1289, + 482, + 1289, + 482, + 1323, + 425, + 1323 + ], + "score": 0.86, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 372, + 567, + 481, + 567, + 481, + 593, + 372, + 593 + ], + "score": 0.83, + "latex": "c = 1 1 5 2" + }, + { + "category_id": 13, + "poly": [ + 801, + 785, + 866, + 785, + 866, + 816, + 801, + 816 + ], + "score": 0.83, + "latex": "\\mathrm { { S T R } _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1172, + 715, + 1191, + 715, + 1191, + 741, + 1172, + 741 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 390, + 822, + 456, + 822, + 456, + 853, + 390, + 853 + ], + "score": 0.8, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 679, + 1383, + 692, + 1383, + 692, + 1407, + 679, + 1407 + ], + "score": 0.8, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1107, + 785, + 1149, + 785, + 1149, + 813, + 1107, + 813 + ], + "score": 0.71, + "latex": "1 2 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 470, + 1352, + 487, + 1352, + 487, + 1379, + 470, + 1379 + ], + "score": 0.71, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 700, + 934, + 714, + 934, + 714, + 957, + 700, + 957 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 746, + 1883, + 765, + 1883, + 765, + 1910, + 746, + 1910 + ], + "score": 0.66, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 374, + 334, + 396, + 334, + 396, + 360, + 374, + 360 + ], + "score": 0.64, + "latex": "\\tilde { \\bf x }" + }, + { + "category_id": 13, + "poly": [ + 912, + 1289, + 957, + 1289, + 957, + 1323, + 912, + 1323 + ], + "score": 0.5, + "latex": "2 / 3" + }, + { + "category_id": 13, + "poly": [ + 662, + 471, + 681, + 471, + 681, + 496, + 662, + 496 + ], + "score": 0.43, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 542, + 1322, + 596, + 1322, + 596, + 1352, + 542, + 1352 + ], + "score": 0.4, + "latex": "\\mathbf { \\partial } \\cdot \\mathbf { W E A K }" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1261, + 1120, + 1261, + 1120, + 1289, + 1068, + 1289 + ], + "score": 0.26, + "latex": "\\mathbf { W E A K }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1037.0, + 1096.0, + 1037.0, + 1096.0, + 1083.0, + 293.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1106.0, + 850.0, + 1106.0, + 850.0, + 1147.0, + 293.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1640.0, + 774.0, + 1640.0, + 774.0, + 1676.0, + 295.0, + 1676.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, + 1695.0, + 1070.0, + 1695.0, + 1070.0, + 1734.0, + 294.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1695.0, + 1408.0, + 1695.0, + 1408.0, + 1734.0, + 1156.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1723.0, + 473.0, + 1723.0, + 473.0, + 1763.0, + 290.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1723.0, + 1272.0, + 1723.0, + 1272.0, + 1763.0, + 559.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1723.0, + 1362.0, + 1723.0, + 1362.0, + 1763.0, + 1315.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1723.0, + 1406.0, + 1723.0, + 1406.0, + 1763.0, + 1398.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1824.0, + 296.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 977.0, + 1818.0, + 977.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1818.0, + 1407.0, + 1818.0, + 1407.0, + 1855.0, + 1021.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1883.0, + 295.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 745.0, + 1881.0, + 745.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1916.0, + 766.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1994.0, + 782.0, + 1994.0, + 782.0, + 2044.0, + 290.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1994.0, + 879.0, + 1994.0, + 879.0, + 2044.0, + 867.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1165.0, + 1406.0, + 1165.0, + 1406.0, + 1201.0, + 296.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1406.0, + 1197.0, + 1406.0, + 1234.0, + 294.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1260.0, + 295.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1256.0, + 1067.0, + 1256.0, + 1067.0, + 1297.0, + 293.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1256.0, + 1409.0, + 1256.0, + 1409.0, + 1297.0, + 1121.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1285.0, + 424.0, + 1285.0, + 424.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1285.0, + 911.0, + 1285.0, + 911.0, + 1326.0, + 483.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1285.0, + 992.0, + 1285.0, + 992.0, + 1326.0, + 958.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1285.0, + 1407.0, + 1285.0, + 1407.0, + 1326.0, + 1108.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 541.0, + 1317.0, + 541.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1317.0, + 638.0, + 1317.0, + 638.0, + 1358.0, + 597.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1317.0, + 1322.0, + 1317.0, + 1322.0, + 1358.0, + 781.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1317.0, + 1407.0, + 1317.0, + 1407.0, + 1358.0, + 1404.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1347.0, + 469.0, + 1347.0, + 469.0, + 1388.0, + 291.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1347.0, + 1403.0, + 1347.0, + 1403.0, + 1388.0, + 488.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 678.0, + 1376.0, + 678.0, + 1417.0, + 293.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1376.0, + 897.0, + 1376.0, + 897.0, + 1417.0, + 693.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1376.0, + 1278.0, + 1376.0, + 1278.0, + 1417.0, + 957.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 636.0, + 1409.0, + 636.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1409.0, + 1397.0, + 1409.0, + 1397.0, + 1446.0, + 745.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 661.0, + 466.0, + 661.0, + 502.0, + 294.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 466.0, + 1001.0, + 466.0, + 1001.0, + 502.0, + 682.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 466.0, + 1406.0, + 466.0, + 1406.0, + 502.0, + 1139.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 499.0, + 342.0, + 499.0, + 342.0, + 535.0, + 292.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 499.0, + 767.0, + 499.0, + 767.0, + 535.0, + 413.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 499.0, + 1121.0, + 499.0, + 1121.0, + 535.0, + 802.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 499.0, + 1329.0, + 499.0, + 1329.0, + 535.0, + 1221.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 525.0, + 297.0, + 525.0, + 297.0, + 571.0, + 292.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 525.0, + 753.0, + 525.0, + 753.0, + 571.0, + 488.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 525.0, + 963.0, + 525.0, + 963.0, + 571.0, + 861.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 525.0, + 1139.0, + 525.0, + 1139.0, + 571.0, + 1088.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 525.0, + 1410.0, + 525.0, + 1410.0, + 571.0, + 1399.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 564.0, + 371.0, + 564.0, + 371.0, + 597.0, + 296.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 564.0, + 532.0, + 564.0, + 532.0, + 597.0, + 482.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 564.0, + 1406.0, + 564.0, + 1406.0, + 597.0, + 572.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 590.0, + 875.0, + 590.0, + 875.0, + 631.0, + 292.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 590.0, + 937.0, + 590.0, + 937.0, + 631.0, + 910.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 590.0, + 1237.0, + 590.0, + 1237.0, + 631.0, + 1226.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 330.0, + 373.0, + 330.0, + 373.0, + 365.0, + 292.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 330.0, + 1292.0, + 330.0, + 1292.0, + 365.0, + 397.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 330.0, + 1405.0, + 330.0, + 1405.0, + 365.0, + 1326.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 361.0, + 1404.0, + 361.0, + 1404.0, + 395.0, + 294.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 428.0, + 294.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 421.0, + 345.0, + 421.0, + 345.0, + 459.0, + 290.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 651.0, + 1408.0, + 651.0, + 1408.0, + 684.0, + 295.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 717.0, + 295.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 715.0, + 1171.0, + 715.0, + 1171.0, + 747.0, + 295.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 715.0, + 1403.0, + 715.0, + 1403.0, + 747.0, + 1192.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 740.0, + 429.0, + 740.0, + 429.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 740.0, + 1263.0, + 740.0, + 1263.0, + 780.0, + 545.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 782.0, + 800.0, + 782.0, + 800.0, + 816.0, + 297.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 782.0, + 1106.0, + 782.0, + 1106.0, + 816.0, + 867.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 782.0, + 1401.0, + 782.0, + 1401.0, + 816.0, + 1150.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 801.0, + 389.0, + 801.0, + 389.0, + 864.0, + 292.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 801.0, + 550.0, + 801.0, + 550.0, + 864.0, + 457.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 801.0, + 1409.0, + 801.0, + 1409.0, + 864.0, + 841.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 834.0, + 296.0, + 834.0, + 296.0, + 914.0, + 282.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 834.0, + 1135.0, + 834.0, + 1135.0, + 914.0, + 604.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 831.0, + 673.0, + 831.0, + 673.0, + 865.5, + 613.0, + 865.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.25, + 876.0, + 416.25, + 876.0, + 416.25, + 905.0, + 365.25, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 368.0, + 1534.0, + 368.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1534.0, + 610.0, + 1534.0, + 610.0, + 1571.0, + 407.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1534.0, + 1405.0, + 1534.0, + 1405.0, + 1571.0, + 720.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1566.0, + 297.0, + 1566.0, + 297.0, + 1612.0, + 294.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1566.0, + 566.0, + 1566.0, + 566.0, + 1612.0, + 356.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1566.0, + 675.0, + 1566.0, + 675.0, + 1612.0, + 644.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1566.0, + 1411.0, + 1566.0, + 1411.0, + 1612.0, + 790.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 922.0, + 699.0, + 922.0, + 699.0, + 964.0, + 295.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 922.0, + 1055.0, + 922.0, + 1055.0, + 964.0, + 715.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 922.0, + 1170.0, + 922.0, + 1170.0, + 964.0, + 1124.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 922.0, + 1406.0, + 922.0, + 1406.0, + 964.0, + 1324.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 643.0, + 959.0, + 643.0, + 1000.0, + 293.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 959.0, + 1062.0, + 959.0, + 1062.0, + 1000.0, + 796.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1787, + 1404, + 1787, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1491, + 1404, + 1491, + 1404, + 1681, + 298, + 1681 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1290, + 1406, + 1290, + 1406, + 1473, + 297, + 1473 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 301, + 1723, + 558, + 1723, + 558, + 1757, + 301, + 1757 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 304, + 1077, + 1179, + 1077, + 1179, + 1265, + 304, + 1265 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 298, + 1034, + 532, + 1034, + 532, + 1068, + 298, + 1068 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.794 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 865, + 229, + 865, + 262, + 301, + 262 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 297, + 273, + 1402, + 273, + 1402, + 1007, + 297, + 1007 + ], + "score": 0.466 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 865, + 229, + 865, + 262, + 301, + 262 + ], + "score": 0.149 + }, + { + "category_id": 13, + "poly": [ + 456, + 1332, + 632, + 1332, + 632, + 1372, + 456, + 1372 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } ( 2 / \\delta ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 904, + 803, + 1017, + 803, + 1017, + 840, + 904, + 840 + ], + "score": 0.93, + "latex": "\\epsilon ^ { 1 . 5 } / \\sqrt { L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 657, + 554, + 885, + 554, + 885, + 589, + 657, + 589 + ], + "score": 0.92, + "latex": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 924, + 1326, + 1144, + 1326, + 1144, + 1374, + 924, + 1374 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 507, + 1166, + 702, + 1166, + 702, + 1201, + 507, + 1201 + ], + "score": 0.92, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 640, + 306, + 838, + 306, + 838, + 340, + 640, + 340 + ], + "score": 0.92, + "latex": "T = \\Theta ( \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 1062, + 764, + 1149, + 764, + 1149, + 805, + 1062, + 805 + ], + "score": 0.92, + "latex": "\\textstyle { 1 - \\frac { \\zeta } { 4 K } }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 801, + 1292, + 801, + 1292, + 844, + 1205, + 844 + ], + "score": 0.91, + "latex": "\\textstyle 1 - { \\frac { \\zeta } { 4 K } }" + }, + { + "category_id": 13, + "poly": [ + 372, + 427, + 559, + 427, + 559, + 461, + 372, + 461 + ], + "score": 0.91, + "latex": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 474, + 1399, + 652, + 1399, + 652, + 1437, + 474, + 1437 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )" + }, + { + "category_id": 13, + "poly": [ + 941, + 1195, + 1167, + 1195, + 1167, + 1232, + 941, + 1232 + ], + "score": 0.91, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )" + }, + { + "category_id": 13, + "poly": [ + 1130, + 522, + 1221, + 522, + 1221, + 556, + 1130, + 556 + ], + "score": 0.9, + "latex": "1 - \\delta / 4" + }, + { + "category_id": 13, + "poly": [ + 412, + 554, + 608, + 554, + 608, + 589, + 412, + 589 + ], + "score": 0.9, + "latex": "\\| \\nabla F ( \\mathbf { x } ^ { t } ) \\| \\leq c _ { 1 } \\epsilon _ { . }" + }, + { + "category_id": 13, + "poly": [ + 796, + 488, + 1015, + 488, + 1015, + 522, + 796, + 522 + ], + "score": 0.9, + "latex": "\\mathbf { H } ^ { t } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { t } ; \\mathcal { H } )" + }, + { + "category_id": 13, + "poly": [ + 874, + 522, + 941, + 522, + 941, + 554, + 874, + 554 + ], + "score": 0.9, + "latex": "\\sqrt { \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 662, + 904, + 840, + 904, + 840, + 939, + 662, + 939 + ], + "score": 0.89, + "latex": "\\{ 0 , \\ldots , K - 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 345, + 1649, + 447, + 1649, + 447, + 1680, + 345, + 1680 + ], + "score": 0.89, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 813, + 1554, + 898, + 1554, + 898, + 1584, + 813, + 1584 + ], + "score": 0.89, + "latex": "{ \\bf S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 385, + 338, + 450, + 338, + 450, + 364, + 385, + 364 + ], + "score": 0.89, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 427, + 739, + 497, + 739, + 497, + 767, + 427, + 767 + ], + "score": 0.89, + "latex": "k = 0" + }, + { + "category_id": 13, + "poly": [ + 619, + 767, + 661, + 767, + 661, + 798, + 619, + 798 + ], + "score": 0.89, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1435, + 819, + 1435, + 819, + 1473, + 297, + 1473 + ], + "score": 0.89, + "latex": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1587, + 1322, + 1587, + 1322, + 1618, + 1219, + 1618 + ], + "score": 0.88, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 510, + 587, + 611, + 587, + 611, + 617, + 510, + 617 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { \\epsilon } : = \\mathbf { x } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1332, + 444, + 1332, + 444, + 1369, + 296, + 1369 + ], + "score": 0.88, + "latex": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 768, + 569, + 768, + 569, + 801, + 535, + 801 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1292, + 1166, + 1292, + 1166, + 1326, + 1063, + 1326 + ], + "score": 0.87, + "latex": "\\zeta = 1 / 3" + }, + { + "category_id": 13, + "poly": [ + 493, + 521, + 524, + 521, + 524, + 551, + 493, + 551 + ], + "score": 0.86, + "latex": "\\tilde { \\mathbf { v } } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1106, + 721, + 1106, + 721, + 1137, + 688, + 1137 + ], + "score": 0.86, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 535, + 802, + 570, + 802, + 570, + 835, + 535, + 835 + ], + "score": 0.86, + "latex": "\\tilde { \\mathbf { h } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 685, + 1137, + 727, + 1137, + 727, + 1165, + 685, + 1165 + ], + "score": 0.86, + "latex": "\\bar { \\mathbf { H } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 468, + 936, + 530, + 936, + 530, + 971, + 468, + 971 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { \\bar { k } + 1 }" + }, + { + "category_id": 13, + "poly": [ + 527, + 274, + 560, + 274, + 560, + 304, + 527, + 304 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 759, + 1335, + 866, + 1335, + 866, + 1367, + 759, + 1367 + ], + "score": 0.84, + "latex": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 619, + 706, + 815, + 706, + 815, + 739, + 619, + 739 + ], + "score": 0.83, + "latex": "\\mathbf { w } _ { \\mathrm { E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )" + }, + { + "category_id": 13, + "poly": [ + 531, + 740, + 606, + 740, + 606, + 767, + 531, + 767 + ], + "score": 0.83, + "latex": "K - 1" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1288, + 1324, + 1288, + 1324, + 1329, + 1179, + 1329 + ], + "score": 0.82, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1335, + 748, + 1335, + 748, + 1368, + 642, + 1368 + ], + "score": 0.82, + "latex": "c _ { 1 } = 6 0 0" + }, + { + "category_id": 13, + "poly": [ + 829, + 1199, + 856, + 1199, + 856, + 1227, + 829, + 1227 + ], + "score": 0.82, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1404, + 1114, + 1404, + 1114, + 1433, + 1051, + 1433 + ], + "score": 0.82, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1017, + 277, + 1045, + 277, + 1045, + 304, + 1017, + 304 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 684, + 491, + 711, + 491, + 711, + 518, + 684, + 518 + ], + "score": 0.8, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 578, + 903, + 597, + 903, + 597, + 933, + 578, + 933 + ], + "score": 0.79, + "latex": "\\bar { k }" + }, + { + "category_id": 13, + "poly": [ + 326, + 1584, + 878, + 1584, + 878, + 1621, + 326, + 1621 + ], + "score": 0.77, + "latex": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\}" + }, + { + "category_id": 13, + "poly": [ + 1338, + 1291, + 1404, + 1291, + 1404, + 1326, + 1338, + 1326 + ], + "score": 0.76, + "latex": "K =" + }, + { + "category_id": 13, + "poly": [ + 679, + 283, + 696, + 283, + 696, + 304, + 679, + 304 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 557, + 464, + 576, + 464, + 576, + 486, + 557, + 486 + ], + "score": 0.74, + "latex": "\\diamond" + }, + { + "category_id": 13, + "poly": [ + 483, + 337, + 507, + 337, + 507, + 364, + 483, + 364 + ], + "score": 0.72, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 987, + 313, + 1004, + 313, + 1004, + 334, + 987, + 334 + ], + "score": 0.7, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1619, + 1401, + 1619, + 1401, + 1649, + 1314, + 1649 + ], + "score": 0.7, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 555, + 402, + 575, + 402, + 575, + 424, + 555, + 424 + ], + "score": 0.7, + "latex": "\\diamond" + }, + { + "category_id": 13, + "poly": [ + 584, + 1206, + 601, + 1206, + 601, + 1226, + 584, + 1226 + ], + "score": 0.69, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 426, + 838, + 630, + 838, + 630, + 874, + 426, + 874 + ], + "score": 0.69, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\tilde { \\mathbf { h } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 440, + 496, + 457, + 496, + 457, + 517, + 440, + 517 + ], + "score": 0.67, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1173, + 275, + 1315, + 275, + 1315, + 309, + 1173, + 309 + ], + "score": 0.59, + "latex": "\\delta , \\zeta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 384, + 366, + 796, + 366, + 796, + 400, + 384, + 400 + ], + "score": 0.58, + "latex": "\\mathbf { x } ^ { t } \\gets \\mathrm { I N E X A C T T R } _ { \\mathrm { W E A K } } ( \\mathbf { x } ^ { 0 } , r , K , \\zeta )" + }, + { + "category_id": 13, + "poly": [ + 781, + 1403, + 838, + 1403, + 838, + 1437, + 781, + 1437 + ], + "score": 0.58, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 14, + "poly": [ + 426, + 839, + 630, + 839, + 630, + 875, + 426, + 875 + ], + "score": 0.54, + "latex": "\\mathbf { x } ^ { k + 1 } : = \\mathbf { x } ^ { k } + \\tilde { \\mathbf { h } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 905, + 463, + 920, + 463, + 920, + 485, + 905, + 485 + ], + "score": 0.53, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 868, + 405, + 883, + 405, + 883, + 425, + 868, + 425 + ], + "score": 0.39, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 439, + 1373, + 457, + 1373, + 457, + 1397, + 439, + 1397 + ], + "score": 0.3, + "latex": "^ { 4 }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1719.0, + 561.0, + 1719.0, + 561.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1024.0, + 540.0, + 1024.0, + 540.0, + 1079.0, + 292.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 869.0, + 226.0, + 869.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1787.0, + 1409.0, + 1787.0, + 1409.0, + 1825.0, + 292.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1884.0, + 295.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1406.0, + 1490.0, + 1406.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1513.0, + 1409.0, + 1513.0, + 1409.0, + 1560.0, + 291.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1548.0, + 812.0, + 1548.0, + 812.0, + 1589.0, + 293.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1589.0, + 899.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 325.0, + 1578.0, + 325.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1578.0, + 1218.0, + 1578.0, + 1218.0, + 1625.0, + 879.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1578.0, + 1406.0, + 1578.0, + 1406.0, + 1625.0, + 1323.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1612.0, + 1313.0, + 1612.0, + 1313.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1612.0, + 1405.0, + 1612.0, + 1405.0, + 1656.0, + 1402.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1647.0, + 344.0, + 1647.0, + 344.0, + 1682.0, + 293.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1647.0, + 1397.0, + 1647.0, + 1397.0, + 1682.0, + 448.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1287.0, + 1062.0, + 1287.0, + 1062.0, + 1328.0, + 291.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1287.0, + 1178.0, + 1287.0, + 1178.0, + 1328.0, + 1167.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1287.0, + 1337.0, + 1287.0, + 1337.0, + 1328.0, + 1325.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1330.0, + 295.0, + 1330.0, + 295.0, + 1373.0, + 292.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1330.0, + 455.0, + 1330.0, + 455.0, + 1373.0, + 445.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1330.0, + 641.0, + 1330.0, + 641.0, + 1373.0, + 633.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1330.0, + 758.0, + 1330.0, + 758.0, + 1373.0, + 749.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1330.0, + 923.0, + 1330.0, + 923.0, + 1373.0, + 867.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1370.0, + 438.0, + 1370.0, + 438.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1370.0, + 1403.0, + 1370.0, + 1403.0, + 1402.0, + 458.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1398.0, + 473.0, + 1398.0, + 473.0, + 1441.0, + 292.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1398.0, + 780.0, + 1398.0, + 780.0, + 1441.0, + 653.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1398.0, + 1050.0, + 1398.0, + 1050.0, + 1441.0, + 839.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1398.0, + 1407.0, + 1398.0, + 1407.0, + 1441.0, + 1115.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1429.0, + 834.0, + 1429.0, + 834.0, + 1476.0, + 820.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1318.5, + 1411.0, + 1318.5, + 1411.0, + 1384.0, + 964.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1075.0, + 796.0, + 1075.0, + 796.0, + 1109.0, + 310.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1108.0, + 338.0, + 1108.0, + 338.0, + 1139.0, + 309.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1104.0, + 687.0, + 1104.0, + 687.0, + 1143.0, + 368.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1104.0, + 905.0, + 1104.0, + 905.0, + 1143.0, + 722.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1139.0, + 338.0, + 1139.0, + 338.0, + 1170.0, + 308.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1130.0, + 684.0, + 1130.0, + 684.0, + 1174.0, + 368.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1130.0, + 767.0, + 1130.0, + 767.0, + 1174.0, + 728.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1169.0, + 338.0, + 1169.0, + 338.0, + 1200.0, + 309.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1163.0, + 506.0, + 1163.0, + 506.0, + 1204.0, + 397.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1163.0, + 716.0, + 1163.0, + 716.0, + 1204.0, + 703.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1199.0, + 338.0, + 1199.0, + 338.0, + 1230.0, + 308.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1193.0, + 583.0, + 1193.0, + 583.0, + 1234.0, + 396.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1193.0, + 828.0, + 1193.0, + 828.0, + 1234.0, + 602.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1193.0, + 940.0, + 1193.0, + 940.0, + 1234.0, + 857.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1193.0, + 1179.0, + 1193.0, + 1179.0, + 1234.0, + 1168.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1231.0, + 339.0, + 1231.0, + 339.0, + 1261.0, + 309.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1229.0, + 935.0, + 1229.0, + 935.0, + 1263.0, + 370.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 265.0, + 526.0, + 265.0, + 526.0, + 316.0, + 291.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 265.0, + 678.0, + 265.0, + 678.0, + 316.0, + 561.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 265.0, + 1016.0, + 265.0, + 1016.0, + 316.0, + 697.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 265.0, + 1172.0, + 265.0, + 1172.0, + 316.0, + 1046.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 265.0, + 1411.0, + 265.0, + 1411.0, + 316.0, + 1316.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 306.0, + 639.0, + 306.0, + 639.0, + 341.0, + 341.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 306.0, + 986.0, + 306.0, + 986.0, + 341.0, + 839.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 306.0, + 1123.0, + 306.0, + 1123.0, + 341.0, + 1005.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 335.0, + 384.0, + 335.0, + 384.0, + 369.0, + 307.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 335.0, + 482.0, + 335.0, + 482.0, + 369.0, + 451.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 335.0, + 548.0, + 335.0, + 548.0, + 369.0, + 508.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 366.0, + 339.0, + 366.0, + 339.0, + 399.0, + 307.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 362.0, + 383.0, + 362.0, + 383.0, + 404.0, + 378.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 362.0, + 807.0, + 362.0, + 807.0, + 404.0, + 797.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 398.0, + 339.0, + 398.0, + 339.0, + 430.0, + 307.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 397.0, + 494.0, + 397.0, + 494.0, + 429.0, + 381.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 394.0, + 554.0, + 394.0, + 554.0, + 433.0, + 550.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 394.0, + 867.0, + 394.0, + 867.0, + 433.0, + 576.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 394.0, + 896.0, + 394.0, + 896.0, + 433.0, + 884.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 429.0, + 339.0, + 429.0, + 339.0, + 460.0, + 307.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 419.0, + 371.0, + 419.0, + 371.0, + 465.0, + 367.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 419.0, + 574.0, + 419.0, + 574.0, + 465.0, + 560.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 459.0, + 339.0, + 459.0, + 339.0, + 491.0, + 306.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 456.0, + 506.0, + 456.0, + 506.0, + 492.0, + 379.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 458.0, + 556.0, + 458.0, + 556.0, + 492.0, + 550.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 458.0, + 904.0, + 458.0, + 904.0, + 492.0, + 577.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 458.0, + 934.0, + 458.0, + 934.0, + 492.0, + 921.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 490.0, + 339.0, + 490.0, + 339.0, + 523.0, + 307.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 484.0, + 439.0, + 484.0, + 439.0, + 525.0, + 369.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 484.0, + 683.0, + 484.0, + 683.0, + 525.0, + 458.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 484.0, + 795.0, + 484.0, + 795.0, + 525.0, + 712.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 484.0, + 1028.0, + 484.0, + 1028.0, + 525.0, + 1016.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 519.0, + 340.0, + 519.0, + 340.0, + 557.0, + 308.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 520.0, + 492.0, + 520.0, + 492.0, + 558.0, + 381.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 520.0, + 873.0, + 520.0, + 873.0, + 558.0, + 525.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 520.0, + 1129.0, + 520.0, + 1129.0, + 558.0, + 942.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 520.0, + 1235.0, + 520.0, + 1235.0, + 558.0, + 1222.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 556.0, + 339.0, + 556.0, + 339.0, + 588.0, + 307.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 552.0, + 411.0, + 552.0, + 411.0, + 590.0, + 381.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 552.0, + 656.0, + 552.0, + 656.0, + 590.0, + 609.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 552.0, + 947.0, + 552.0, + 947.0, + 590.0, + 886.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 587.0, + 339.0, + 587.0, + 339.0, + 618.0, + 306.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 584.0, + 509.0, + 584.0, + 509.0, + 619.0, + 423.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 584.0, + 624.0, + 584.0, + 624.0, + 619.0, + 612.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 616.0, + 340.0, + 616.0, + 340.0, + 649.0, + 296.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 613.0, + 464.0, + 613.0, + 464.0, + 647.0, + 378.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 645.0, + 438.0, + 645.0, + 438.0, + 681.0, + 295.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 702.0, + 618.0, + 702.0, + 618.0, + 743.0, + 300.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 737.0, + 341.0, + 737.0, + 341.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 738.0, + 426.0, + 738.0, + 426.0, + 769.0, + 384.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 738.0, + 530.0, + 738.0, + 530.0, + 769.0, + 498.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 738.0, + 649.0, + 738.0, + 649.0, + 769.0, + 607.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 766.0, + 341.0, + 766.0, + 341.0, + 803.0, + 297.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 764.0, + 534.0, + 764.0, + 534.0, + 804.0, + 424.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 764.0, + 618.0, + 764.0, + 618.0, + 804.0, + 570.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 764.0, + 1061.0, + 764.0, + 1061.0, + 804.0, + 662.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 806.0, + 340.0, + 806.0, + 340.0, + 840.0, + 296.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 784.0, + 534.0, + 784.0, + 534.0, + 854.0, + 419.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 784.0, + 903.0, + 784.0, + 903.0, + 854.0, + 571.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 784.0, + 1204.0, + 784.0, + 1204.0, + 854.0, + 1018.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 784.0, + 1309.0, + 784.0, + 1309.0, + 854.0, + 1293.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 844.0, + 339.0, + 844.0, + 339.0, + 877.0, + 296.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 836.0, + 643.0, + 836.0, + 643.0, + 878.0, + 631.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 875.0, + 340.0, + 875.0, + 340.0, + 908.0, + 296.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 875.0, + 478.0, + 875.0, + 478.0, + 907.0, + 384.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 906.0, + 340.0, + 906.0, + 340.0, + 939.0, + 296.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 901.0, + 577.0, + 901.0, + 577.0, + 942.0, + 380.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 901.0, + 661.0, + 901.0, + 661.0, + 942.0, + 598.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 901.0, + 853.0, + 901.0, + 853.0, + 942.0, + 841.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 942.0, + 340.0, + 942.0, + 340.0, + 975.0, + 296.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 523.0, + 971.0, + 523.0, + 1007.0, + 295.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 936.5, + 544.0, + 936.5, + 544.0, + 972.5, + 379.0, + 972.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 869.0, + 226.0, + 869.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1484, + 1406, + 1484, + 1406, + 1785, + 297, + 1785 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1256, + 1406, + 1256, + 1406, + 1471, + 297, + 1471 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1799, + 1404, + 1799, + 1404, + 2015, + 297, + 2015 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 358, + 267, + 1342, + 267, + 1342, + 565, + 358, + 565 + ], + "score": 0.975, + "html": "
AlgorithmRuntime
Hessian-free Cubic (Carmon & Duchi, 2016)Fast-Cubic (Agarwal et al., 2017)Stochastic Cubic (Tripuraneni et al., 2018)SRVRCfree (Zhou & Gu, 2019)()0dn dn0.75+151.756d *35O(min{ d})*
STRfree (this paper)STRfree+ (this paper)O(min{dn d dn0.5e1.75,2.752O(min{ dn0.75dn d dn0.51.5+e1.75,2.5+20)
" + }, + { + "category_id": 3, + "poly": [ + 305, + 625, + 1398, + 625, + 1398, + 1193, + 305, + 1193 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 421, + 1201, + 1277, + 1201, + 1277, + 1234, + 421, + 1234 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 6, + "poly": [ + 359, + 224, + 1335, + 224, + 1335, + 258, + 359, + 258 + ], + "score": 0.896 + }, + { + "category_id": 7, + "poly": [ + 330, + 570, + 1202, + 570, + 1202, + 604, + 330, + 604 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.796 + }, + { + "category_id": 13, + "poly": [ + 1276, + 1638, + 1375, + 1638, + 1375, + 1672, + 1276, + 1672 + ], + "score": 0.93, + "latex": "R ( { \\boldsymbol { w } } ; \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 602, + 1577, + 771, + 1577, + 771, + 1611, + 602, + 1611 + ], + "score": 0.93, + "latex": "y _ { i } ~ \\in ~ \\{ - 1 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1547, + 1209, + 1547, + 1209, + 1580, + 1124, + 1580 + ], + "score": 0.93, + "latex": "( { \\pmb x } _ { i } , y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1545, + 1401, + 1545, + 1401, + 1577, + 1294, + 1577 + ], + "score": 0.91, + "latex": "\\pmb { x } _ { i } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 871, + 572, + 1155, + 572, + 1155, + 604, + 871, + 604 + ], + "score": 0.9, + "latex": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ) - \\nabla F ( { \\mathbf { x } } ) \\| \\leq \\sigma" + }, + { + "category_id": 13, + "poly": [ + 543, + 1753, + 655, + 1753, + 655, + 1781, + 543, + 1781 + ], + "score": 0.9, + "latex": "\\lambda = 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 412, + 1673, + 810, + 1673, + 810, + 1713, + 412, + 1713 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { R ( \\pmb { w } ; \\alpha ) = \\sum _ { i = 1 } ^ { d } \\alpha \\pmb { w } _ { i } ^ { 2 } / ( 1 + \\alpha \\pmb { w } _ { i } ^ { 2 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1636, + 896, + 1636, + 896, + 1673, + 297, + 1673 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\log ( 1 + \\mathrm { { e x p } } ( - y _ { i } \\pmb { w } ^ { T } \\pmb { x } _ { i } ) ) + \\lambda R ( \\pmb { w } ; \\alpha ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 520, + 1349, + 552, + 1349, + 552, + 1379, + 520, + 1379 + ], + "score": 0.88, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 513, + 1711, + 1037, + 1711, + 1037, + 1754, + 513, + 1754 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\pmb { w } } \\frac { 1 } { 2 n } \\sum _ { i = 1 } ^ { n } \\left[ y _ { i } - \\phi ( \\pmb { w } ^ { T } \\pmb { x } _ { i } ) \\right] ^ { 2 } + \\lambda R ( \\pmb { w } , \\alpha ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 837, + 225, + 938, + 225, + 938, + 256, + 837, + 256 + ], + "score": 0.87, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 707, + 1755, + 792, + 1755, + 792, + 1781, + 707, + 1781 + ], + "score": 0.86, + "latex": "\\alpha = 1 0" + }, + { + "category_id": 13, + "poly": [ + 741, + 225, + 825, + 225, + 825, + 256, + 741, + 256 + ], + "score": 0.85, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 952, + 483, + 1279, + 483, + 1279, + 520, + 952, + 520 + ], + "score": 0.8, + "latex": "\\begin{array} { r l r } { { \\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\frac { d n } { \\epsilon ^ { 1 . 7 5 } } , \\frac { d } { \\epsilon ^ { 2 . 7 5 } } + \\frac { d n ^ { 0 . 5 } } { \\epsilon ^ { 2 } } \\} ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 911, + 520, + 1316, + 520, + 1316, + 560, + 911, + 560 + ], + "score": 0.72, + "latex": "\\begin{array} { r } { \\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\frac { d n } { \\epsilon ^ { 1 . 5 } } + \\frac { d n ^ { 0 . 7 5 } } { \\epsilon ^ { 1 . 7 5 } } , \\frac { d } { \\epsilon ^ { 2 . 5 } } + \\frac { d n ^ { 0 . 5 } } { \\epsilon ^ { 2 } } \\} ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 962, + 1552, + 983, + 1552, + 983, + 1575, + 962, + 1575 + ], + "score": 0.64, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1077, + 324, + 1155, + 324, + 1155, + 361, + 1077, + 361 + ], + "score": 0.61, + "latex": "\\tilde { \\mathcal { O } } ( \\frac { d n } { \\epsilon ^ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1018, + 434, + 1225, + 434, + 1225, + 471, + 1018, + 471 + ], + "score": 0.42, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ \\frac { d n } { \\epsilon ^ { 2 } } , \\frac { d } { \\epsilon ^ { 3 } } \\} ) ~ ^ { * }" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 624.0, + 334.0, + 624.0, + 334.0, + 833.0, + 302.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 635.0, + 517.0, + 635.0, + 517.0, + 659.0, + 470.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 625.0, + 611.0, + 625.0, + 611.0, + 836.0, + 572.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 636.0, + 629.0, + 636.0, + 629.0, + 646.0, + 620.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 636.0, + 791.0, + 636.0, + 791.0, + 662.0, + 738.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 626.0, + 881.0, + 626.0, + 881.0, + 834.0, + 849.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 629.0, + 906.0, + 629.0, + 906.0, + 654.0, + 886.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 635.0, + 1065.0, + 635.0, + 1065.0, + 659.0, + 1017.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 626.0, + 1158.0, + 626.0, + 1158.0, + 836.0, + 1118.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 633.0, + 1172.0, + 633.0, + 1172.0, + 643.0, + 1162.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 638.0, + 1337.0, + 638.0, + 1337.0, + 661.0, + 1291.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 650.0, + 531.0, + 650.0, + 531.0, + 697.0, + 459.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 664.0, + 649.0, + 664.0, + 649.0, + 694.0, + 630.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 654.0, + 801.0, + 654.0, + 801.0, + 697.0, + 738.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 672.0, + 938.0, + 672.0, + 938.0, + 684.0, + 929.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 650.0, + 1079.0, + 650.0, + 1079.0, + 694.0, + 1006.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 659.0, + 1201.0, + 659.0, + 1201.0, + 677.0, + 1186.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 655.0, + 1349.0, + 655.0, + 1349.0, + 695.0, + 1286.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 706.0, + 352.0, + 706.0, + 352.0, + 715.0, + 342.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 689.0, + 571.0, + 689.0, + 571.0, + 730.0, + 466.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 692.0, + 842.0, + 692.0, + 842.0, + 732.0, + 740.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 697.0, + 900.0, + 697.0, + 900.0, + 706.0, + 889.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 682.0, + 920.0, + 682.0, + 920.0, + 701.0, + 905.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 697.0, + 934.0, + 697.0, + 934.0, + 705.0, + 924.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 714.0, + 955.0, + 714.0, + 955.0, + 728.0, + 937.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 689.0, + 1119.0, + 689.0, + 1119.0, + 731.0, + 1013.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 698.0, + 1243.0, + 698.0, + 1243.0, + 715.0, + 1229.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 690.0, + 1391.0, + 690.0, + 1391.0, + 732.0, + 1290.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 725.0, + 547.0, + 725.0, + 547.0, + 747.0, + 484.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 722.0, + 704.0, + 722.0, + 704.0, + 738.0, + 690.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 733.0, + 712.0, + 733.0, + 712.0, + 740.0, + 706.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 726.0, + 820.0, + 726.0, + 820.0, + 751.0, + 741.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 725.0, + 951.0, + 725.0, + 951.0, + 738.0, + 942.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 727.0, + 1095.0, + 727.0, + 1095.0, + 748.0, + 1017.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 726.0, + 1368.0, + 726.0, + 1368.0, + 751.0, + 1289.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 737.0, + 625.0, + 737.0, + 625.0, + 748.0, + 615.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 744.0, + 526.0, + 744.0, + 526.0, + 767.0, + 487.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 743.0, + 695.0, + 743.0, + 695.0, + 753.0, + 681.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 746.0, + 798.0, + 746.0, + 798.0, + 768.0, + 758.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 749.0, + 1003.0, + 749.0, + 1003.0, + 759.0, + 993.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 744.0, + 1074.0, + 744.0, + 1074.0, + 765.0, + 1034.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 751.0, + 1304.0, + 751.0, + 1304.0, + 760.0, + 1293.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 743.0, + 1346.0, + 743.0, + 1346.0, + 769.0, + 1305.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 760.0, + 352.0, + 760.0, + 352.0, + 776.0, + 335.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 762.0, + 628.0, + 762.0, + 628.0, + 780.0, + 605.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 758.0, + 902.0, + 758.0, + 902.0, + 776.0, + 879.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 762.0, + 1173.0, + 762.0, + 1173.0, + 776.0, + 1153.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 769.0, + 798.0, + 769.0, + 798.0, + 779.0, + 787.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 768.0, + 1025.0, + 768.0, + 1025.0, + 788.0, + 1011.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 778.0, + 958.0, + 778.0, + 958.0, + 790.0, + 948.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 791.0, + 628.0, + 791.0, + 628.0, + 810.0, + 607.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 787.0, + 1028.0, + 787.0, + 1028.0, + 798.0, + 1018.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 823.0, + 357.0, + 823.0, + 357.0, + 850.0, + 337.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 835.0, + 417.0, + 835.0, + 417.0, + 854.0, + 390.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 838.0, + 461.0, + 838.0, + 461.0, + 849.0, + 451.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 834.0, + 523.0, + 834.0, + 523.0, + 854.0, + 497.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 837.0, + 571.0, + 837.0, + 571.0, + 851.0, + 556.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 822.0, + 632.0, + 822.0, + 632.0, + 853.0, + 608.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 837.0, + 684.0, + 837.0, + 684.0, + 853.0, + 669.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 835.0, + 741.0, + 835.0, + 741.0, + 854.0, + 717.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 835.0, + 793.0, + 835.0, + 793.0, + 854.0, + 771.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 837.0, + 844.0, + 837.0, + 844.0, + 851.0, + 824.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 834.0, + 965.0, + 834.0, + 965.0, + 853.0, + 938.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 838.0, + 1008.0, + 838.0, + 1008.0, + 849.0, + 998.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 834.0, + 1070.0, + 834.0, + 1070.0, + 854.0, + 1045.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 837.0, + 1119.0, + 837.0, + 1119.0, + 853.0, + 1103.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 824.0, + 1182.0, + 824.0, + 1182.0, + 855.0, + 1150.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 837.0, + 1232.0, + 837.0, + 1232.0, + 854.0, + 1216.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 835.0, + 1289.0, + 835.0, + 1289.0, + 854.0, + 1264.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 835.0, + 1341.0, + 835.0, + 1341.0, + 854.0, + 1319.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 835.0, + 1393.0, + 835.0, + 1393.0, + 854.0, + 1370.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 846.0, + 516.0, + 846.0, + 516.0, + 870.0, + 408.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 844.0, + 767.0, + 844.0, + 767.0, + 871.0, + 699.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 846.0, + 1063.0, + 846.0, + 1063.0, + 870.0, + 955.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 845.0, + 1314.0, + 845.0, + 1314.0, + 870.0, + 1247.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 875.0, + 619.0, + 875.0, + 619.0, + 907.0, + 529.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 876.0, + 1176.0, + 876.0, + 1176.0, + 909.0, + 1078.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 911.0, + 335.0, + 911.0, + 335.0, + 1121.0, + 299.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 923.0, + 517.0, + 923.0, + 517.0, + 945.0, + 487.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 914.0, + 610.0, + 914.0, + 610.0, + 1122.0, + 574.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 926.0, + 789.0, + 926.0, + 789.0, + 948.0, + 755.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 914.0, + 882.0, + 914.0, + 882.0, + 1122.0, + 850.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 924.0, + 1065.0, + 924.0, + 1065.0, + 946.0, + 1035.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 914.0, + 1157.0, + 914.0, + 1157.0, + 1122.0, + 1121.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 923.0, + 1338.0, + 923.0, + 1338.0, + 949.0, + 1296.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 940.0, + 531.0, + 940.0, + 531.0, + 981.0, + 469.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 956.0, + 673.0, + 956.0, + 673.0, + 965.0, + 660.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 963.0, + 694.0, + 963.0, + 694.0, + 972.0, + 682.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 959.0, + 716.0, + 959.0, + 716.0, + 983.0, + 700.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 942.0, + 801.0, + 942.0, + 801.0, + 984.0, + 748.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 965.0, + 895.0, + 965.0, + 895.0, + 981.0, + 880.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 959.0, + 924.0, + 959.0, + 924.0, + 977.0, + 907.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 940.0, + 1078.0, + 940.0, + 1078.0, + 981.0, + 1013.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 942.0, + 1350.0, + 942.0, + 1350.0, + 984.0, + 1281.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 991.0, + 352.0, + 991.0, + 352.0, + 1000.0, + 342.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 977.0, + 538.0, + 977.0, + 538.0, + 1001.0, + 484.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 979.0, + 810.0, + 979.0, + 810.0, + 1004.0, + 740.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 977.0, + 1086.0, + 977.0, + 1086.0, + 1001.0, + 1013.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 984.0, + 1167.0, + 984.0, + 1167.0, + 1000.0, + 1153.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 978.0, + 1359.0, + 978.0, + 1359.0, + 1002.0, + 1285.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 995.0, + 572.0, + 995.0, + 572.0, + 1018.0, + 486.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 996.0, + 842.0, + 996.0, + 842.0, + 1020.0, + 758.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1006.0, + 893.0, + 1006.0, + 893.0, + 1018.0, + 883.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 995.0, + 1119.0, + 995.0, + 1119.0, + 1018.0, + 1033.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1004.0, + 1235.0, + 1004.0, + 1235.0, + 1015.0, + 1227.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 996.0, + 1391.0, + 996.0, + 1391.0, + 1020.0, + 1306.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1018.0, + 352.0, + 1018.0, + 352.0, + 1029.0, + 342.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1013.0, + 548.0, + 1013.0, + 548.0, + 1037.0, + 466.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1016.0, + 818.0, + 1016.0, + 818.0, + 1037.0, + 742.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1015.0, + 1095.0, + 1015.0, + 1095.0, + 1035.0, + 1035.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1016.0, + 1258.0, + 1016.0, + 1258.0, + 1026.0, + 1247.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1021.0, + 1304.0, + 1021.0, + 1304.0, + 1031.0, + 1291.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1016.0, + 1367.0, + 1016.0, + 1367.0, + 1037.0, + 1306.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1032.0, + 526.0, + 1032.0, + 526.0, + 1054.0, + 487.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1034.0, + 797.0, + 1034.0, + 797.0, + 1055.0, + 758.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1030.0, + 1075.0, + 1030.0, + 1075.0, + 1057.0, + 1036.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1037.0, + 1277.0, + 1037.0, + 1277.0, + 1043.0, + 1270.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1034.0, + 1346.0, + 1034.0, + 1346.0, + 1055.0, + 1308.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1044.0, + 352.0, + 1044.0, + 352.0, + 1060.0, + 335.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1044.0, + 627.0, + 1044.0, + 627.0, + 1062.0, + 605.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1052.0, + 693.0, + 1052.0, + 693.0, + 1107.0, + 668.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1064.0, + 1007.0, + 1064.0, + 1007.0, + 1074.0, + 997.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1075.0, + 349.0, + 1075.0, + 349.0, + 1086.0, + 337.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1072.0, + 624.0, + 1072.0, + 624.0, + 1090.0, + 608.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1080.0, + 894.0, + 1080.0, + 894.0, + 1091.0, + 883.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1104.0, + 351.0, + 1104.0, + 351.0, + 1113.0, + 337.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1097.0, + 628.0, + 1097.0, + 628.0, + 1117.0, + 607.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1125.0, + 357.0, + 1125.0, + 357.0, + 1137.0, + 346.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1123.0, + 523.0, + 1123.0, + 523.0, + 1159.0, + 390.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1124.0, + 572.0, + 1124.0, + 572.0, + 1140.0, + 554.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1125.0, + 632.0, + 1125.0, + 632.0, + 1141.0, + 617.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1125.0, + 684.0, + 1125.0, + 684.0, + 1141.0, + 669.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1124.0, + 767.0, + 1124.0, + 767.0, + 1158.0, + 700.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1124.0, + 793.0, + 1124.0, + 793.0, + 1142.0, + 769.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1123.0, + 847.0, + 1123.0, + 847.0, + 1142.0, + 822.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1124.0, + 899.0, + 1124.0, + 899.0, + 1139.0, + 884.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1123.0, + 1059.0, + 1123.0, + 1059.0, + 1158.0, + 931.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1123.0, + 1109.0, + 1123.0, + 1109.0, + 1141.0, + 1081.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1125.0, + 1173.0, + 1125.0, + 1173.0, + 1141.0, + 1158.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1125.0, + 1216.0, + 1125.0, + 1216.0, + 1141.0, + 1201.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1125.0, + 1311.0, + 1125.0, + 1311.0, + 1157.0, + 1244.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1125.0, + 1345.0, + 1125.0, + 1345.0, + 1141.0, + 1330.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1124.0, + 1393.0, + 1124.0, + 1393.0, + 1142.0, + 1371.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1162.0, + 638.0, + 1162.0, + 638.0, + 1198.0, + 516.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1158.0, + 1199.0, + 1158.0, + 1199.0, + 1202.0, + 1056.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 712.0, + 397.0, + 712.0, + 397.0, + 733.0, + 386.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 692.0, + 1220.0, + 692.0, + 1220.0, + 706.0, + 1205.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 684.5, + 1243.0, + 684.5, + 1243.0, + 697.5, + 1228.0, + 697.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.25, + 710.5, + 1279.25, + 710.5, + 1279.25, + 760.5, + 1231.25, + 760.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.25, + 825.5, + 901.25, + 825.5, + 901.25, + 847.5, + 885.25, + 847.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 962.0, + 1279.0, + 962.0, + 1279.0, + 984.0, + 1249.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.75, + 972.0, + 731.75, + 972.0, + 731.75, + 985.0, + 713.75, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.75, + 977.0, + 928.75, + 977.0, + 928.75, + 993.0, + 904.75, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1034.0, + 991.0, + 1034.0, + 991.0, + 1060.5, + 953.0, + 1060.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1198.0, + 1281.0, + 1198.0, + 1281.0, + 1240.0, + 418.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 222.0, + 740.0, + 222.0, + 740.0, + 261.0, + 359.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 222.0, + 836.0, + 222.0, + 836.0, + 261.0, + 826.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 222.0, + 1338.0, + 222.0, + 1338.0, + 261.0, + 939.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 566.0, + 870.0, + 566.0, + 870.0, + 608.0, + 334.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 566.0, + 1205.0, + 566.0, + 1205.0, + 608.0, + 1156.0, + 608.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": [ + 294.0, + 1482.0, + 1407.0, + 1482.0, + 1407.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1515.0, + 1409.0, + 1515.0, + 1409.0, + 1551.0, + 295.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1543.0, + 961.0, + 1543.0, + 961.0, + 1582.0, + 291.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1543.0, + 1123.0, + 1543.0, + 1123.0, + 1582.0, + 984.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1543.0, + 1293.0, + 1543.0, + 1293.0, + 1582.0, + 1210.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1543.0, + 1408.0, + 1543.0, + 1408.0, + 1582.0, + 1402.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1576.0, + 601.0, + 1576.0, + 601.0, + 1613.0, + 292.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1576.0, + 1406.0, + 1576.0, + 1406.0, + 1613.0, + 772.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1607.0, + 1404.0, + 1607.0, + 1404.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1623.0, + 296.0, + 1623.0, + 296.0, + 1690.0, + 284.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1623.0, + 1275.0, + 1623.0, + 1275.0, + 1690.0, + 897.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1623.0, + 1416.0, + 1623.0, + 1416.0, + 1690.0, + 1376.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1656.0, + 411.0, + 1656.0, + 411.0, + 1727.0, + 284.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1656.0, + 1417.0, + 1656.0, + 1417.0, + 1727.0, + 811.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1700.0, + 512.0, + 1700.0, + 512.0, + 1765.0, + 279.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1700.0, + 1421.0, + 1700.0, + 1421.0, + 1765.0, + 1038.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1747.0, + 542.0, + 1747.0, + 542.0, + 1790.0, + 291.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1747.0, + 706.0, + 1747.0, + 706.0, + 1790.0, + 656.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1747.0, + 1054.0, + 1747.0, + 1054.0, + 1790.0, + 793.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1634.0, + 443.0, + 1634.0, + 443.0, + 1656.5, + 403.0, + 1656.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1284.0, + 1408.0, + 1284.0, + 1408.0, + 1323.0, + 292.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1407.0, + 1316.0, + 1407.0, + 1354.0, + 295.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1348.0, + 519.0, + 1348.0, + 519.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1348.0, + 1404.0, + 1348.0, + 1404.0, + 1382.0, + 553.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1404.0, + 1376.0, + 1404.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1406.0, + 1409.0, + 1406.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1159.0, + 1439.0, + 1159.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1830.0, + 1404.0, + 1830.0, + 1404.0, + 1865.0, + 294.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1859.0, + 1407.0, + 1859.0, + 1407.0, + 1896.0, + 292.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1406.0, + 1892.0, + 1406.0, + 1927.0, + 295.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 1406.0, + 1922.0, + 1406.0, + 1956.0, + 295.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1953.0, + 1404.0, + 1953.0, + 1404.0, + 1987.0, + 295.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1980.0, + 1405.0, + 1980.0, + 1405.0, + 2019.0, + 292.0, + 2019.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 304, + 233, + 1399, + 233, + 1399, + 794, + 304, + 794 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1093, + 1406, + 1093, + 1406, + 1308, + 297, + 1308 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1324, + 826, + 1324, + 826, + 1689, + 299, + 1689 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1406, + 1911, + 1406, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 860, + 1405, + 860, + 1405, + 1079, + 297, + 1079 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 300, + 1690, + 1403, + 1690, + 1403, + 1781, + 300, + 1781 + ], + "score": 0.956 + }, + { + "category_id": 3, + "poly": [ + 856, + 1329, + 1408, + 1329, + 1408, + 1602, + 856, + 1602 + ], + "score": 0.942 + }, + { + "category_id": 4, + "poly": [ + 505, + 805, + 1188, + 805, + 1188, + 838, + 505, + 838 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 300, + 1840, + 543, + 1840, + 543, + 1875, + 300, + 1875 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.796 + }, + { + "category_id": 4, + "poly": [ + 845, + 1615, + 1402, + 1615, + 1402, + 1678, + 845, + 1678 + ], + "score": 0.605 + }, + { + "category_id": 4, + "poly": [ + 845, + 1615, + 1402, + 1615, + 1402, + 1678, + 845, + 1678 + ], + "score": 0.602 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.354 + }, + { + "category_id": 3, + "poly": [ + 855, + 1329, + 1408, + 1329, + 1408, + 1602, + 855, + 1602 + ], + "score": 0.234 + }, + { + "category_id": 13, + "poly": [ + 1029, + 890, + 1176, + 890, + 1176, + 928, + 1029, + 928 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { 0 . 5 } / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1045, + 1359, + 1045, + 1359, + 1080, + 1239, + 1080 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( d ^ { 2 } + \\dot { d } )" + }, + { + "category_id": 13, + "poly": [ + 540, + 1507, + 643, + 1507, + 643, + 1537, + 540, + 1537 + ], + "score": 0.88, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 640, + 1720, + 726, + 1720, + 726, + 1751, + 640, + 1751 + ], + "score": 0.87, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 475, + 1385, + 561, + 1385, + 561, + 1416, + 475, + 1416 + ], + "score": 0.85, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 737, + 1658, + 824, + 1658, + 824, + 1690, + 737, + 1690 + ], + "score": 0.82, + "latex": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 1222, + 868, + 1236, + 868, + 1236, + 888, + 1222, + 888 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 233.0, + 335.0, + 233.0, + 335.0, + 439.0, + 304.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 249.0, + 484.0, + 249.0, + 484.0, + 257.0, + 471.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 243.0, + 518.0, + 243.0, + 518.0, + 266.0, + 487.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 234.0, + 610.0, + 234.0, + 610.0, + 441.0, + 574.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 243.0, + 627.0, + 243.0, + 627.0, + 258.0, + 613.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 245.0, + 789.0, + 245.0, + 789.0, + 267.0, + 744.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 234.0, + 884.0, + 234.0, + 884.0, + 440.0, + 848.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 249.0, + 1031.0, + 249.0, + 1031.0, + 260.0, + 1018.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 245.0, + 1063.0, + 245.0, + 1063.0, + 267.0, + 1032.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 232.0, + 1157.0, + 232.0, + 1157.0, + 440.0, + 1121.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 247.0, + 1306.0, + 247.0, + 1306.0, + 257.0, + 1292.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 243.0, + 1339.0, + 243.0, + 1339.0, + 264.0, + 1308.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 266.0, + 351.0, + 266.0, + 351.0, + 279.0, + 341.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 257.0, + 532.0, + 257.0, + 532.0, + 285.0, + 464.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 269.0, + 625.0, + 269.0, + 625.0, + 281.0, + 614.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 262.0, + 802.0, + 262.0, + 802.0, + 286.0, + 738.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 261.0, + 899.0, + 261.0, + 899.0, + 273.0, + 889.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 262.0, + 1076.0, + 262.0, + 1076.0, + 287.0, + 1031.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 257.0, + 1353.0, + 257.0, + 1353.0, + 285.0, + 1286.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 277.0, + 529.0, + 277.0, + 529.0, + 302.0, + 486.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 287.0, + 693.0, + 287.0, + 693.0, + 297.0, + 680.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 281.0, + 799.0, + 281.0, + 799.0, + 303.0, + 757.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 284.0, + 1031.0, + 284.0, + 1031.0, + 294.0, + 1018.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 281.0, + 1073.0, + 281.0, + 1073.0, + 303.0, + 1033.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 277.0, + 1352.0, + 277.0, + 1352.0, + 302.0, + 1306.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 291.0, + 899.0, + 291.0, + 899.0, + 302.0, + 889.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 292.0, + 1170.0, + 292.0, + 1170.0, + 298.0, + 1164.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 296.0, + 539.0, + 296.0, + 539.0, + 320.0, + 472.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 298.0, + 810.0, + 298.0, + 810.0, + 323.0, + 739.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 298.0, + 1084.0, + 298.0, + 1084.0, + 323.0, + 1016.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 296.0, + 1362.0, + 296.0, + 1362.0, + 320.0, + 1287.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 323.0, + 407.0, + 323.0, + 407.0, + 353.0, + 384.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 331.0, + 420.0, + 331.0, + 420.0, + 342.0, + 408.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 339.0, + 486.0, + 339.0, + 486.0, + 348.0, + 472.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 310.0, + 572.0, + 310.0, + 572.0, + 354.0, + 487.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 315.0, + 842.0, + 315.0, + 842.0, + 356.0, + 742.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 315.0, + 1115.0, + 315.0, + 1115.0, + 356.0, + 1017.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 313.0, + 1393.0, + 313.0, + 1393.0, + 357.0, + 1291.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 352.0, + 527.0, + 352.0, + 527.0, + 374.0, + 489.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 364.0, + 625.0, + 364.0, + 625.0, + 374.0, + 615.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 352.0, + 799.0, + 352.0, + 799.0, + 377.0, + 758.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 353.0, + 1072.0, + 353.0, + 1072.0, + 375.0, + 1033.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 349.0, + 1349.0, + 349.0, + 1349.0, + 375.0, + 1308.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 385.0, + 350.0, + 385.0, + 350.0, + 394.0, + 336.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 380.0, + 456.0, + 380.0, + 456.0, + 390.0, + 446.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 382.0, + 626.0, + 382.0, + 626.0, + 402.0, + 605.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 398.0, + 625.0, + 398.0, + 625.0, + 425.0, + 606.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 404.0, + 712.0, + 404.0, + 712.0, + 414.0, + 701.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 403.0, + 900.0, + 403.0, + 900.0, + 421.0, + 886.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 409.0, + 350.0, + 409.0, + 350.0, + 419.0, + 336.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 411.0, + 1356.0, + 411.0, + 1356.0, + 426.0, + 1341.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 420.0, + 472.0, + 420.0, + 472.0, + 428.0, + 462.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 419.0, + 1059.0, + 419.0, + 1059.0, + 431.0, + 1048.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 432.0, + 350.0, + 432.0, + 350.0, + 442.0, + 335.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 425.0, + 627.0, + 425.0, + 627.0, + 445.0, + 605.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 427.0, + 1074.0, + 427.0, + 1074.0, + 438.0, + 1063.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 428.0, + 1112.0, + 428.0, + 1112.0, + 445.0, + 1079.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 438.0, + 894.0, + 438.0, + 894.0, + 447.0, + 884.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 445.0, + 356.0, + 445.0, + 356.0, + 458.0, + 346.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 442.0, + 523.0, + 442.0, + 523.0, + 477.0, + 391.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 444.0, + 571.0, + 444.0, + 571.0, + 459.0, + 555.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 445.0, + 629.0, + 445.0, + 629.0, + 458.0, + 619.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 444.0, + 683.0, + 444.0, + 683.0, + 459.0, + 669.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 444.0, + 767.0, + 444.0, + 767.0, + 477.0, + 700.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 444.0, + 792.0, + 444.0, + 792.0, + 459.0, + 773.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 444.0, + 844.0, + 444.0, + 844.0, + 459.0, + 824.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 447.0, + 903.0, + 447.0, + 903.0, + 456.0, + 894.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 447.0, + 946.0, + 447.0, + 946.0, + 458.0, + 934.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 444.0, + 1073.0, + 444.0, + 1073.0, + 477.0, + 953.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 444.0, + 1119.0, + 444.0, + 1119.0, + 459.0, + 1098.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 449.0, + 1175.0, + 449.0, + 1175.0, + 455.0, + 1169.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 445.0, + 1320.0, + 445.0, + 1320.0, + 477.0, + 1237.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 444.0, + 1393.0, + 444.0, + 1393.0, + 460.0, + 1378.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 483.0, + 619.0, + 483.0, + 619.0, + 513.0, + 531.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 482.0, + 1174.0, + 482.0, + 1174.0, + 515.0, + 1081.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 523.0, + 335.0, + 523.0, + 335.0, + 726.0, + 303.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 532.0, + 350.0, + 532.0, + 350.0, + 546.0, + 340.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 531.0, + 514.0, + 531.0, + 514.0, + 556.0, + 466.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 521.0, + 610.0, + 521.0, + 610.0, + 727.0, + 574.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 529.0, + 789.0, + 529.0, + 789.0, + 551.0, + 758.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 529.0, + 1059.0, + 529.0, + 1059.0, + 551.0, + 1028.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 528.0, + 1336.0, + 528.0, + 1336.0, + 550.0, + 1305.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 545.0, + 361.0, + 545.0, + 361.0, + 572.0, + 339.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 550.0, + 524.0, + 550.0, + 524.0, + 571.0, + 459.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 555.0, + 625.0, + 555.0, + 625.0, + 565.0, + 614.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 546.0, + 800.0, + 546.0, + 800.0, + 571.0, + 736.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 544.0, + 894.0, + 544.0, + 894.0, + 556.0, + 883.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 546.0, + 1071.0, + 546.0, + 1071.0, + 568.0, + 1012.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 544.0, + 1168.0, + 544.0, + 1168.0, + 555.0, + 1158.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 544.0, + 1348.0, + 544.0, + 1348.0, + 568.0, + 1285.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 574.0, + 351.0, + 574.0, + 351.0, + 590.0, + 341.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 573.0, + 376.0, + 573.0, + 376.0, + 592.0, + 362.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 567.0, + 534.0, + 567.0, + 534.0, + 608.0, + 462.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 585.0, + 692.0, + 585.0, + 692.0, + 591.0, + 686.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 567.0, + 810.0, + 567.0, + 810.0, + 607.0, + 739.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 577.0, + 879.0, + 577.0, + 879.0, + 674.0, + 847.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 565.0, + 1081.0, + 565.0, + 1081.0, + 606.0, + 1008.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 579.0, + 1151.0, + 579.0, + 1151.0, + 674.0, + 1123.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 579.0, + 1168.0, + 579.0, + 1168.0, + 590.0, + 1156.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 563.0, + 1357.0, + 563.0, + 1357.0, + 606.0, + 1290.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 625.0, + 351.0, + 625.0, + 351.0, + 635.0, + 341.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 600.0, + 566.0, + 600.0, + 566.0, + 644.0, + 483.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 628.0, + 713.0, + 628.0, + 713.0, + 637.0, + 705.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 625.0, + 754.0, + 625.0, + 754.0, + 635.0, + 744.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 601.0, + 842.0, + 601.0, + 842.0, + 641.0, + 758.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 612.0, + 896.0, + 612.0, + 896.0, + 630.0, + 874.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 605.0, + 990.0, + 605.0, + 990.0, + 630.0, + 966.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 600.0, + 1113.0, + 600.0, + 1113.0, + 642.0, + 1028.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 611.0, + 1171.0, + 611.0, + 1171.0, + 629.0, + 1147.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 600.0, + 1388.0, + 600.0, + 1388.0, + 640.0, + 1306.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 656.0, + 395.0, + 656.0, + 395.0, + 665.0, + 386.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 639.0, + 522.0, + 639.0, + 522.0, + 661.0, + 484.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 639.0, + 798.0, + 639.0, + 798.0, + 661.0, + 759.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 648.0, + 895.0, + 648.0, + 895.0, + 663.0, + 874.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 636.0, + 1069.0, + 636.0, + 1069.0, + 661.0, + 1008.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 648.0, + 1170.0, + 648.0, + 1170.0, + 663.0, + 1149.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 636.0, + 1343.0, + 636.0, + 1343.0, + 658.0, + 1306.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 668.0, + 352.0, + 668.0, + 352.0, + 682.0, + 334.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 668.0, + 625.0, + 668.0, + 625.0, + 682.0, + 606.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 669.0, + 713.0, + 669.0, + 713.0, + 681.0, + 703.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 673.0, + 1103.0, + 673.0, + 1103.0, + 682.0, + 1093.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 684.0, + 898.0, + 684.0, + 898.0, + 701.0, + 871.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 680.0, + 960.0, + 680.0, + 960.0, + 699.0, + 946.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 684.0, + 1170.0, + 684.0, + 1170.0, + 698.0, + 1149.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 691.0, + 351.0, + 691.0, + 351.0, + 704.0, + 334.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 692.0, + 620.0, + 692.0, + 620.0, + 703.0, + 609.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 699.0, + 1099.0, + 699.0, + 1099.0, + 710.0, + 1089.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 730.0, + 356.0, + 730.0, + 356.0, + 743.0, + 346.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 726.0, + 522.0, + 726.0, + 522.0, + 761.0, + 386.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 727.0, + 571.0, + 727.0, + 571.0, + 746.0, + 545.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 729.0, + 631.0, + 729.0, + 631.0, + 744.0, + 617.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 729.0, + 673.0, + 729.0, + 673.0, + 744.0, + 659.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 730.0, + 766.0, + 730.0, + 766.0, + 761.0, + 698.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 729.0, + 799.0, + 729.0, + 799.0, + 746.0, + 784.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 727.0, + 845.0, + 727.0, + 845.0, + 746.0, + 823.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 729.0, + 901.0, + 729.0, + 901.0, + 744.0, + 888.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 726.0, + 1069.0, + 726.0, + 1069.0, + 761.0, + 930.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 727.0, + 1118.0, + 727.0, + 1118.0, + 746.0, + 1092.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 729.0, + 1175.0, + 729.0, + 1175.0, + 744.0, + 1161.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 729.0, + 1217.0, + 729.0, + 1217.0, + 746.0, + 1203.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 729.0, + 1313.0, + 729.0, + 1313.0, + 763.0, + 1242.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 729.0, + 1344.0, + 729.0, + 1344.0, + 746.0, + 1329.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 727.0, + 1393.0, + 727.0, + 1393.0, + 746.0, + 1369.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 766.0, + 912.0, + 766.0, + 912.0, + 801.0, + 788.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 268.0, + 942.0, + 268.0, + 942.0, + 298.0, + 902.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 267.0, + 1040.0, + 267.0, + 1040.0, + 280.5, + 1014.0, + 280.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.75, + 294.5, + 395.75, + 294.5, + 395.75, + 319.5, + 365.75, + 319.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.25, + 366.5, + 1005.25, + 366.5, + 1005.25, + 387.5, + 977.25, + 387.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 388.5, + 1028.0, + 388.5, + 1028.0, + 407.5, + 1003.0, + 407.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 434.5, + 1173.0, + 434.5, + 1173.0, + 448.5, + 1151.0, + 448.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 566.5, + 950.0, + 566.5, + 950.0, + 592.0, + 913.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 544.5, + 663.0, + 544.5, + 663.0, + 570.5, + 642.0, + 570.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.75, + 600.5, + 385.75, + 600.5, + 385.75, + 612.5, + 379.75, + 612.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 714.0, + 624.0, + 714.0, + 624.0, + 726.0, + 608.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1328.0, + 1161.0, + 1328.0, + 1161.0, + 1539.0, + 1129.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1329.0, + 882.0, + 1329.0, + 882.0, + 1539.0, + 850.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1416.0, + 902.0, + 1416.0, + 902.0, + 1429.0, + 889.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1425.0, + 1079.0, + 1425.0, + 1079.0, + 1449.0, + 918.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1425.0, + 1356.0, + 1425.0, + 1356.0, + 1449.0, + 1209.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1443.0, + 905.0, + 1443.0, + 905.0, + 1462.0, + 879.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1451.0, + 932.0, + 1451.0, + 932.0, + 1465.0, + 912.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1453.0, + 1207.0, + 1453.0, + 1207.0, + 1464.0, + 1194.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1460.0, + 1370.0, + 1460.0, + 1370.0, + 1468.0, + 1362.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1474.0, + 904.0, + 1474.0, + 904.0, + 1489.0, + 882.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1470.0, + 1181.0, + 1470.0, + 1181.0, + 1485.0, + 1161.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1504.0, + 903.0, + 1504.0, + 903.0, + 1519.0, + 883.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1503.0, + 926.0, + 1503.0, + 926.0, + 1511.0, + 918.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1501.0, + 1206.0, + 1501.0, + 1206.0, + 1513.0, + 1194.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1525.0, + 926.0, + 1525.0, + 926.0, + 1533.0, + 918.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1519.0, + 970.0, + 1519.0, + 970.0, + 1539.0, + 931.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1518.0, + 1250.0, + 1518.0, + 1250.0, + 1539.0, + 1208.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1542.0, + 1088.0, + 1542.0, + 1088.0, + 1578.0, + 956.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1542.0, + 1350.0, + 1542.0, + 1350.0, + 1578.0, + 1217.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1543.0, + 1400.0, + 1543.0, + 1400.0, + 1562.0, + 1371.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1570.0, + 1052.0, + 1570.0, + 1052.0, + 1605.0, + 926.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1572.0, + 1325.0, + 1572.0, + 1325.0, + 1604.0, + 1214.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1439.5, + 1362.0, + 1439.5, + 1362.0, + 1474.5, + 1202.0, + 1474.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1440.0, + 1081.0, + 1440.0, + 1081.0, + 1474.0, + 927.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1464.5, + 1014.0, + 1464.5, + 1014.0, + 1500.5, + 930.0, + 1500.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1464.5, + 1293.0, + 1464.5, + 1293.0, + 1500.5, + 1208.0, + 1500.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.25, + 1491.0, + 990.25, + 1491.0, + 990.25, + 1524.0, + 930.25, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.75, + 1490.5, + 1270.75, + 1490.5, + 1270.75, + 1523.5, + 1208.75, + 1523.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.75, + 1538.0, + 898.75, + 1538.0, + 898.75, + 1554.0, + 892.75, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.75, + 1536.0, + 1179.75, + 1536.0, + 1179.75, + 1554.0, + 1167.75, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 799.0, + 1192.0, + 799.0, + 1192.0, + 848.0, + 505.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1834.0, + 549.0, + 1834.0, + 549.0, + 1885.0, + 291.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1614.0, + 1402.0, + 1614.0, + 1402.0, + 1649.0, + 846.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1645.0, + 1395.0, + 1645.0, + 1395.0, + 1681.0, + 846.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1614.0, + 1402.0, + 1614.0, + 1402.0, + 1649.0, + 846.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1645.0, + 1395.0, + 1645.0, + 1395.0, + 1681.0, + 846.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1328.0, + 1161.0, + 1328.0, + 1161.0, + 1539.0, + 1128.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1330.0, + 880.0, + 1330.0, + 880.0, + 1538.0, + 851.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1345.0, + 1178.0, + 1345.0, + 1178.0, + 1354.0, + 1170.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1427.0, + 1078.0, + 1427.0, + 1078.0, + 1448.0, + 930.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1426.0, + 1356.0, + 1426.0, + 1356.0, + 1447.0, + 1209.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1444.0, + 904.0, + 1444.0, + 904.0, + 1462.0, + 879.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1453.0, + 928.0, + 1453.0, + 928.0, + 1464.0, + 913.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1453.0, + 1208.0, + 1453.0, + 1208.0, + 1464.0, + 1194.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1459.0, + 1374.0, + 1459.0, + 1374.0, + 1469.0, + 1361.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1474.0, + 903.0, + 1474.0, + 903.0, + 1490.0, + 883.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1470.0, + 1180.0, + 1470.0, + 1180.0, + 1485.0, + 1160.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1504.0, + 902.0, + 1504.0, + 902.0, + 1519.0, + 883.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1502.0, + 925.0, + 1502.0, + 925.0, + 1511.0, + 917.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1501.0, + 1207.0, + 1501.0, + 1207.0, + 1513.0, + 1194.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1526.0, + 925.0, + 1526.0, + 925.0, + 1533.0, + 917.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1517.0, + 971.0, + 1517.0, + 971.0, + 1541.0, + 930.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1526.0, + 1206.0, + 1526.0, + 1206.0, + 1533.0, + 1195.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1519.0, + 1250.0, + 1519.0, + 1250.0, + 1539.0, + 1211.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1543.0, + 998.0, + 1543.0, + 998.0, + 1562.0, + 973.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1542.0, + 1088.0, + 1542.0, + 1088.0, + 1564.0, + 1056.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1543.0, + 1246.0, + 1543.0, + 1246.0, + 1562.0, + 1217.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1543.0, + 1298.0, + 1543.0, + 1298.0, + 1561.0, + 1267.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1543.0, + 1349.0, + 1543.0, + 1349.0, + 1562.0, + 1319.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1543.0, + 1401.0, + 1543.0, + 1401.0, + 1562.0, + 1371.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1551.0, + 1068.0, + 1551.0, + 1068.0, + 1579.0, + 957.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1553.0, + 1347.0, + 1553.0, + 1347.0, + 1578.0, + 1237.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1571.0, + 1053.0, + 1571.0, + 1053.0, + 1606.0, + 925.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1572.0, + 1325.0, + 1572.0, + 1325.0, + 1604.0, + 1215.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1440.0, + 1082.0, + 1440.0, + 1082.0, + 1474.0, + 927.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1440.5, + 1363.0, + 1440.5, + 1363.0, + 1474.5, + 1204.0, + 1474.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1464.0, + 1015.0, + 1464.0, + 1015.0, + 1500.0, + 931.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1464.5, + 1293.0, + 1464.5, + 1293.0, + 1500.5, + 1209.0, + 1500.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1491.0, + 991.0, + 1491.0, + 991.0, + 1524.0, + 931.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.75, + 1490.0, + 1269.75, + 1490.0, + 1269.75, + 1524.0, + 1209.75, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1539.0, + 899.0, + 1539.0, + 899.0, + 1554.0, + 892.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1535.5, + 1179.0, + 1535.5, + 1179.0, + 1554.0, + 1168.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1403.0, + 1093.0, + 1403.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 1406.0, + 1124.0, + 1406.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1189.0, + 294.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 1404.0, + 1186.0, + 1404.0, + 1220.0, + 295.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1250.0, + 295.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 1406.0, + 1247.0, + 1406.0, + 1282.0, + 295.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1277.0, + 1406.0, + 1277.0, + 1406.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1322.0, + 830.0, + 1322.0, + 830.0, + 1356.0, + 297.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 828.0, + 1352.0, + 828.0, + 1387.0, + 294.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1383.0, + 474.0, + 1383.0, + 474.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1383.0, + 829.0, + 1383.0, + 829.0, + 1417.0, + 562.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 827.0, + 1412.0, + 827.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 826.0, + 1445.0, + 826.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1475.0, + 827.0, + 1475.0, + 827.0, + 1507.0, + 294.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1505.0, + 539.0, + 1505.0, + 539.0, + 1539.0, + 292.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1505.0, + 829.0, + 1505.0, + 829.0, + 1539.0, + 644.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1535.0, + 829.0, + 1535.0, + 829.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1563.0, + 829.0, + 1563.0, + 829.0, + 1600.0, + 292.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1598.0, + 826.0, + 1598.0, + 826.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 826.0, + 1627.0, + 826.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1654.0, + 736.0, + 1654.0, + 736.0, + 1696.0, + 293.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1411.0, + 1942.0, + 1411.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1407.0, + 1975.0, + 1407.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1409.0, + 2002.0, + 1409.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 1221.0, + 860.0, + 1221.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 860.0, + 1405.0, + 860.0, + 1405.0, + 895.0, + 1237.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 887.0, + 1028.0, + 887.0, + 1028.0, + 933.0, + 290.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 887.0, + 1410.0, + 887.0, + 1410.0, + 933.0, + 1177.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 925.0, + 1403.0, + 925.0, + 1403.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 1403.0, + 984.0, + 1403.0, + 1019.0, + 295.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1016.0, + 1405.0, + 1016.0, + 1405.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1047.0, + 1238.0, + 1047.0, + 1238.0, + 1082.0, + 295.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1047.0, + 1372.0, + 1047.0, + 1372.0, + 1082.0, + 1360.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1687.0, + 1407.0, + 1687.0, + 1407.0, + 1724.0, + 295.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1720.0, + 639.0, + 1720.0, + 639.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1720.0, + 1404.0, + 1720.0, + 1404.0, + 1753.0, + 727.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1369.0, + 1749.0, + 1369.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.818 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 301, + 279, + 1401, + 279, + 1401, + 375, + 301, + 375 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 299, + 734, + 1400, + 734, + 1400, + 800, + 299, + 800 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 297, + 1483, + 1402, + 1483, + 1402, + 1549, + 297, + 1549 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 290, + 1051, + 1404, + 1051, + 1404, + 1117, + 290, + 1117 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 295, + 1568, + 1405, + 1568, + 1405, + 1634, + 295, + 1634 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 292, + 1855, + 1403, + 1855, + 1403, + 1920, + 292, + 1920 + ], + "score": 0.688 + }, + { + "category_id": 1, + "poly": [ + 299, + 1653, + 1401, + 1653, + 1401, + 1749, + 299, + 1749 + ], + "score": 0.682 + }, + { + "category_id": 1, + "poly": [ + 299, + 1137, + 1405, + 1137, + 1405, + 1233, + 299, + 1233 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 297, + 649, + 1404, + 649, + 1404, + 716, + 297, + 716 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 297, + 935, + 1401, + 935, + 1401, + 1030, + 297, + 1030 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 295, + 1770, + 1401, + 1770, + 1401, + 1836, + 295, + 1836 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 300, + 1252, + 1403, + 1252, + 1403, + 1349, + 300, + 1349 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 292, + 395, + 1404, + 395, + 1404, + 459, + 292, + 459 + ], + "score": 0.636 + }, + { + "category_id": 1, + "poly": [ + 296, + 1367, + 1406, + 1367, + 1406, + 1463, + 296, + 1463 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 291, + 565, + 1405, + 565, + 1405, + 630, + 291, + 630 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 292, + 479, + 1402, + 479, + 1402, + 544, + 292, + 544 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 297, + 820, + 1408, + 820, + 1408, + 913, + 297, + 913 + ], + "score": 0.563 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1406, + 1942, + 1406, + 2032, + 299, + 2032 + ], + "score": 0.548 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 1405.0, + 278.0, + 1405.0, + 316.0, + 295.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 310.0, + 1405.0, + 310.0, + 1405.0, + 343.0, + 322.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 341.0, + 1163.0, + 341.0, + 1163.0, + 376.0, + 321.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 731.0, + 1405.0, + 731.0, + 1405.0, + 775.0, + 295.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 770.0, + 949.0, + 770.0, + 949.0, + 798.0, + 324.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1486.0, + 1403.0, + 1486.0, + 1403.0, + 1519.0, + 297.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1516.0, + 1284.0, + 1516.0, + 1284.0, + 1548.0, + 322.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1407.0, + 1050.0, + 1407.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1079.0, + 471.0, + 1079.0, + 471.0, + 1120.0, + 321.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1405.0, + 1567.0, + 1405.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1635.0, + 323.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1890.0, + 295.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1886.0, + 1009.0, + 1886.0, + 1009.0, + 1922.0, + 324.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1690.0, + 293.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1721.0, + 323.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1714.0, + 1020.0, + 1714.0, + 1020.0, + 1752.0, + 324.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1137.0, + 1403.0, + 1137.0, + 1403.0, + 1172.0, + 295.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1169.0, + 1405.0, + 1169.0, + 1405.0, + 1203.0, + 322.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1198.0, + 999.0, + 1198.0, + 999.0, + 1233.0, + 322.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 680.0, + 1123.0, + 680.0, + 1123.0, + 716.0, + 321.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 970.0, + 297.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 969.0, + 1405.0, + 969.0, + 1405.0, + 1003.0, + 324.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 998.0, + 806.0, + 998.0, + 806.0, + 1032.0, + 324.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1768.0, + 1405.0, + 1768.0, + 1405.0, + 1807.0, + 294.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1799.0, + 1334.0, + 1799.0, + 1334.0, + 1838.0, + 319.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1252.0, + 1405.0, + 1252.0, + 1405.0, + 1291.0, + 296.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1283.0, + 1408.0, + 1283.0, + 1408.0, + 1321.0, + 321.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1314.0, + 1368.0, + 1314.0, + 1368.0, + 1351.0, + 321.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 394.0, + 1405.0, + 394.0, + 1405.0, + 431.0, + 294.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 426.0, + 1094.0, + 426.0, + 1094.0, + 459.0, + 323.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1367.0, + 1407.0, + 1367.0, + 1407.0, + 1404.0, + 295.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1400.0, + 1402.0, + 1400.0, + 1402.0, + 1431.0, + 324.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1430.0, + 828.0, + 1430.0, + 828.0, + 1464.0, + 323.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 560.0, + 1406.0, + 560.0, + 1406.0, + 605.0, + 292.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 595.0, + 1344.0, + 595.0, + 1344.0, + 631.0, + 319.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 514.0, + 295.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 510.0, + 982.0, + 510.0, + 982.0, + 545.0, + 321.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 817.0, + 1406.0, + 817.0, + 1406.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 852.0, + 1409.0, + 852.0, + 1409.0, + 888.0, + 320.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 878.0, + 463.0, + 878.0, + 463.0, + 917.0, + 321.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1937.0, + 1410.0, + 1937.0, + 1410.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1408.0, + 1973.0, + 1408.0, + 2006.0, + 323.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 2013.0, + 337.0, + 2013.0, + 337.0, + 2026.0, + 327.0, + 2026.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 299, + 1120, + 1398, + 1120, + 1398, + 1185, + 299, + 1185 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 300, + 871, + 1400, + 871, + 1400, + 936, + 300, + 936 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 300, + 953, + 1398, + 953, + 1398, + 1019, + 300, + 1019 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 290, + 229, + 1404, + 229, + 1404, + 294, + 290, + 294 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 297, + 1036, + 1396, + 1036, + 1396, + 1102, + 297, + 1102 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 297, + 622, + 1399, + 622, + 1399, + 686, + 297, + 686 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 295, + 787, + 1399, + 787, + 1399, + 853, + 295, + 853 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 295, + 539, + 1399, + 539, + 1399, + 603, + 295, + 603 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 296, + 704, + 1400, + 704, + 1400, + 770, + 296, + 770 + ], + "score": 0.62 + }, + { + "category_id": 1, + "poly": [ + 296, + 425, + 1400, + 425, + 1400, + 519, + 296, + 519 + ], + "score": 0.583 + }, + { + "category_id": 1, + "poly": [ + 300, + 311, + 1401, + 311, + 1401, + 406, + 300, + 406 + ], + "score": 0.574 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1403.0, + 1116.0, + 1403.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1151.0, + 791.0, + 1151.0, + 791.0, + 1183.0, + 323.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 871.0, + 1402.0, + 871.0, + 1402.0, + 907.0, + 296.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 901.0, + 921.0, + 901.0, + 921.0, + 937.0, + 321.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 954.0, + 1404.0, + 954.0, + 1404.0, + 991.0, + 295.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 987.0, + 1376.0, + 987.0, + 1376.0, + 1020.0, + 324.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 1409.0, + 225.0, + 1409.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 260.0, + 967.0, + 260.0, + 967.0, + 295.0, + 320.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1035.0, + 1401.0, + 1035.0, + 1401.0, + 1072.0, + 296.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1069.0, + 1199.0, + 1069.0, + 1199.0, + 1103.0, + 322.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 622.0, + 1404.0, + 622.0, + 1404.0, + 658.0, + 296.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 654.0, + 1006.0, + 654.0, + 1006.0, + 686.0, + 322.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 786.0, + 1404.0, + 786.0, + 1404.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 819.0, + 1329.0, + 819.0, + 1329.0, + 855.0, + 322.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 575.0, + 294.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 568.0, + 834.0, + 568.0, + 834.0, + 604.0, + 321.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 737.0, + 1337.0, + 737.0, + 1337.0, + 771.0, + 322.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 461.0, + 295.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 454.0, + 1405.0, + 454.0, + 1405.0, + 495.0, + 320.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 487.0, + 739.0, + 487.0, + 739.0, + 520.0, + 321.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 349.0, + 293.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 345.0, + 1405.0, + 345.0, + 1405.0, + 379.0, + 324.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 373.0, + 715.0, + 373.0, + 715.0, + 407.0, + 321.0, + 407.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 293, + 1404, + 293, + 1404, + 419, + 298, + 419 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 445, + 740, + 1252, + 740, + 1252, + 870, + 445, + 870 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 652, + 1975, + 1045, + 1975, + 1045, + 2045, + 652, + 2045 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 653, + 1471, + 1045, + 1471, + 1045, + 1537, + 653, + 1537 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 621, + 1058, + 1077, + 1058, + 1077, + 1130, + 621, + 1130 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 684, + 1596, + 1016, + 1596, + 1016, + 1664, + 684, + 1664 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1750, + 1410, + 1750, + 1410, + 1823, + 298, + 1823 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 589, + 1837, + 1108, + 1837, + 1108, + 1913, + 589, + 1913 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 560, + 637, + 1134, + 637, + 1134, + 682, + 560, + 682 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1145, + 1403, + 1145, + 1403, + 1210, + 296, + 1210 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 769, + 1702, + 928, + 1702, + 928, + 1743, + 769, + 1743 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 638, + 1224, + 1117, + 1224, + 1117, + 1290, + 638, + 1290 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 1548, + 665, + 1548, + 665, + 1581, + 298, + 1581 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1421, + 668, + 1421, + 668, + 1457, + 297, + 1457 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 301, + 588, + 796, + 588, + 796, + 622, + 301, + 622 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 880, + 795, + 880, + 795, + 914, + 298, + 914 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 333, + 927, + 1317, + 927, + 1317, + 993, + 333, + 993 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 298, + 1673, + 642, + 1673, + 642, + 1706, + 298, + 1706 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 693, + 644, + 693, + 644, + 725, + 297, + 725 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 1925, + 798, + 1925, + 798, + 1961, + 298, + 1961 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 299, + 462, + 635, + 462, + 635, + 498, + 299, + 498 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 299, + 1005, + 1363, + 1005, + 1363, + 1044, + 299, + 1044 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 610, + 1297, + 1019, + 1297, + 1019, + 1361, + 610, + 1361 + ], + "score": 0.908 + }, + { + "category_id": 8, + "poly": [ + 581, + 1367, + 1025, + 1367, + 1025, + 1407, + 581, + 1407 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1990, + 1401, + 1990, + 1401, + 2022, + 1350, + 2022 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1707, + 1401, + 1707, + 1401, + 1739, + 1351, + 1739 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1372, + 1401, + 1372, + 1401, + 1403, + 1351, + 1403 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1491, + 1401, + 1491, + 1401, + 1523, + 1351, + 1523 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1078, + 1400, + 1078, + 1400, + 1110, + 1351, + 1110 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 509, + 226, + 509, + 261, + 300, + 261 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1317, + 1401, + 1317, + 1401, + 1348, + 1351, + 1348 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1859, + 1401, + 1859, + 1401, + 1891, + 1351, + 1891 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1353, + 945, + 1400, + 945, + 1400, + 976, + 1353, + 976 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1244, + 1400, + 1244, + 1400, + 1276, + 1351, + 1276 + ], + "score": 0.835 + }, + { + "category_id": 0, + "poly": [ + 299, + 531, + 663, + 531, + 663, + 563, + 299, + 563 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 299, + 531, + 663, + 531, + 663, + 563, + 299, + 563 + ], + "score": 0.199 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1245, + 1400, + 1245, + 1400, + 1276, + 1351, + 1276 + ], + "score": 0.109 + }, + { + "category_id": 14, + "poly": [ + 651, + 1467, + 1048, + 1467, + 1048, + 1539, + 651, + 1539 + ], + "score": 0.94, + "latex": "\\langle \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle = 0 ." + }, + { + "category_id": 14, + "poly": [ + 588, + 1834, + 1112, + 1834, + 1112, + 1913, + 588, + 1913 + ], + "score": 0.94, + "latex": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } } { 4 } \\cdot \\frac { \\epsilon } { L _ { 2 } } + \\frac { 1 } { 2 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ." + }, + { + "category_id": 14, + "poly": [ + 651, + 1972, + 1048, + 1972, + 1048, + 2045, + 651, + 2045 + ], + "score": 0.94, + "latex": "F ( \\mathbf { x } ^ { k + 1 } ) \\leq F ( \\mathbf { x } ^ { k } ) - { \\frac { 1 } { 4 { \\sqrt { L _ { 2 } } } } } \\cdot \\epsilon ^ { 1 . 5 } ." + }, + { + "category_id": 13, + "poly": [ + 1179, + 1786, + 1360, + 1786, + 1360, + 1824, + 1179, + 1824 + ], + "score": 0.94, + "latex": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 443, + 737, + 1253, + 737, + 1253, + 876, + 443, + 876 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla F ( { \\mathbf x } ^ { k } ) , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } } \\\\ { = F ( { \\mathbf x } ^ { k } ) + \\langle \\nabla _ { k } + \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle [ \\nabla _ { k } ^ { 2 } + \\mathbf { H } ^ { k } ] { \\mathbf h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 880, + 1748, + 1059, + 1748, + 1059, + 1788, + 880, + 1788 + ], + "score": 0.94, + "latex": "\\| \\mathbf { h } ^ { k } \\| = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 540, + 1925, + 733, + 1925, + 733, + 1962, + 540, + 1962 + ], + "score": 0.94, + "latex": "\\lambda ^ { k } > 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 681, + 1591, + 1015, + 1591, + 1015, + 1664, + 681, + 1664 + ], + "score": 0.94, + "latex": "\\langle ( \\mathbf { H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\mathbf { I } ) \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\geq 0 ," + }, + { + "category_id": 13, + "poly": [ + 930, + 1004, + 1148, + 1004, + 1148, + 1044, + 930, + 1044 + ], + "score": 0.94, + "latex": "\\| \\mathbf { h } \\| \\le r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 586, + 1218, + 1114, + 1218, + 1114, + 1409, + 586, + 1409 + ], + "score": 0.93, + "latex": "\\begin{array} { c } { { \\displaystyle { \\mathrm { F i r s t ~ O r d e r : ~ } } { \\bf { g } } ^ { k } + { \\bf H } ^ { k } { \\bf h } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } { \\bf h } ^ { k } = 0 , } } \\\\ { { \\displaystyle \\mathrm { S e c o n d ~ O r d e r : ~ } { \\bf H } ^ { k } + \\frac { \\lambda ^ { k } L _ { 2 } } { 2 } \\cdot { \\bf I } \\approx 0 , } } \\\\ { { \\displaystyle \\mathrm { C o m p l e m e n t a r y : ~ } \\lambda ^ { k } \\cdot ( \\| { \\bf h } ^ { k } \\| - r ) = 0 . } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 621, + 1055, + 1078, + 1055, + 1078, + 1132, + 621, + 1132 + ], + "score": 0.93, + "latex": "\\| \\nabla _ { k } \\| \\| \\mathbf h ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\mathbf h ^ { k } \\| ^ { 2 } \\leq \\frac { 1 } { 3 } \\cdot \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ." + }, + { + "category_id": 14, + "poly": [ + 330, + 925, + 1324, + 925, + 1324, + 992, + 330, + 992 + ], + "score": 0.92, + "latex": "F ( { \\mathbf x } ^ { k + 1 } ) \\leq F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf H ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\frac { L _ { 2 } } { 6 } \\| { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| { \\mathbf h } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| { \\mathbf h } ^ { k } \\| ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 1012, + 1144, + 1099, + 1144, + 1099, + 1178, + 1012, + 1178 + ], + "score": 0.92, + "latex": "\\lambda ^ { k } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1183, + 1747, + 1402, + 1747, + 1402, + 1785, + 1183, + 1785 + ], + "score": 0.92, + "latex": "\\lambda ^ { k } > 3 \\sqrt { \\epsilon / L _ { 2 } } > 0" + }, + { + "category_id": 14, + "poly": [ + 770, + 1700, + 929, + 1700, + 929, + 1742, + 770, + 1742 + ], + "score": 0.91, + "latex": "\\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle \\leq 0 ." + }, + { + "category_id": 13, + "poly": [ + 545, + 327, + 631, + 327, + 631, + 358, + 545, + 358 + ], + "score": 0.91, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 524, + 1421, + 558, + 1421, + 558, + 1452, + 524, + 1452 + ], + "score": 0.87, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 357, + 1093, + 357, + 1093, + 388, + 1010, + 388 + ], + "score": 0.84, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 14, + "poly": [ + 560, + 633, + 1130, + 633, + 1130, + 682, + 560, + 682 + ], + "score": 0.82, + "latex": "\\nabla _ { k } \\overset { \\mathrm { d e f } } { = } \\nabla F ( { \\mathbf x } ^ { k } ) - { \\mathbf g } ^ { k } \\mathrm { a n d } \\nabla _ { k } ^ { 2 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) - { \\mathbf H } ^ { k } ." + }, + { + "category_id": 13, + "poly": [ + 860, + 637, + 1128, + 637, + 1128, + 681, + 860, + 681 + ], + "score": 0.54, + "latex": "\\nabla _ { k } ^ { 2 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\mathbf { H } ^ { k }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 458.0, + 637.0, + 458.0, + 637.0, + 503.0, + 291.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 513.0, + 223.0, + 513.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 665.0, + 528.0, + 665.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 1404.0, + 294.0, + 1404.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 544.0, + 327.0, + 544.0, + 360.0, + 294.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 327.0, + 1405.0, + 327.0, + 1405.0, + 360.0, + 632.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 356.0, + 1009.0, + 356.0, + 1009.0, + 392.0, + 296.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 356.0, + 1405.0, + 356.0, + 1405.0, + 392.0, + 1094.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 388.0, + 768.0, + 388.0, + 768.0, + 421.0, + 296.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1746.0, + 879.0, + 1746.0, + 879.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1746.0, + 1182.0, + 1746.0, + 1182.0, + 1788.0, + 1060.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1178.0, + 1785.0, + 1178.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1785.0, + 1372.0, + 1785.0, + 1372.0, + 1827.0, + 1361.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1143.0, + 1011.0, + 1143.0, + 1011.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1143.0, + 1406.0, + 1143.0, + 1406.0, + 1183.0, + 1100.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1174.0, + 520.0, + 1174.0, + 520.0, + 1211.0, + 296.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1544.0, + 666.0, + 1544.0, + 666.0, + 1586.0, + 295.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 523.0, + 1419.0, + 523.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1419.0, + 668.0, + 1419.0, + 668.0, + 1458.0, + 559.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 588.0, + 795.0, + 588.0, + 795.0, + 625.0, + 297.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 875.0, + 797.0, + 875.0, + 797.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 641.0, + 1671.0, + 641.0, + 1710.0, + 295.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 644.0, + 688.0, + 644.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1922.0, + 539.0, + 1922.0, + 539.0, + 1965.0, + 293.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1922.0, + 801.0, + 1922.0, + 801.0, + 1965.0, + 734.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 929.0, + 1005.0, + 929.0, + 1046.0, + 294.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1005.0, + 1367.0, + 1005.0, + 1367.0, + 1046.0, + 1149.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 665.0, + 528.0, + 665.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 388, + 1775, + 1311, + 1775, + 1311, + 1943, + 388, + 1943 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 607, + 1618, + 1090, + 1618, + 1090, + 1715, + 607, + 1715 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 641, + 357, + 1058, + 357, + 1058, + 422, + 641, + 422 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 435, + 1407, + 435, + 1407, + 508, + 295, + 508 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 839, + 1403, + 839, + 1403, + 904, + 295, + 904 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 511, + 621, + 1186, + 621, + 1186, + 685, + 511, + 685 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 762, + 1317, + 934, + 1317, + 934, + 1358, + 762, + 1358 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 225, + 1402, + 225, + 1402, + 295, + 294, + 295 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 996, + 1404, + 996, + 1404, + 1060, + 294, + 1060 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 564, + 1997, + 1105, + 1997, + 1105, + 2043, + 564, + 2043 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 489, + 1215, + 1206, + 1215, + 1206, + 1260, + 489, + 1260 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 1727, + 1370, + 1727, + 1370, + 1762, + 297, + 1762 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 575, + 832, + 575, + 832, + 608, + 296, + 608 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 1463, + 787, + 1463, + 787, + 1497, + 298, + 1497 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 598, + 1410, + 1100, + 1410, + 1100, + 1455, + 598, + 1455 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1951, + 559, + 1951, + 559, + 1983, + 297, + 1983 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 676, + 1108, + 1022, + 1108, + 1022, + 1154, + 676, + 1154 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1163, + 669, + 1163, + 669, + 1198, + 297, + 1198 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 1368, + 880, + 1368, + 880, + 1401, + 296, + 1401 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 298, + 1268, + 1039, + 1268, + 1039, + 1303, + 298, + 1303 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 427, + 521, + 1269, + 521, + 1269, + 567, + 427, + 567 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 859, + 73, + 859, + 106, + 297, + 106 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1569, + 727, + 1569, + 727, + 1602, + 298, + 1602 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 939, + 634, + 939, + 634, + 971, + 299, + 971 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 387, + 1510, + 1274, + 1510, + 1274, + 1556, + 387, + 1556 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 300, + 304, + 1394, + 304, + 1394, + 343, + 300, + 343 + ], + "score": 0.903 + }, + { + "category_id": 8, + "poly": [ + 358, + 781, + 1309, + 781, + 1309, + 826, + 358, + 826 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1418, + 1401, + 1418, + 1401, + 1449, + 1351, + 1449 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 377, + 1400, + 377, + 1400, + 407, + 1351, + 407 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1350, + 528, + 1401, + 528, + 1401, + 559, + 1350, + 559 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 301, + 733, + 1361, + 733, + 1361, + 768, + 301, + 768 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 300, + 1060, + 753, + 1060, + 753, + 1091, + 300, + 1091 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 299, + 699, + 907, + 699, + 907, + 733, + 299, + 733 + ], + "score": 0.801 + }, + { + "category_id": 14, + "poly": [ + 606, + 1614, + 1092, + 1614, + 1092, + 1717, + 606, + 1717 + ], + "score": 0.94, + "latex": "\\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) = \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } { \\frac { \\mathbf { B } _ { i } ^ { 0 } } { s _ { 2 } ^ { \\prime } } } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } { \\frac { \\mathbf { B } _ { i } ^ { j } } { s _ { 2 } } } ." + }, + { + "category_id": 14, + "poly": [ + 639, + 352, + 1060, + 352, + 1060, + 424, + 639, + 424 + ], + "score": 0.94, + "latex": "\\| \\mathbf { g } ^ { k } + \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } \\| = \\frac { L _ { 2 } \\lambda ^ { k } } { 2 } \\cdot \\| \\mathbf { h } ^ { k } \\| \\leq 2 \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 563, + 305, + 755, + 305, + 755, + 342, + 563, + 342 + ], + "score": 0.94, + "latex": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 386, + 1771, + 1312, + 1771, + 1312, + 1945, + 386, + 1945 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) \\| \\ge t \\} \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { i = 1 } ^ { s _ { 2 } ^ { \\prime } } 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime 2 } + \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} } \\\\ & { \\qquad \\le d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 L _ { 1 } ^ { 2 } / s _ { 2 } ^ { \\prime } + 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 662, + 227, + 860, + 227, + 860, + 264, + 662, + 264 + ], + "score": 0.93, + "latex": "\\lambda ^ { k } \\le 3 \\epsilon ^ { 0 . 5 } / \\sqrt { L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 966, + 839, + 1078, + 839, + 1078, + 875, + 966, + 875 + ], + "score": 0.93, + "latex": "\\| \\mathbf { h } ^ { k } \\| = r" + }, + { + "category_id": 13, + "poly": [ + 699, + 436, + 900, + 436, + 900, + 474, + 699, + 474 + ], + "score": 0.93, + "latex": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3" + }, + { + "category_id": 13, + "poly": [ + 497, + 438, + 644, + 438, + 644, + 473, + 497, + 473 + ], + "score": 0.92, + "latex": "\\lVert \\nabla _ { k } \\rVert \\leq \\epsilon / 6" + }, + { + "category_id": 14, + "poly": [ + 510, + 618, + 1184, + 618, + 1184, + 686, + 510, + 686 + ], + "score": 0.92, + "latex": "\\| \\nabla F ( { \\mathbf { x } } ^ { k + 1 } ) - \\nabla F ( { \\mathbf { x } } ^ { k } ) - \\nabla ^ { 2 } F ( { \\mathbf { x } } ^ { k } ) { \\mathbf { h } } ^ { k } \\| \\leq \\frac { L _ { 2 } } { 2 } \\| { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon } { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 610, + 1465, + 679, + 1465, + 679, + 1495, + 610, + 1495 + ], + "score": 0.92, + "latex": "k \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 924, + 998, + 1063, + 998, + 1063, + 1029, + 924, + 1029 + ], + "score": 0.92, + "latex": "0 \\leq k < q _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 299, + 472, + 384, + 472, + 384, + 511, + 299, + 511 + ], + "score": 0.92, + "latex": "\\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1730, + 1265, + 1730, + 1265, + 1761, + 1185, + 1761 + ], + "score": 0.92, + "latex": "k \\leq p _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 599, + 1410, + 1099, + 1410, + 1099, + 1453, + 599, + 1453 + ], + "score": 0.92, + "latex": "\\| \\mathbf { B } _ { i } ^ { 0 } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) \\| = 2 L _ { 1 } ," + }, + { + "category_id": 13, + "poly": [ + 298, + 1268, + 364, + 1268, + 364, + 1304, + 298, + 1304 + ], + "score": 0.92, + "latex": "\\{ \\mathbf { B } _ { i } ^ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 665, + 1058, + 752, + 1058, + 752, + 1092, + 665, + 1092 + ], + "score": 0.91, + "latex": "i \\in [ s _ { 2 } ^ { \\prime } ]" + }, + { + "category_id": 14, + "poly": [ + 763, + 1315, + 936, + 1315, + 936, + 1358, + 763, + 1358 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ \\mathbf { B } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 ." + }, + { + "category_id": 14, + "poly": [ + 674, + 1105, + 1021, + 1105, + 1021, + 1153, + 674, + 1153 + ], + "score": 0.91, + "latex": "\\mathbf { B } _ { i } ^ { 0 } \\overset { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { 0 } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { 0 } ) ," + }, + { + "category_id": 14, + "poly": [ + 396, + 1510, + 1274, + 1510, + 1274, + 1554, + 396, + 1554 + ], + "score": 0.91, + "latex": "\\| \\mathbf { B } _ { i } ^ { k } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\| \\leq 2 \\sqrt { \\epsilon L _ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 820, + 306, + 881, + 306, + 881, + 337, + 820, + 337 + ], + "score": 0.91, + "latex": "\\mathbf { x } ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 686, + 698, + 902, + 698, + 902, + 734, + 686, + 734 + ], + "score": 0.91, + "latex": "\\| \\nabla F ( \\mathbf { x } ^ { k + 1 } ) \\| \\leq 3 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 545, + 1060, + 614, + 1060, + 614, + 1086, + 545, + 1086 + ], + "score": 0.9, + "latex": "k = 0" + }, + { + "category_id": 13, + "poly": [ + 657, + 733, + 850, + 733, + 850, + 768, + 657, + 768 + ], + "score": 0.9, + "latex": "\\| \\nabla _ { k } ^ { 2 } \\| \\le \\sqrt { \\epsilon L _ { 2 } } / 3" + }, + { + "category_id": 13, + "poly": [ + 1054, + 227, + 1400, + 227, + 1400, + 265, + 1054, + 265 + ], + "score": 0.9, + "latex": "4 \\sqrt { L _ { 2 } } \\cdot ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { * } ) ) / \\epsilon ^ { 1 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 702, + 1371, + 771, + 1371, + 771, + 1397, + 702, + 1397 + ], + "score": 0.9, + "latex": "k = 0" + }, + { + "category_id": 13, + "poly": [ + 374, + 838, + 435, + 838, + 435, + 870, + 374, + 870 + ], + "score": 0.9, + "latex": "\\mathbf { x } ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 458, + 1165, + 527, + 1165, + 527, + 1195, + 458, + 1195 + ], + "score": 0.9, + "latex": "k \\geq 1" + }, + { + "category_id": 14, + "poly": [ + 489, + 1212, + 1207, + 1212, + 1207, + 1259, + 489, + 1259 + ], + "score": 0.9, + "latex": "\\mathbf { B } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\big ( \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k - 1 } ) \\big ) ." + }, + { + "category_id": 14, + "poly": [ + 564, + 1996, + 1105, + 1996, + 1105, + 2040, + 564, + 2040 + ], + "score": 0.9, + "latex": "P r \\{ \\| \\mathbf { H } ^ { k } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) \\| \\leq \\sqrt { \\epsilon L _ { 2 } } \\} \\geq 1 - \\delta / K _ { 0 } ." + }, + { + "category_id": 13, + "poly": [ + 1322, + 439, + 1405, + 439, + 1405, + 473, + 1322, + 473 + ], + "score": 0.89, + "latex": "\\| \\mathbf { h } \\| \\leq" + }, + { + "category_id": 14, + "poly": [ + 359, + 779, + 1309, + 779, + 1309, + 825, + 359, + 825 + ], + "score": 0.89, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { k + 1 } ) \\approx \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } ) - L _ { 2 } \\cdot \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx \\mathbf { H } ^ { k } - \\sqrt { \\epsilon L _ { 2 } } / 3 \\mathbf { I } - L _ { 2 } \\Vert \\mathbf { h } ^ { k } \\Vert \\mathbf { I } \\approx - \\sqrt { 1 2 \\epsilon L _ { 2 } } \\mathbf { I } ." + }, + { + "category_id": 13, + "poly": [ + 579, + 1568, + 619, + 1568, + 619, + 1598, + 579, + 1598 + ], + "score": 0.89, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1031, + 308, + 1089, + 308, + 1089, + 342, + 1031, + 342 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 14, + "poly": [ + 427, + 521, + 1270, + 521, + 1270, + 564, + 427, + 564 + ], + "score": 0.88, + "latex": "\\| \\nabla F ( { \\mathbf x } ^ { k } ) + \\nabla ^ { 2 } F ( { \\mathbf x } ^ { k } ) { \\mathbf h } ^ { k } \\| \\leq \\| { \\mathbf g } ^ { k } + { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } \\| + \\| \\nabla _ { k } \\| + \\| \\nabla _ { k } ^ { 2 } \\cdot { \\mathbf h } ^ { k } \\| \\leq 2 . 5 \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 578, + 1164, + 666, + 1164, + 666, + 1198, + 578, + 1198 + ], + "score": 0.87, + "latex": "i \\in [ s _ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 949, + 1272, + 967, + 1272, + 967, + 1298, + 949, + 1298 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 484, + 842, + 526, + 842, + 526, + 870, + 484, + 870 + ], + "score": 0.78, + "latex": "1 2 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1273, + 1030, + 1273, + 1030, + 1298, + 1018, + 1298 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 638.0, + 934.0, + 638.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 431.0, + 496.0, + 431.0, + 496.0, + 480.0, + 292.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 431.0, + 698.0, + 431.0, + 698.0, + 480.0, + 645.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 431.0, + 1321.0, + 431.0, + 1321.0, + 480.0, + 901.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 467.0, + 461.0, + 467.0, + 461.0, + 515.0, + 385.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 373.0, + 834.0, + 373.0, + 879.0, + 293.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 834.0, + 483.0, + 834.0, + 483.0, + 879.0, + 436.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 834.0, + 965.0, + 834.0, + 965.0, + 879.0, + 527.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 834.0, + 1408.0, + 834.0, + 1408.0, + 879.0, + 1079.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 819.0, + 870.0, + 819.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 878.0, + 1401.0, + 878.0, + 1401.0, + 897.0, + 1377.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 222.0, + 661.0, + 222.0, + 661.0, + 268.0, + 290.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 222.0, + 1053.0, + 222.0, + 1053.0, + 268.0, + 861.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 222.0, + 1407.0, + 222.0, + 1407.0, + 268.0, + 1401.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 256.0, + 417.0, + 256.0, + 417.0, + 298.0, + 292.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 995.0, + 923.0, + 995.0, + 923.0, + 1031.0, + 296.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 995.0, + 1405.0, + 995.0, + 1405.0, + 1031.0, + 1064.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 1102.0, + 1027.0, + 1102.0, + 1064.0, + 294.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1723.0, + 1184.0, + 1723.0, + 1184.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1723.0, + 1376.0, + 1723.0, + 1376.0, + 1767.0, + 1266.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 574.0, + 833.0, + 574.0, + 833.0, + 610.0, + 297.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 609.0, + 1461.0, + 609.0, + 1499.0, + 294.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1461.0, + 788.0, + 1461.0, + 788.0, + 1499.0, + 680.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1949.0, + 561.0, + 1949.0, + 561.0, + 1989.0, + 295.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 457.0, + 1157.0, + 457.0, + 1204.0, + 293.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1157.0, + 577.0, + 1157.0, + 577.0, + 1204.0, + 528.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1367.0, + 701.0, + 1367.0, + 701.0, + 1403.0, + 296.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1367.0, + 879.0, + 1367.0, + 879.0, + 1403.0, + 772.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 297.0, + 1263.0, + 297.0, + 1309.0, + 294.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1263.0, + 948.0, + 1263.0, + 948.0, + 1309.0, + 365.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1263.0, + 1017.0, + 1263.0, + 1017.0, + 1309.0, + 968.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1263.0, + 1045.0, + 1263.0, + 1045.0, + 1309.0, + 1031.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1566.0, + 578.0, + 1566.0, + 578.0, + 1605.0, + 295.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1566.0, + 728.0, + 1566.0, + 728.0, + 1605.0, + 620.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 299.0, + 562.0, + 299.0, + 562.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 299.0, + 819.0, + 299.0, + 819.0, + 347.0, + 756.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 299.0, + 1030.0, + 299.0, + 1030.0, + 347.0, + 882.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 299.0, + 1399.0, + 299.0, + 1399.0, + 347.0, + 1090.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 727.0, + 656.0, + 727.0, + 656.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 727.0, + 1363.0, + 727.0, + 1363.0, + 770.0, + 851.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1052.0, + 544.0, + 1052.0, + 544.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1052.0, + 664.0, + 1052.0, + 664.0, + 1099.0, + 615.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 697.0, + 685.0, + 697.0, + 685.0, + 737.0, + 296.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 697.0, + 913.0, + 697.0, + 913.0, + 737.0, + 903.0, + 737.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 539, + 1406, + 539, + 1406, + 633, + 297, + 633 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 516, + 992, + 1179, + 992, + 1179, + 1129, + 516, + 1129 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 524, + 1354, + 1170, + 1354, + 1170, + 1493, + 524, + 1493 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 295, + 1853, + 1406, + 1853, + 1406, + 1960, + 295, + 1960 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 680, + 1199, + 1015, + 1199, + 1015, + 1290, + 680, + 1290 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 660, + 1703, + 1035, + 1703, + 1035, + 1838, + 660, + 1838 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 293, + 308, + 1403, + 308, + 1403, + 375, + 293, + 375 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 725, + 1404, + 725, + 1404, + 791, + 294, + 791 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 630, + 1555, + 1070, + 1555, + 1070, + 1599, + 630, + 1599 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 297, + 1616, + 1401, + 1616, + 1401, + 1690, + 297, + 1690 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 334, + 389, + 1368, + 389, + 1368, + 476, + 334, + 476 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 514, + 794, + 1177, + 794, + 1177, + 835, + 514, + 835 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 765, + 890, + 930, + 890, + 930, + 931, + 765, + 931 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 296, + 1970, + 1403, + 1970, + 1403, + 2037, + 296, + 2037 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 944, + 651, + 944, + 651, + 977, + 297, + 977 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 298, + 1305, + 910, + 1305, + 910, + 1340, + 298, + 1340 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 299, + 490, + 1253, + 490, + 1253, + 528, + 299, + 528 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 299, + 841, + 926, + 841, + 926, + 874, + 299, + 874 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 859, + 73, + 859, + 106, + 297, + 106 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 295, + 1506, + 860, + 1506, + 860, + 1539, + 295, + 1539 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 299, + 669, + 637, + 669, + 637, + 701, + 299, + 701 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 1146, + 718, + 1146, + 718, + 1180, + 297, + 1180 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 288, + 225, + 1405, + 225, + 1405, + 297, + 288, + 297 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1093, + 1402, + 1093, + 1402, + 1125, + 1350, + 1125 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 14, + "poly": [ + 680, + 1194, + 1017, + 1194, + 1017, + 1292, + 680, + 1292 + ], + "score": 0.94, + "latex": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { a } _ { i } ^ { j } } { s _ { 1 } } ." + }, + { + "category_id": 14, + "poly": [ + 329, + 386, + 1368, + 386, + 1368, + 476, + 329, + 476 + ], + "score": 0.94, + "latex": "P r \\{ \\| \\mathbf H ^ { k } - \\nabla ^ { 2 } F ( \\mathbf x ^ { k } ) \\| \\geq t \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 2 } } 4 \\epsilon L _ { 2 } / s _ { 2 } ^ { 2 } } \\} \\leq d \\cdot \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 p _ { 2 } \\epsilon L _ { 2 } / s _ { 2 } } \\} ." + }, + { + "category_id": 13, + "poly": [ + 558, + 1852, + 907, + 1852, + 907, + 1925, + 558, + 1925 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { s _ { 1 } = \\operatorname* { m i n } \\{ n , \\sqrt { \\frac { n } { \\epsilon } \\cdot \\frac { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } { L _ { 2 } } } \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 967, + 1870, + 1328, + 1870, + 1328, + 1926, + 967, + 1926 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { p _ { 1 } = \\operatorname* { m a x } \\lbrace 1 , \\sqrt { n \\epsilon \\cdot \\frac { L _ { 2 } } { c L _ { 1 } ^ { 2 } \\log \\frac { K _ { 0 } } { \\delta } } } \\rbrace } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 925, + 491, + 1031, + 491, + 1031, + 527, + 925, + 527 + ], + "score": 0.93, + "latex": "p _ { 2 } = { \\sqrt { n } }" + }, + { + "category_id": 14, + "poly": [ + 518, + 990, + 1182, + 990, + 1182, + 1132, + 518, + 1132 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\| \\mathbf { a } _ { i } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) \\| + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad \\leq L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| + L _ { 1 } \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\qquad \\leq 2 L _ { 1 } \\sqrt { \\epsilon / L _ { 2 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 523, + 1350, + 1174, + 1350, + 1174, + 1494, + 523, + 1494 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 \\epsilon L _ { 1 } ^ { 2 } } { L _ { 2 } s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon L _ { 1 } ^ { 2 } p _ { 1 } / \\left( s _ { 1 } L _ { 2 } \\right) } \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 831, + 1923, + 996, + 1923, + 996, + 1959, + 831, + 1959 + ], + "score": 0.93, + "latex": "\\mathbf { g } ^ { k } = \\nabla F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 356, + 1508, + 445, + 1508, + 445, + 1541, + 356, + 1541 + ], + "score": 0.93, + "latex": "t = \\epsilon / 6" + }, + { + "category_id": 14, + "poly": [ + 660, + 1700, + 1037, + 1700, + 1037, + 1839, + 660, + 1839 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\underset { p _ { 1 } \\geq 1 , s _ { 1 } \\geq 1 } { \\operatorname* { m i n } } } & { ( n + s _ { 1 } ( p _ { 1 } - 1 ) ) / p _ { 1 } } \\\\ { s . t . } & { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\leq \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1165, + 540, + 1322, + 540, + 1322, + 573, + 1165, + 573 + ], + "score": 0.92, + "latex": "s _ { 2 } ^ { \\prime } \\leq p _ { 2 } \\times s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 299, + 839, + 357, + 839, + 357, + 875, + 299, + 875 + ], + "score": 0.92, + "latex": "\\{ \\mathbf { a } _ { i } ^ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 834, + 728, + 968, + 728, + 968, + 759, + 834, + 759 + ], + "score": 0.92, + "latex": "0 \\leq k < q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1612, + 612, + 1612, + 612, + 1662, + 404, + 1662 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { c L _ { 1 } ^ { 2 } } { L _ { 2 } } \\log \\frac { K _ { 0 } } { \\delta } \\ \\leq \\ \\frac { \\epsilon s _ { 1 } } { p _ { 1 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 628, + 1554, + 1069, + 1554, + 1069, + 1598, + 628, + 1598 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { P r \\{ \\| \\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) \\| \\ge \\epsilon / 6 \\} \\le \\delta / K _ { 0 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 720, + 1307, + 801, + 1307, + 801, + 1339, + 720, + 1339 + ], + "score": 0.91, + "latex": "k \\leq p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 344, + 758, + 431, + 758, + 431, + 792, + 344, + 792 + ], + "score": 0.91, + "latex": "i \\in [ s _ { 1 } ]" + }, + { + "category_id": 14, + "poly": [ + 766, + 888, + 932, + 888, + 932, + 930, + 766, + 930 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ \\mathbf { a } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 ." + }, + { + "category_id": 13, + "poly": [ + 1137, + 309, + 1175, + 309, + 1175, + 345, + 1137, + 345 + ], + "score": 0.91, + "latex": "\\mathbf { B } _ { i } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 262, + 445, + 262, + 445, + 298, + 297, + 298 + ], + "score": 0.9, + "latex": "L _ { 1 } / ( 2 \\sqrt { \\epsilon L _ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 397, + 943, + 429, + 943, + 429, + 979, + 397, + 979 + ], + "score": 0.9, + "latex": "\\mathbf { a } _ { i } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 410, + 573, + 553, + 573, + 553, + 602, + 410, + 602 + ], + "score": 0.9, + "latex": "n \\leq p _ { 2 } \\times s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 491, + 585, + 491, + 585, + 525, + 469, + 525 + ], + "score": 0.89, + "latex": "t = \\sqrt { \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 413, + 228, + 534, + 228, + 534, + 263, + 413, + 263 + ], + "score": 0.89, + "latex": "t = \\sqrt { \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1509, + 684, + 1509, + 684, + 1536, + 577, + 1536 + ], + "score": 0.89, + "latex": "c = 1 1 5 2" + }, + { + "category_id": 13, + "poly": [ + 579, + 1145, + 611, + 1145, + 611, + 1179, + 579, + 1179 + ], + "score": 0.89, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 728, + 1404, + 728, + 1404, + 758, + 1333, + 758 + ], + "score": 0.88, + "latex": "k \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 596, + 490, + 868, + 490, + 868, + 528, + 596, + 528 + ], + "score": 0.88, + "latex": "s _ { 2 } = 3 2 \\sqrt { n } \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 14, + "poly": [ + 518, + 788, + 1177, + 788, + 1177, + 834, + 518, + 834 + ], + "score": 0.88, + "latex": "\\mathbf { a } _ { i } ^ { k } \\overset { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - ( \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) ) ." + }, + { + "category_id": 13, + "poly": [ + 504, + 1932, + 586, + 1932, + 586, + 1956, + 504, + 1956 + ], + "score": 0.87, + "latex": "s _ { 1 } = n" + }, + { + "category_id": 13, + "poly": [ + 568, + 603, + 609, + 603, + 609, + 632, + 568, + 632 + ], + "score": 0.87, + "latex": "2 s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1977, + 1354, + 1977, + 1354, + 2003, + 1327, + 2003 + ], + "score": 0.84, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 2008, + 326, + 2008, + 326, + 2035, + 297, + 2035 + ], + "score": 0.84, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 843, + 859, + 843, + 859, + 869, + 840, + 869 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1339, + 233, + 1404, + 233, + 1404, + 264, + 1339, + 264 + ], + "score": 0.83, + "latex": "p _ { 2 } =" + }, + { + "category_id": 13, + "poly": [ + 907, + 227, + 1276, + 227, + 1276, + 265, + 907, + 265 + ], + "score": 0.8, + "latex": "s _ { 2 } = 3 2 L _ { 1 } / ( \\sqrt { \\epsilon L _ { 2 } } ) \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 910, + 844, + 923, + 844, + 923, + 868, + 910, + 868 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 547, + 228, + 895, + 228, + 895, + 265, + 547, + 265 + ], + "score": 0.52, + "latex": "s _ { 2 } ^ { \\prime } = 1 6 L _ { 1 } ^ { 2 } / ( \\epsilon L _ { 2 } ) \\log ( d K _ { 0 } / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 863, + 311, + 886, + 311, + 886, + 338, + 863, + 338 + ], + "score": 0.42, + "latex": "\\mathrm { I I }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 664.0, + 640.0, + 664.0, + 640.0, + 706.0, + 293.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 536.0, + 1164.0, + 536.0, + 1164.0, + 578.0, + 292.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 536.0, + 1407.0, + 536.0, + 1407.0, + 578.0, + 1323.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 409.0, + 569.0, + 409.0, + 607.0, + 295.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 569.0, + 1407.0, + 569.0, + 1407.0, + 607.0, + 554.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 594.0, + 567.0, + 594.0, + 567.0, + 638.0, + 293.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 594.0, + 623.0, + 594.0, + 623.0, + 638.0, + 610.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 603.0, + 1402.0, + 603.0, + 1402.0, + 630.0, + 1374.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1860.0, + 503.0, + 1860.0, + 503.0, + 1967.0, + 291.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1860.0, + 1412.0, + 1860.0, + 1412.0, + 1967.0, + 1329.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 309.0, + 862.0, + 309.0, + 862.0, + 345.0, + 296.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 309.0, + 1136.0, + 309.0, + 1136.0, + 345.0, + 887.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 309.0, + 1404.0, + 309.0, + 1404.0, + 345.0, + 1176.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 340.0, + 851.0, + 340.0, + 851.0, + 377.0, + 295.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 723.0, + 833.0, + 723.0, + 833.0, + 763.0, + 293.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 723.0, + 1332.0, + 723.0, + 1332.0, + 763.0, + 969.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 751.0, + 343.0, + 751.0, + 343.0, + 797.0, + 292.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 751.0, + 438.0, + 751.0, + 438.0, + 797.0, + 432.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1621.0, + 403.0, + 1621.0, + 403.0, + 1654.0, + 291.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1608.0, + 1406.0, + 1608.0, + 1406.0, + 1665.0, + 613.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1653.0, + 1033.0, + 1653.0, + 1033.0, + 1695.0, + 294.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.75, + 1605.0, + 496.75, + 1605.0, + 496.75, + 1660.5, + 399.75, + 1660.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1638.0, + 440.0, + 1638.0, + 440.0, + 1663.0, + 412.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1326.0, + 1971.0, + 1326.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 1355.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 2001.0, + 296.0, + 2001.0, + 296.0, + 2037.0, + 291.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 2001.0, + 647.0, + 2001.0, + 647.0, + 2037.0, + 327.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 940.0, + 396.0, + 940.0, + 396.0, + 981.0, + 295.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 940.0, + 652.0, + 940.0, + 652.0, + 981.0, + 430.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1300.0, + 719.0, + 1300.0, + 719.0, + 1346.0, + 293.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1300.0, + 911.0, + 1300.0, + 911.0, + 1346.0, + 802.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 468.0, + 487.0, + 468.0, + 532.0, + 294.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 487.0, + 595.0, + 487.0, + 595.0, + 532.0, + 586.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 487.0, + 924.0, + 487.0, + 924.0, + 532.0, + 869.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 487.0, + 1256.0, + 487.0, + 1256.0, + 532.0, + 1032.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 837.0, + 839.0, + 837.0, + 839.0, + 880.0, + 358.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 837.0, + 909.0, + 837.0, + 909.0, + 880.0, + 860.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 837.0, + 929.0, + 837.0, + 929.0, + 880.0, + 924.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 355.0, + 1506.0, + 355.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1506.0, + 576.0, + 1506.0, + 576.0, + 1541.0, + 446.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1506.0, + 860.0, + 1506.0, + 860.0, + 1541.0, + 685.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 578.0, + 1143.0, + 578.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1143.0, + 720.0, + 1143.0, + 720.0, + 1183.0, + 612.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 412.0, + 221.0, + 412.0, + 270.0, + 291.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 221.0, + 546.0, + 221.0, + 546.0, + 270.0, + 535.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 221.0, + 906.0, + 221.0, + 906.0, + 270.0, + 896.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 221.0, + 1338.0, + 221.0, + 1338.0, + 270.0, + 1277.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 258.0, + 460.0, + 258.0, + 460.0, + 301.0, + 446.0, + 301.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1774, + 1406, + 1774, + 1406, + 1885, + 296, + 1885 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 1489, + 1409, + 1489, + 1409, + 1600, + 296, + 1600 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 465, + 696, + 1238, + 696, + 1238, + 1019, + 465, + 1019 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 557, + 1346, + 1137, + 1346, + 1137, + 1482, + 557, + 1482 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 296, + 1027, + 1404, + 1027, + 1404, + 1122, + 296, + 1122 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 513, + 564, + 1182, + 564, + 1182, + 650, + 513, + 650 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 286, + 1405, + 286, + 1405, + 351, + 298, + 351 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 517, + 353, + 1177, + 353, + 1177, + 439, + 517, + 439 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1703, + 1404, + 1703, + 1404, + 1770, + 298, + 1770 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 680, + 1212, + 1017, + 1212, + 1017, + 1302, + 680, + 1302 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 491, + 1892, + 1208, + 1892, + 1208, + 1959, + 491, + 1959 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 294, + 1969, + 1403, + 1969, + 1403, + 2037, + 294, + 2037 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 711, + 1128, + 988, + 1128, + 988, + 1168, + 711, + 1168 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 297, + 1639, + 849, + 1639, + 849, + 1676, + 297, + 1676 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 764, + 483, + 932, + 483, + 932, + 522, + 764, + 522 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1308, + 884, + 1308, + 884, + 1341, + 298, + 1341 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 300, + 443, + 927, + 443, + 927, + 477, + 300, + 477 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 859, + 73, + 859, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 297, + 524, + 652, + 524, + 652, + 559, + 297, + 559 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 299, + 654, + 1141, + 654, + 1141, + 693, + 299, + 693 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 1171, + 718, + 1171, + 718, + 1203, + 297, + 1203 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1910, + 1401, + 1910, + 1401, + 1940, + 1351, + 1940 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 634, + 229, + 634, + 261, + 299, + 261 + ], + "score": 0.837 + }, + { + "category_id": 14, + "poly": [ + 679, + 1207, + 1019, + 1207, + 1019, + 1305, + 679, + 1305 + ], + "score": 0.94, + "latex": "\\mathbf { g } ^ { k } - \\nabla F ( \\mathbf { x } ^ { k } ) = \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { \\mathbf { b } _ { i } ^ { j } } { s _ { 1 } } ." + }, + { + "category_id": 13, + "poly": [ + 485, + 1491, + 580, + 1491, + 580, + 1525, + 485, + 1525 + ], + "score": 0.92, + "latex": "t = \\epsilon / 6" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1491, + 1403, + 1491, + 1403, + 1525, + 1246, + 1525 + ], + "score": 0.92, + "latex": "s _ { 1 } p _ { 1 } \\simeq \\mathcal { O } ( n )" + }, + { + "category_id": 13, + "poly": [ + 965, + 1706, + 1080, + 1706, + 1080, + 1741, + 965, + 1741 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( 1 / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 936, + 1806, + 1042, + 1806, + 1042, + 1846, + 936, + 1846 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 383, + 1310, + 464, + 1310, + 464, + 1340, + 383, + 1340 + ], + "score": 0.92, + "latex": "k \\leq p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 835, + 288, + 968, + 288, + 968, + 319, + 835, + 319 + ], + "score": 0.92, + "latex": "0 \\leq k < q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 442, + 359, + 442, + 359, + 479, + 298, + 479 + ], + "score": 0.91, + "latex": "\\{ \\mathbf { b } _ { i } ^ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 689, + 1530, + 905, + 1530, + 905, + 1571, + 689, + 1571 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { s _ { 1 } = n ^ { 0 . 7 5 } c \\log { \\frac { \\dot { K _ { 0 } } } { \\delta } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 491, + 1888, + 1206, + 1888, + 1206, + 1961, + 491, + 1961 + ], + "score": 0.91, + "latex": "\\langle \\mathbf { g } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\tilde { \\mathbf { h } } ^ { k } , \\tilde { \\mathbf { h } } ^ { k } \\rangle \\leq \\langle \\mathbf { g } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { 1 } { 2 } \\langle \\mathbf { H } ^ { k } \\mathbf { h } ^ { k } , \\mathbf { h } ^ { k } \\rangle + \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } ," + }, + { + "category_id": 13, + "poly": [ + 866, + 1488, + 1030, + 1488, + 1030, + 1532, + 866, + 1532 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\frac { s _ { 1 } } { p _ { 1 } ^ { 3 } } \\geq c \\log \\frac { K _ { 0 } } { \\delta } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 556, + 1342, + 1140, + 1342, + 1140, + 1483, + 556, + 1483 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\quad P r \\{ | | \\mathbf { g } ^ { k } - \\nabla F ( { \\mathbf { x } } ^ { k } ) | | \\geq t \\} } \\\\ & { \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { \\sum _ { j = 1 } ^ { k } \\sum _ { i = 1 } ^ { s _ { 1 } } \\frac { 4 p _ { 1 } ^ { 2 } \\epsilon ^ { 2 } } { s _ { 1 } ^ { 2 } } } \\} \\leq \\exp \\{ - \\frac { t ^ { 2 } / 8 } { 4 \\epsilon ^ { 2 } p _ { 1 } ^ { 3 } / s _ { 1 } } \\} . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 765, + 481, + 933, + 481, + 933, + 522, + 765, + 522 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ \\mathbf { b } _ { i } ^ { k } | \\mathbf { x } ^ { k } ] = 0 ." + }, + { + "category_id": 13, + "poly": [ + 1180, + 1969, + 1397, + 1969, + 1397, + 2006, + 1180, + 2006 + ], + "score": 0.91, + "latex": "K = 4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 344, + 318, + 431, + 318, + 431, + 352, + 344, + 352 + ], + "score": 0.91, + "latex": "i \\in [ s _ { 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 767, + 1843, + 872, + 1843, + 872, + 1884, + 767, + 1884 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 512, + 1533, + 636, + 1533, + 636, + 1567, + 512, + 1567 + ], + "score": 0.9, + "latex": "p _ { 1 } = n ^ { 0 . 2 5 }" + }, + { + "category_id": 14, + "poly": [ + 711, + 1126, + 990, + 1126, + 990, + 1168, + 711, + 1168 + ], + "score": 0.9, + "latex": "\\| \\mathbf { b } _ { i } ^ { k } \\| \\leq 2 L _ { 2 } k r ^ { 2 } \\leq 2 p _ { 1 } \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 397, + 524, + 432, + 524, + 432, + 561, + 397, + 561 + ], + "score": 0.9, + "latex": "\\mathbf { b } _ { i } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 449, + 1058, + 654, + 1058, + 654, + 1090, + 449, + 1090 + ], + "score": 0.89, + "latex": "\\| \\mathbf { x } ^ { k - 1 } - \\bar { \\tilde { \\mathbf { x } } } \\| \\leq k r" + }, + { + "category_id": 13, + "poly": [ + 579, + 1170, + 611, + 1170, + 611, + 1203, + 579, + 1203 + ], + "score": 0.89, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1059, + 397, + 1059, + 397, + 1091, + 297, + 1091 + ], + "score": 0.89, + "latex": "\\tilde { \\mathbf { x } } \\| \\leq k r" + }, + { + "category_id": 13, + "poly": [ + 348, + 1807, + 381, + 1807, + 381, + 1842, + 348, + 1842 + ], + "score": 0.88, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1060, + 1403, + 1060, + 1403, + 1093, + 1261, + 1093 + ], + "score": 0.88, + "latex": "\\| \\nabla F ( \\mathbf { x } ^ { k } ) -" + }, + { + "category_id": 13, + "poly": [ + 434, + 1807, + 475, + 1807, + 475, + 1838, + 434, + 1838 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 288, + 1404, + 288, + 1404, + 318, + 1333, + 318 + ], + "score": 0.88, + "latex": "k \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 799, + 1707, + 856, + 1707, + 856, + 1741, + 799, + 1741 + ], + "score": 0.88, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 1306, + 1806, + 1339, + 1806, + 1339, + 1837, + 1306, + 1837 + ], + "score": 0.87, + "latex": "\\tilde { \\mathbf { h } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1968, + 1114, + 1968, + 1114, + 2008, + 970, + 2008 + ], + "score": 0.87, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 591, + 1569, + 632, + 1569, + 632, + 1596, + 591, + 1596 + ], + "score": 0.87, + "latex": "2 s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1492, + 748, + 1492, + 748, + 1520, + 634, + 1520 + ], + "score": 0.86, + "latex": "c = 1 1 5 2" + }, + { + "category_id": 13, + "poly": [ + 373, + 1970, + 409, + 1970, + 409, + 2001, + 373, + 2001 + ], + "score": 0.86, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1089, + 821, + 1089, + 821, + 1123, + 296, + 1123 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { \\nabla F ( { \\mathbf x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { { \\mathbf x } } ) ( \\dot { \\mathbf x } ^ { k } - { \\mathbf x } ^ { k - 1 } ) \\| \\leq L _ { 2 } k r ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1026, + 1405, + 1026, + 1405, + 1060, + 1327, + 1060 + ], + "score": 0.85, + "latex": "\\| \\mathbf { x } ^ { k } - " + }, + { + "category_id": 13, + "poly": [ + 468, + 655, + 1016, + 655, + 1016, + 693, + 468, + 693 + ], + "score": 0.84, + "latex": "| \\nabla f _ { i } ( { \\mathbf { x } } ^ { k } ) - \\nabla f _ { i } ( { \\mathbf { x } } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { { \\mathbf { x } } } ) ( { \\mathbf { x } } ^ { k } - { \\mathbf { x } } ^ { k - 1 } ) | |" + }, + { + "category_id": 14, + "poly": [ + 514, + 347, + 1183, + 347, + 1183, + 442, + 514, + 442 + ], + "score": 0.83, + "latex": "\\begin{array} { r l } { \\mathbf { b } _ { i } ^ { k } \\stackrel { \\mathrm { d e f } } { = } \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) } & { } \\\\ { - \\left[ \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\right] . } & { } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 843, + 446, + 862, + 446, + 862, + 472, + 843, + 472 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 14, + "poly": [ + 510, + 562, + 1187, + 562, + 1187, + 652, + 510, + 652 + ], + "score": 0.81, + "latex": "\\begin{array} { r l } & { \\| \\mathbf { b } _ { i } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\tilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 854, + 1972, + 956, + 1972, + 956, + 2005, + 854, + 2005 + ], + "score": 0.8, + "latex": "\\zeta = 1 / 3" + }, + { + "category_id": 13, + "poly": [ + 739, + 1066, + 756, + 1066, + 756, + 1086, + 739, + 1086 + ], + "score": 0.76, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 911, + 447, + 926, + 447, + 926, + 472, + 911, + 472 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 884, + 2005, + 926, + 2005, + 926, + 2036, + 884, + 2036 + ], + "score": 0.72, + "latex": "2 / 3" + }, + { + "category_id": 14, + "poly": [ + 444, + 564, + 1245, + 564, + 1245, + 1025, + 444, + 1025 + ], + "score": 0.67, + "latex": "\\begin{array} { r l } & { \\quad \\| \\mathbf { b } _ { \\star } ^ { k } \\| \\leq \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { 1 } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| } \\\\ & { \\qquad + \\| \\nabla F ( \\mathbf { x } ^ { k } ) - \\nabla F ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } F ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| . } \\\\ & { \\quad + \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { \\widetilde { \\mathbf { x } } } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } , } \\\\ & { \\| \\nabla f _ { i } ( \\mathbf { x } ^ { k } ) - \\nabla f _ { i } ( \\mathbf { x } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { j } ( \\widetilde { \\mathbf { x } } ) ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) \\| \\arcsin ^ { k } } \\\\ & { \\quad = \\| \\int _ { 0 } ^ { 1 } \\left[ \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k - 1 } + t ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) ) - \\nabla ^ { 2 } f _ { i } ( \\widetilde { \\mathbf { x } } ) \\right] ( \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } ) d t \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } L _ { 2 } \\bigg \\| \\mathbf { x } ^ { k } + ( 1 - t ) \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\bigg \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & { \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\| + ( 1 - t ) \\| \\mathbf { x } ^ { k - 1 } - \\widetilde { \\mathbf { x } } \\big \\| d t \\cdot \\| \\mathbf { x } ^ { k } - \\mathbf { x } ^ { k - 1 } \\| } \\\\ & \\quad \\leq \\int _ { 0 } ^ { 1 } \\big ( L \\| \\mathbf { x } ^ { k } - \\widetilde { \\mathbf { x } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 648, + 1710, + 701, + 1710, + 701, + 1739, + 648, + 1739 + ], + "score": 0.65, + "latex": "\\mathbf { W E A K }" + }, + { + "category_id": 13, + "poly": [ + 355, + 1738, + 400, + 1738, + 400, + 1772, + 355, + 1772 + ], + "score": 0.52, + "latex": "2 / 3" + }, + { + "category_id": 13, + "poly": [ + 661, + 1777, + 695, + 1777, + 695, + 1807, + 661, + 1807 + ], + "score": 0.33, + "latex": "( ~ )" + }, + { + "category_id": 13, + "poly": [ + 444, + 2005, + 498, + 2005, + 498, + 2035, + 444, + 2035 + ], + "score": 0.3, + "latex": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }" + }, + { + "category_id": 14, + "poly": [ + 468, + 697, + 1027, + 697, + 1027, + 737, + 468, + 737 + ], + "score": 0.27, + "latex": "\\| \\nabla f _ { i } ( { \\mathbf { x } } ^ { k } ) - \\nabla f _ { i } ( { \\mathbf { x } } ^ { k - 1 } ) - \\nabla ^ { 2 } f _ { i } ( \\tilde { { \\mathbf { x } } } ) ( { \\mathbf { x } } ^ { k } - { \\mathbf { x } } ^ { k - 1 } ) \\|" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 852.0, + 1634.0, + 852.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 638.0, + 224.0, + 638.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1770.0, + 660.0, + 1770.0, + 660.0, + 1812.0, + 294.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1770.0, + 1408.0, + 1770.0, + 1408.0, + 1812.0, + 696.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1800.0, + 347.0, + 1800.0, + 347.0, + 1855.0, + 291.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1800.0, + 433.0, + 1800.0, + 433.0, + 1855.0, + 382.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1800.0, + 935.0, + 1800.0, + 935.0, + 1855.0, + 476.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1800.0, + 1305.0, + 1800.0, + 1305.0, + 1855.0, + 1043.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1800.0, + 1409.0, + 1800.0, + 1409.0, + 1855.0, + 1340.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 766.0, + 1843.0, + 766.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1843.0, + 885.0, + 1843.0, + 885.0, + 1889.0, + 873.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1480.0, + 484.0, + 1480.0, + 484.0, + 1530.0, + 297.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1480.0, + 633.0, + 1480.0, + 633.0, + 1530.0, + 581.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1480.0, + 865.0, + 1480.0, + 865.0, + 1530.0, + 749.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1480.0, + 1245.0, + 1480.0, + 1245.0, + 1530.0, + 1031.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1480.0, + 1409.0, + 1480.0, + 1409.0, + 1530.0, + 1404.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1505.0, + 913.0, + 1505.0, + 913.0, + 1563.0, + 906.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1518.0, + 511.0, + 1518.0, + 511.0, + 1579.0, + 289.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1518.0, + 688.0, + 1518.0, + 688.0, + 1579.0, + 637.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1518.0, + 1406.0, + 1518.0, + 1406.0, + 1579.0, + 906.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 590.0, + 1564.0, + 590.0, + 1601.0, + 295.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1564.0, + 644.0, + 1564.0, + 644.0, + 1601.0, + 633.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1025.0, + 1326.0, + 1025.0, + 1326.0, + 1061.0, + 293.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1051.0, + 296.0, + 1051.0, + 296.0, + 1096.0, + 290.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1051.0, + 448.0, + 1051.0, + 448.0, + 1096.0, + 398.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1051.0, + 738.0, + 1051.0, + 738.0, + 1096.0, + 655.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1051.0, + 1260.0, + 1051.0, + 1260.0, + 1096.0, + 757.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1084.0, + 1022.0, + 1084.0, + 1022.0, + 1126.0, + 822.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 281.0, + 834.0, + 281.0, + 834.0, + 324.0, + 293.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 281.0, + 1332.0, + 281.0, + 1332.0, + 324.0, + 969.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 312.0, + 343.0, + 312.0, + 343.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 312.0, + 438.0, + 312.0, + 438.0, + 357.0, + 432.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1704.0, + 647.0, + 1704.0, + 647.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1704.0, + 798.0, + 1704.0, + 798.0, + 1744.0, + 702.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1704.0, + 964.0, + 1704.0, + 964.0, + 1744.0, + 857.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1704.0, + 1406.0, + 1704.0, + 1406.0, + 1744.0, + 1081.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1738.0, + 354.0, + 1738.0, + 354.0, + 1773.0, + 295.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1738.0, + 774.0, + 1738.0, + 774.0, + 1773.0, + 401.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1964.0, + 372.0, + 1964.0, + 372.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1964.0, + 853.0, + 1964.0, + 853.0, + 2010.0, + 410.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1964.0, + 969.0, + 1964.0, + 969.0, + 2010.0, + 957.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1964.0, + 1179.0, + 1964.0, + 1179.0, + 2010.0, + 1115.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1964.0, + 1408.0, + 1964.0, + 1408.0, + 2010.0, + 1398.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1998.0, + 443.0, + 1998.0, + 443.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1998.0, + 883.0, + 1998.0, + 883.0, + 2038.0, + 499.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1998.0, + 939.0, + 1998.0, + 939.0, + 2038.0, + 927.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 382.0, + 1304.0, + 382.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1304.0, + 884.0, + 1304.0, + 884.0, + 1345.0, + 465.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 439.0, + 842.0, + 439.0, + 842.0, + 483.0, + 360.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 439.0, + 910.0, + 439.0, + 910.0, + 483.0, + 863.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 439.0, + 932.0, + 439.0, + 932.0, + 483.0, + 927.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 520.0, + 396.0, + 520.0, + 396.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 520.0, + 654.0, + 520.0, + 654.0, + 563.0, + 433.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 648.0, + 443.0, + 648.0, + 443.0, + 700.0, + 293.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1167.0, + 578.0, + 1167.0, + 578.0, + 1207.0, + 295.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1167.0, + 720.0, + 1167.0, + 720.0, + 1207.0, + 612.0, + 1207.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 444, + 1407, + 444, + 1407, + 574, + 297, + 574 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1925, + 1405, + 1925, + 1405, + 2037, + 297, + 2037 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 532, + 284, + 1167, + 284, + 1167, + 429, + 532, + 429 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 731, + 1310, + 966, + 1310, + 966, + 1403, + 731, + 1403 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 772, + 1662, + 926, + 1662, + 926, + 1736, + 772, + 1736 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1420, + 1403, + 1420, + 1403, + 1486, + 298, + 1486 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 761, + 1504, + 936, + 1504, + 936, + 1580, + 761, + 1580 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 299, + 586, + 1403, + 586, + 1403, + 667, + 299, + 667 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 558, + 683, + 1140, + 683, + 1140, + 756, + 558, + 756 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1596, + 1408, + 1596, + 1408, + 1658, + 298, + 1658 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 296, + 1850, + 1404, + 1850, + 1404, + 1918, + 296, + 1918 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1745, + 1407, + 1745, + 1407, + 1813, + 297, + 1813 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 491, + 1111, + 1211, + 1111, + 1211, + 1197, + 491, + 1197 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1043, + 1406, + 1043, + 1406, + 1107, + 296, + 1107 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 936, + 820, + 936, + 820, + 970, + 298, + 970 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 420, + 849, + 1277, + 849, + 1277, + 929, + 420, + 929 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 295, + 794, + 1403, + 794, + 1403, + 833, + 295, + 833 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 225, + 940, + 225, + 940, + 266, + 296, + 266 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 467, + 985, + 1230, + 985, + 1230, + 1030, + 467, + 1030 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 859, + 73, + 859, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1524, + 1400, + 1524, + 1400, + 1556, + 1352, + 1556 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1351, + 338, + 1401, + 338, + 1401, + 370, + 1351, + 370 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1680, + 1400, + 1680, + 1400, + 1711, + 1352, + 1711 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1339, + 1400, + 1339, + 1400, + 1370, + 1352, + 1370 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1351, + 992, + 1400, + 992, + 1400, + 1024, + 1351, + 1024 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1138, + 1400, + 1138, + 1400, + 1169, + 1351, + 1169 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 704, + 1401, + 704, + 1401, + 735, + 1351, + 735 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1351, + 876, + 1401, + 876, + 1401, + 907, + 1351, + 907 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 296, + 1209, + 1402, + 1209, + 1402, + 1291, + 296, + 1291 + ], + "score": 0.838 + }, + { + "category_id": 14, + "poly": [ + 760, + 1501, + 938, + 1501, + 938, + 1580, + 760, + 1580 + ], + "score": 0.95, + "latex": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] \\leq \\frac { 7 \\sqrt \\epsilon } { \\sqrt { L _ { 2 } } } ." + }, + { + "category_id": 14, + "poly": [ + 490, + 1106, + 1209, + 1106, + 1209, + 1202, + 490, + 1202 + ], + "score": 0.94, + "latex": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } \\le \\frac { 4 ( F ( \\mathbf { x } ^ { 0 } ) - F ( \\mathbf { x } ^ { K + 1 } ) ) } { L _ { 2 } r ^ { 2 } K } + \\frac { 6 \\epsilon ^ { 1 . 5 } } { L _ { 2 } ^ { 1 . 5 } r ^ { 2 } } \\le \\frac { 4 \\Delta } { \\epsilon K } + \\frac { 6 \\sqrt { \\epsilon } } { \\sqrt { L _ { 2 } } } ," + }, + { + "category_id": 14, + "poly": [ + 770, + 1657, + 928, + 1657, + 928, + 1736, + 770, + 1736 + ], + "score": 0.94, + "latex": "\\lambda ^ { \\bar { k } } \\leq \\frac { 1 4 \\sqrt { \\epsilon } } { \\zeta \\sqrt { L _ { 2 } } } ." + }, + { + "category_id": 14, + "poly": [ + 731, + 1306, + 966, + 1306, + 966, + 1404, + 731, + 1404 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ \\lambda ^ { \\bar { k } } ] = \\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\lambda ^ { k } ," + }, + { + "category_id": 14, + "poly": [ + 530, + 282, + 1167, + 282, + 1167, + 433, + 530, + 433 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) + \\langle { \\mathbf g } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { 1 } { 2 } \\langle { \\mathbf H } ^ { k } { \\mathbf h } ^ { k } , { \\mathbf h } ^ { k } \\rangle + \\displaystyle \\frac { \\epsilon ^ { 1 . 5 } } { \\sqrt { L _ { 2 } } } } \\\\ { + \\displaystyle \\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| + \\displaystyle \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf h } ^ { k } \\| ^ { 2 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 703, + 2002, + 786, + 2002, + 786, + 2036, + 703, + 2036 + ], + "score": 0.93, + "latex": "( 1 - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 803, + 1957, + 1029, + 1957, + 1029, + 2006, + 803, + 2006 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\log ( 4 d / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1450, + 509, + 1450, + 509, + 1486, + 298, + 1486 + ], + "score": 0.93, + "latex": "K = 4 \\Delta \\sqrt { L _ { 2 } } / \\epsilon ^ { 1 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 647, + 1256, + 824, + 1256, + 824, + 1291, + 647, + 1291 + ], + "score": 0.93, + "latex": "\\{ 0 , \\ldots , K - 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 1141, + 586, + 1355, + 586, + 1355, + 626, + 1141, + 626 + ], + "score": 0.93, + "latex": "\\| \\tilde { \\mathbf { h } } ^ { k } \\| \\le r = \\sqrt { L _ { 2 } \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 1290, + 791, + 1396, + 791, + 1396, + 833, + 1290, + 833 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 2 K } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 558, + 680, + 1142, + 680, + 1142, + 759, + 558, + 759 + ], + "score": 0.92, + "latex": "\\frac { L _ { 2 } } { 6 } \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 3 } + \\| \\nabla _ { k } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| + \\frac { 1 } { 2 } \\| \\nabla _ { k } ^ { 2 } \\| \\| \\tilde { \\mathbf { h } } ^ { k } \\| ^ { 2 } \\leq \\frac { \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } ." + }, + { + "category_id": 13, + "poly": [ + 846, + 586, + 953, + 586, + 953, + 628, + 846, + 628 + ], + "score": 0.92, + "latex": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }" + }, + { + "category_id": 14, + "poly": [ + 422, + 850, + 1277, + 850, + 1277, + 929, + 422, + 929 + ], + "score": 0.92, + "latex": "F ( { \\mathbf x } ^ { k + 1 } ) \\le F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } \\| { \\mathbf h } ^ { k } \\| ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } = F ( { \\mathbf x } ^ { k } ) - \\frac { L _ { 2 } \\lambda ^ { k } r ^ { 2 } } { 4 } + \\frac { 3 \\epsilon ^ { 1 . 5 } } { 2 \\sqrt { L _ { 2 } } } ," + }, + { + "category_id": 13, + "poly": [ + 644, + 1045, + 713, + 1045, + 713, + 1072, + 644, + 1072 + ], + "score": 0.92, + "latex": "k = 0" + }, + { + "category_id": 13, + "poly": [ + 410, + 624, + 517, + 624, + 517, + 667, + 410, + 667 + ], + "score": 0.92, + "latex": "\\textstyle { \\left( { 1 - { \\frac { \\zeta } { 4 K } } } \\right) }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1884, + 684, + 1884, + 684, + 1919, + 542, + 1919 + ], + "score": 0.92, + "latex": "\\Theta ( \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 416, + 1750, + 514, + 1750, + 514, + 1783, + 416, + 1783 + ], + "score": 0.91, + "latex": "\\zeta = 1 / 3" + }, + { + "category_id": 13, + "poly": [ + 823, + 225, + 930, + 225, + 930, + 268, + 823, + 268 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { ( 1 - \\frac { \\zeta } { 4 K } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 757, + 1452, + 868, + 1452, + 868, + 1487, + 757, + 1487 + ], + "score": 0.91, + "latex": "\\left( 1 - \\zeta / 2 \\right)" + }, + { + "category_id": 13, + "poly": [ + 975, + 1853, + 1032, + 1853, + 1032, + 1887, + 975, + 1887 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 14, + "poly": [ + 467, + 985, + 1231, + 985, + 1231, + 1028, + 467, + 1028 + ], + "score": 0.9, + "latex": "0 = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| - r ) ( \\| \\mathbf h ^ { k } \\| + r ) = \\lambda ^ { k } ( \\| \\mathbf h ^ { k } \\| ^ { 2 } - r ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 769, + 1743, + 1008, + 1743, + 1008, + 1785, + 769, + 1785 + ], + "score": 0.9, + "latex": "2 / 3 , \\lambda ^ { \\bar { k } } \\leq 4 2 \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1075, + 407, + 1075, + 407, + 1108, + 296, + 1108 + ], + "score": 0.89, + "latex": "\\left( 1 - \\zeta / 2 \\right)" + }, + { + "category_id": 13, + "poly": [ + 297, + 1964, + 481, + 1964, + 481, + 2003, + 297, + 2003 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { l o g } ( 2 / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1853, + 1249, + 1853, + 1249, + 1887, + 1166, + 1887 + ], + "score": 0.89, + "latex": "( 1 - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 745, + 1045, + 821, + 1045, + 821, + 1073, + 745, + 1073 + ], + "score": 0.89, + "latex": "K - 1" + }, + { + "category_id": 13, + "poly": [ + 894, + 540, + 925, + 540, + 925, + 568, + 894, + 568 + ], + "score": 0.89, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 490, + 508, + 523, + 508, + 523, + 537, + 490, + 537 + ], + "score": 0.89, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 364, + 1596, + 397, + 1596, + 397, + 1626, + 364, + 1626 + ], + "score": 0.88, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 403, + 508, + 438, + 508, + 438, + 538, + 403, + 538 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1629, + 361, + 1629, + 361, + 1661, + 296, + 1661 + ], + "score": 0.88, + "latex": "1 - \\zeta" + }, + { + "category_id": 13, + "poly": [ + 826, + 539, + 859, + 539, + 859, + 568, + 826, + 568 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 332, + 478, + 364, + 478, + 364, + 507, + 332, + 507 + ], + "score": 0.88, + "latex": "\\lambda ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1038, + 478, + 1072, + 478, + 1072, + 507, + 1038, + 507 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 369, + 447, + 404, + 447, + 404, + 477, + 369, + 477 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 854, + 443, + 889, + 443, + 889, + 478, + 854, + 478 + ], + "score": 0.88, + "latex": "\\tilde { \\mathbf { h } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 539, + 539, + 572, + 539, + 572, + 568, + 539, + 568 + ], + "score": 0.87, + "latex": "\\tilde { \\mathbf { x } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 939, + 1420, + 957, + 1420, + 957, + 1450, + 939, + 1450 + ], + "score": 0.83, + "latex": "\\bar { k }" + }, + { + "category_id": 13, + "poly": [ + 445, + 1255, + 463, + 1255, + 463, + 1285, + 445, + 1285 + ], + "score": 0.82, + "latex": "\\bar { k }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1967, + 609, + 1967, + 609, + 1999, + 494, + 1999 + ], + "score": 0.82, + "latex": "c _ { 1 } = 6 0 0" + }, + { + "category_id": 13, + "poly": [ + 622, + 1967, + 737, + 1967, + 737, + 1999, + 622, + 1999 + ], + "score": 0.82, + "latex": "c _ { 2 } = 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1973, + 1402, + 1973, + 1402, + 1996, + 1383, + 1996 + ], + "score": 0.41, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 1032, + 514, + 1085, + 514, + 1085, + 542, + 1032, + 542 + ], + "score": 0.35, + "latex": "\\mathrm { w e A K }" + }, + { + "category_id": 13, + "poly": [ + 444, + 1886, + 498, + 1886, + 498, + 1917, + 444, + 1917 + ], + "score": 0.26, + "latex": "\\mathbf { \\partial } \\cdot \\mathbf { W } \\mathbf { E } \\mathbf { A } \\mathbf { K }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 444.0, + 368.0, + 444.0, + 368.0, + 484.0, + 291.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 444.0, + 853.0, + 444.0, + 853.0, + 484.0, + 405.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 444.0, + 1408.0, + 444.0, + 1408.0, + 484.0, + 890.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 477.0, + 331.0, + 477.0, + 331.0, + 514.0, + 292.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 477.0, + 1037.0, + 477.0, + 1037.0, + 514.0, + 365.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 477.0, + 1408.0, + 477.0, + 1408.0, + 514.0, + 1073.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 505.0, + 402.0, + 505.0, + 402.0, + 546.0, + 291.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 505.0, + 489.0, + 505.0, + 489.0, + 546.0, + 439.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 505.0, + 1031.0, + 505.0, + 1031.0, + 546.0, + 524.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 505.0, + 1407.0, + 505.0, + 1407.0, + 546.0, + 1086.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 538.0, + 539.0, + 538.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 539.0, + 825.0, + 539.0, + 825.0, + 574.0, + 573.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 539.0, + 893.0, + 539.0, + 893.0, + 574.0, + 860.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 539.0, + 938.0, + 539.0, + 938.0, + 574.0, + 926.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1924.0, + 1405.0, + 1924.0, + 1405.0, + 1961.0, + 296.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1961.0, + 296.0, + 1961.0, + 296.0, + 2004.0, + 292.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1961.0, + 493.0, + 1961.0, + 493.0, + 2004.0, + 482.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1961.0, + 621.0, + 1961.0, + 621.0, + 2004.0, + 610.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1961.0, + 802.0, + 1961.0, + 802.0, + 2004.0, + 738.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 702.0, + 2001.0, + 702.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 2001.0, + 796.0, + 2001.0, + 796.0, + 2038.0, + 787.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.25, + 1944.5, + 1415.25, + 1944.5, + 1415.25, + 2021.5, + 846.25, + 2021.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1413.0, + 938.0, + 1413.0, + 938.0, + 1462.0, + 291.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1413.0, + 1408.0, + 1413.0, + 1408.0, + 1462.0, + 958.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 297.0, + 1446.0, + 297.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1446.0, + 756.0, + 1446.0, + 756.0, + 1489.0, + 510.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1446.0, + 872.0, + 1446.0, + 872.0, + 1489.0, + 869.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 583.0, + 845.0, + 583.0, + 845.0, + 635.0, + 292.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 583.0, + 1140.0, + 583.0, + 1140.0, + 635.0, + 954.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 583.0, + 1407.0, + 583.0, + 1407.0, + 635.0, + 1356.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 619.0, + 409.0, + 619.0, + 409.0, + 675.0, + 292.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 619.0, + 535.0, + 619.0, + 535.0, + 675.0, + 518.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1593.0, + 363.0, + 1593.0, + 363.0, + 1635.0, + 292.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1635.0, + 398.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1623.0, + 470.0, + 1623.0, + 470.0, + 1664.0, + 362.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 974.0, + 1847.0, + 974.0, + 1892.0, + 293.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1847.0, + 1165.0, + 1847.0, + 1165.0, + 1892.0, + 1033.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1892.0, + 1250.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 443.0, + 1881.0, + 443.0, + 1919.0, + 295.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1881.0, + 541.0, + 1881.0, + 541.0, + 1919.0, + 499.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1881.0, + 763.0, + 1881.0, + 763.0, + 1919.0, + 685.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1744.0, + 415.0, + 1744.0, + 415.0, + 1788.0, + 294.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1744.0, + 768.0, + 1744.0, + 768.0, + 1788.0, + 515.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1744.0, + 1408.0, + 1744.0, + 1408.0, + 1788.0, + 1009.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1779.0, + 703.0, + 1779.0, + 703.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 643.0, + 1039.0, + 643.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1039.0, + 744.0, + 1039.0, + 744.0, + 1079.0, + 714.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1039.0, + 1404.0, + 1039.0, + 1404.0, + 1079.0, + 822.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1067.0, + 295.0, + 1067.0, + 295.0, + 1112.0, + 291.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1067.0, + 423.0, + 1067.0, + 423.0, + 1112.0, + 408.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 824.0, + 934.0, + 824.0, + 974.0, + 295.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 790.0, + 1289.0, + 790.0, + 1289.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 790.0, + 1409.0, + 790.0, + 1409.0, + 840.0, + 1397.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 218.0, + 822.0, + 218.0, + 822.0, + 274.0, + 292.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 218.0, + 945.0, + 218.0, + 945.0, + 274.0, + 931.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 1401.0, + 1203.0, + 1401.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1254.0, + 444.0, + 1254.0, + 444.0, + 1294.0, + 296.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1254.0, + 646.0, + 1254.0, + 646.0, + 1294.0, + 464.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1254.0, + 951.0, + 1254.0, + 951.0, + 1294.0, + 825.0, + 1294.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1405, + 1406, + 1405, + 1406, + 1763, + 297, + 1763 + ], + "score": 0.986 + }, + { + "category_id": 1, + "poly": [ + 296, + 1118, + 1406, + 1118, + 1406, + 1394, + 296, + 1394 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1870, + 1408, + 1870, + 1408, + 2036, + 297, + 2036 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1406, + 227, + 1406, + 330, + 296, + 330 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 686, + 563, + 1009, + 563, + 1009, + 646, + 686, + 646 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 547, + 788, + 1151, + 788, + 1151, + 855, + 547, + 855 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 436, + 1405, + 436, + 1405, + 502, + 295, + 502 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 607, + 694, + 1092, + 694, + 1092, + 736, + 607, + 736 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 299, + 977, + 1073, + 977, + 1073, + 1010, + 299, + 1010 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 655, + 622, + 655, + 622, + 687, + 298, + 687 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 299, + 1801, + 1103, + 1801, + 1103, + 1841, + 299, + 1841 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 295, + 742, + 1206, + 742, + 1206, + 776, + 295, + 776 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 477, + 924, + 1220, + 924, + 1220, + 969, + 477, + 969 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 512, + 974, + 512, + 974, + 550, + 296, + 550 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 300, + 1051, + 705, + 1051, + 705, + 1087, + 300, + 1087 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 296, + 869, + 1336, + 869, + 1336, + 913, + 296, + 913 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 298, + 390, + 916, + 390, + 916, + 424, + 298, + 424 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1351, + 585, + 1401, + 585, + 1401, + 617, + 1351, + 617 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1351, + 933, + 1400, + 933, + 1400, + 965, + 1351, + 965 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 699, + 1401, + 699, + 1401, + 731, + 1351, + 731 + ], + "score": 0.895 + }, + { + "category_id": 8, + "poly": [ + 480, + 339, + 1218, + 339, + 1218, + 385, + 480, + 385 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 804, + 1400, + 804, + 1400, + 835, + 1351, + 835 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1350, + 347, + 1401, + 347, + 1401, + 379, + 1350, + 379 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 1375, + 979, + 1402, + 979, + 1402, + 1005, + 1375, + 1005 + ], + "score": 0.731 + }, + { + "category_id": 8, + "poly": [ + 478, + 339, + 1218, + 339, + 1218, + 385, + 478, + 385 + ], + "score": 0.17 + }, + { + "category_id": 13, + "poly": [ + 1241, + 1152, + 1403, + 1152, + 1403, + 1200, + 1241, + 1200 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\frac { r } { \\sqrt { \\tilde { \\epsilon } } } \\mathrm { l o g } \\frac { r \\sqrt { d } } { \\tilde { \\epsilon } p } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 685, + 558, + 1014, + 558, + 1014, + 648, + 685, + 648 + ], + "score": 0.95, + "latex": "\\mathbf { H } ^ { t } - \\boldsymbol { \\nabla } ^ { 2 } F ( \\mathbf { x } ^ { t } ) = \\frac { 1 } { s } \\sum _ { i = 1 } ^ { s } \\mathbf { B } _ { i } ." + }, + { + "category_id": 13, + "poly": [ + 412, + 866, + 632, + 866, + 632, + 916, + 412, + 916 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 944, + 1624, + 1069, + 1624, + 1069, + 1662, + 944, + 1662 + ], + "score": 0.94, + "latex": "\\tilde { \\mathcal { O } } ( 1 / \\epsilon ^ { 0 . 2 5 } )" + }, + { + "category_id": 13, + "poly": [ + 495, + 1356, + 672, + 1356, + 672, + 1395, + 495, + 1395 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )" + }, + { + "category_id": 13, + "poly": [ + 484, + 436, + 663, + 436, + 663, + 472, + 484, + 472 + ], + "score": 0.93, + "latex": "\\mathbf { H } ^ { t } = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 653, + 1197, + 738, + 1197, + 738, + 1231, + 653, + 1231 + ], + "score": 0.93, + "latex": "( 1 - p )" + }, + { + "category_id": 13, + "poly": [ + 469, + 514, + 794, + 514, + 794, + 550, + 469, + 550 + ], + "score": 0.93, + "latex": "\\mathbf { B } _ { i } : = \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 295, + 525, + 295, + 525, + 331, + 298, + 331 + ], + "score": 0.93, + "latex": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 695, + 1724, + 1218, + 1724, + 1218, + 1763, + 695, + 1763 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 883, + 437, + 962, + 437, + 962, + 472, + 883, + 472 + ], + "score": 0.92, + "latex": "\\psi _ { t } ( \\mathbf { v } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1291, + 436, + 1398, + 436, + 1398, + 471, + 1291, + 471 + ], + "score": 0.92, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 810, + 1436, + 1305, + 1436, + 1305, + 1471, + 810, + 1471 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\operatorname* { m i n } \\{ n , \\log ( 4 d / \\delta ) L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) \\} / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } ) )" + }, + { + "category_id": 13, + "poly": [ + 761, + 262, + 1069, + 262, + 1069, + 297, + 761, + 297 + ], + "score": 0.92, + "latex": "\\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) \\leq \\psi _ { t } ( \\mathbf { v } ^ { t } ) + \\sqrt { \\epsilon L _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 602, + 694, + 1097, + 694, + 1097, + 735, + 602, + 735 + ], + "score": 0.92, + "latex": "\\| \\mathbf { B } _ { i } \\| \\leq \\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { t } ) \\| + \\| \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\leq 2 L _ { 1 } ." + }, + { + "category_id": 13, + "poly": [ + 1225, + 1288, + 1403, + 1288, + 1403, + 1326, + 1225, + 1326 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( 1 / ( L _ { 2 } \\epsilon ) ^ { 0 . 2 5 } )" + }, + { + "category_id": 13, + "poly": [ + 926, + 1938, + 1269, + 1938, + 1269, + 1976, + 926, + 1976 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n + n ^ { 0 . 7 5 } / \\epsilon ^ { 0 . 2 5 } , 1 / \\epsilon \\} )" + }, + { + "category_id": 13, + "poly": [ + 821, + 1528, + 1019, + 1528, + 1019, + 1562, + 821, + 1562 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\log ( 1 / \\delta ) / \\epsilon ^ { 1 . 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1325, + 1273, + 1325, + 1273, + 1358, + 1205, + 1358 + ], + "score": 0.91, + "latex": "\\sqrt { \\epsilon L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 358, + 1438, + 421, + 1438, + 421, + 1470, + 358, + 1470 + ], + "score": 0.91, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 838, + 1597, + 918, + 1597, + 918, + 1626, + 838, + 1626 + ], + "score": 0.91, + "latex": "p _ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 1028, + 230, + 1143, + 230, + 1143, + 264, + 1028, + 264 + ], + "score": 0.91, + "latex": "\\left( 1 - \\delta / 2 \\right)" + }, + { + "category_id": 13, + "poly": [ + 650, + 296, + 741, + 296, + 741, + 331, + 650, + 331 + ], + "score": 0.91, + "latex": "1 - \\delta / 4" + }, + { + "category_id": 13, + "poly": [ + 1269, + 263, + 1365, + 263, + 1365, + 297, + 1269, + 297 + ], + "score": 0.91, + "latex": "1 - \\delta / 4" + }, + { + "category_id": 14, + "poly": [ + 546, + 783, + 1152, + 783, + 1152, + 858, + 546, + 858 + ], + "score": 0.91, + "latex": "P r \\{ \\| \\mathbf { H } ^ { t } - \\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\| \\ge \\sqrt { \\epsilon L _ { 2 } } \\} \\le d \\cdot \\exp ( \\frac { - \\epsilon L _ { 2 } s } { 3 2 L _ { 1 } ^ { 2 } } ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1689, + 692, + 1689, + 692, + 1727, + 298, + 1727 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 7 5 } \\} \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 1293, + 471, + 1376, + 471, + 1376, + 503, + 1293, + 503 + ], + "score": 0.91, + "latex": "( 1 - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 586, + 1902, + 879, + 1902, + 879, + 1940, + 586, + 1940 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 0 . 2 5 } , 1 / \\bar { \\epsilon } ^ { 1 . 2 5 } \\} )" + }, + { + "category_id": 13, + "poly": [ + 528, + 2003, + 629, + 2003, + 629, + 2035, + 528, + 2035 + ], + "score": 0.9, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 404, + 1624, + 777, + 1624, + 777, + 1662, + 404, + 1662 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , 1 / \\epsilon ^ { 2 . 5 } \\} \\log ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 703, + 1323, + 763, + 1323, + 763, + 1355, + 703, + 1355 + ], + "score": 0.89, + "latex": "\\mathbf { H } ^ { k } \\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 837, + 517, + 906, + 517, + 906, + 545, + 837, + 545 + ], + "score": 0.89, + "latex": "i \\in \\mathcal { H }" + }, + { + "category_id": 14, + "poly": [ + 478, + 923, + 1219, + 923, + 1219, + 969, + 478, + 969 + ], + "score": 0.88, + "latex": "\\nabla ^ { 2 } F ( \\mathbf { x } ^ { t } ) \\approx \\mathbf { H } ^ { t } - \\sqrt { \\epsilon L _ { 2 } } \\mathbf { I } \\approx ( \\psi _ { t } ( \\mathbf { v } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } ) \\mathbf { I } \\approx - \\sqrt { 6 0 0 \\epsilon L _ { 2 } } \\mathbf { I } ," + }, + { + "category_id": 13, + "poly": [ + 1084, + 1359, + 1139, + 1359, + 1139, + 1389, + 1084, + 1389 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { t } \\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1562, + 1272, + 1562, + 1272, + 1598, + 894, + 1598 + ], + "score": 0.87, + "latex": "\\tilde { \\mathcal { O } } ( \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } , \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )" + }, + { + "category_id": 14, + "poly": [ + 481, + 339, + 1216, + 339, + 1216, + 383, + 481, + 383 + ], + "score": 0.87, + "latex": "\\psi _ { t } ( \\mathbf { v } ^ { t } ) \\geq \\psi _ { t } ( \\tilde { \\mathbf { v } } ^ { t } ) - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { c _ { 2 } \\epsilon L _ { 2 } } - \\sqrt { \\epsilon L _ { 2 } } \\geq - \\sqrt { 5 5 0 \\epsilon L _ { 2 } } ," + }, + { + "category_id": 13, + "poly": [ + 1341, + 230, + 1371, + 230, + 1371, + 259, + 1341, + 259 + ], + "score": 0.87, + "latex": "\\mathbf { x } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 960, + 1407, + 989, + 1407, + 989, + 1435, + 960, + 1435 + ], + "score": 0.86, + "latex": "\\mathbf { v } _ { } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1873, + 1397, + 1873, + 1397, + 1904, + 1312, + 1904 + ], + "score": 0.86, + "latex": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 878, + 1327, + 878, + 1327, + 907, + 1264, + 907 + ], + "score": 0.86, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1407, + 1184, + 1407, + 1184, + 1439, + 1127, + 1439 + ], + "score": 0.85, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 878, + 398, + 904, + 398, + 904, + 422, + 878, + 422 + ], + "score": 0.82, + "latex": "c _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 791, + 232, + 814, + 232, + 814, + 259, + 791, + 259 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 886, + 1974, + 970, + 1974, + 970, + 2004, + 886, + 2004 + ], + "score": 0.78, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1230, + 961, + 1230, + 961, + 1257, + 943, + 1257 + ], + "score": 0.76, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 319, + 264, + 375, + 264, + 375, + 292, + 319, + 292 + ], + "score": 0.56, + "latex": "5 0 0 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1103, + 470, + 1160, + 470, + 1160, + 499, + 1103, + 499 + ], + "score": 0.5, + "latex": "6 0 0 \\epsilon" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1800.0, + 1108.0, + 1800.0, + 1108.0, + 1848.0, + 291.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 710.0, + 1049.0, + 710.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 983.0, + 1401.0, + 983.0, + 1401.0, + 1005.0, + 1380.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 959.0, + 1404.0, + 959.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1404.0, + 1126.0, + 1404.0, + 1126.0, + 1441.0, + 990.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1441.0, + 1185.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1433.0, + 357.0, + 1433.0, + 357.0, + 1475.0, + 290.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1433.0, + 809.0, + 1433.0, + 809.0, + 1475.0, + 422.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1433.0, + 1412.0, + 1433.0, + 1412.0, + 1475.0, + 1306.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1409.0, + 1467.0, + 1409.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1408.0, + 1496.0, + 1408.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1524.0, + 820.0, + 1524.0, + 820.0, + 1566.0, + 291.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1524.0, + 1411.0, + 1524.0, + 1411.0, + 1566.0, + 1020.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1558.0, + 893.0, + 1558.0, + 893.0, + 1602.0, + 290.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1558.0, + 1407.0, + 1558.0, + 1407.0, + 1602.0, + 1273.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 837.0, + 1592.0, + 837.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1592.0, + 1409.0, + 1592.0, + 1409.0, + 1632.0, + 919.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1622.0, + 403.0, + 1622.0, + 403.0, + 1665.0, + 291.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1622.0, + 943.0, + 1622.0, + 943.0, + 1665.0, + 778.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1622.0, + 1408.0, + 1622.0, + 1408.0, + 1665.0, + 1070.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1695.0, + 295.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1684.0, + 297.0, + 1684.0, + 297.0, + 1732.0, + 292.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1684.0, + 1409.0, + 1684.0, + 1409.0, + 1732.0, + 693.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1722.0, + 694.0, + 1722.0, + 694.0, + 1767.0, + 292.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1722.0, + 1231.0, + 1722.0, + 1231.0, + 1767.0, + 1219.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1762.0, + 1373.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1120.0, + 1408.0, + 1120.0, + 1408.0, + 1157.0, + 295.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1144.0, + 1240.0, + 1144.0, + 1240.0, + 1213.0, + 285.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1196.0, + 652.0, + 1196.0, + 652.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1196.0, + 1407.0, + 1196.0, + 1407.0, + 1231.0, + 739.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 942.0, + 1226.0, + 942.0, + 1264.0, + 293.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1226.0, + 1406.0, + 1226.0, + 1406.0, + 1264.0, + 962.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 1406.0, + 1257.0, + 1406.0, + 1293.0, + 294.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1287.0, + 1224.0, + 1287.0, + 1224.0, + 1330.0, + 290.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1287.0, + 1409.0, + 1287.0, + 1409.0, + 1330.0, + 1404.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 702.0, + 1321.0, + 702.0, + 1364.0, + 293.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1321.0, + 1204.0, + 1321.0, + 1204.0, + 1364.0, + 764.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1321.0, + 1406.0, + 1321.0, + 1406.0, + 1364.0, + 1274.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 494.0, + 1357.0, + 494.0, + 1397.0, + 293.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1357.0, + 1083.0, + 1357.0, + 1083.0, + 1397.0, + 673.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1357.0, + 1151.0, + 1357.0, + 1151.0, + 1397.0, + 1140.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1867.0, + 1311.0, + 1867.0, + 1311.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1867.0, + 1408.0, + 1867.0, + 1408.0, + 1911.0, + 1398.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1898.0, + 585.0, + 1898.0, + 585.0, + 1945.0, + 290.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1898.0, + 1411.0, + 1898.0, + 1411.0, + 1945.0, + 880.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1933.0, + 925.0, + 1933.0, + 925.0, + 1982.0, + 289.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1933.0, + 1413.0, + 1933.0, + 1413.0, + 1982.0, + 1270.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 885.0, + 1973.0, + 885.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1973.0, + 1408.0, + 1973.0, + 1408.0, + 2006.0, + 971.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 527.0, + 1999.0, + 527.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1999.0, + 640.0, + 1999.0, + 640.0, + 2039.0, + 630.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 790.0, + 226.0, + 790.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 226.0, + 1027.0, + 226.0, + 1027.0, + 266.0, + 815.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 226.0, + 1340.0, + 226.0, + 1340.0, + 266.0, + 1144.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 226.0, + 1407.0, + 226.0, + 1407.0, + 266.0, + 1372.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 258.0, + 318.0, + 258.0, + 318.0, + 300.0, + 290.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 258.0, + 760.0, + 258.0, + 760.0, + 300.0, + 376.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 258.0, + 1268.0, + 258.0, + 1268.0, + 300.0, + 1070.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 258.0, + 1408.0, + 258.0, + 1408.0, + 300.0, + 1366.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 295.0, + 649.0, + 295.0, + 649.0, + 334.0, + 526.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 295.0, + 755.0, + 295.0, + 755.0, + 334.0, + 742.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 434.0, + 483.0, + 434.0, + 483.0, + 474.0, + 294.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 434.0, + 882.0, + 434.0, + 882.0, + 474.0, + 664.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 434.0, + 1290.0, + 434.0, + 1290.0, + 474.0, + 963.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 434.0, + 1408.0, + 434.0, + 1408.0, + 474.0, + 1399.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 466.0, + 1102.0, + 466.0, + 1102.0, + 507.0, + 293.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 466.0, + 1292.0, + 466.0, + 1292.0, + 507.0, + 1161.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 466.0, + 1393.0, + 466.0, + 1393.0, + 507.0, + 1377.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 973.0, + 1075.0, + 973.0, + 1075.0, + 1016.0, + 294.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 652.0, + 624.0, + 652.0, + 624.0, + 692.0, + 295.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 739.0, + 1208.0, + 739.0, + 1208.0, + 781.0, + 292.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 468.0, + 509.0, + 468.0, + 556.0, + 294.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 509.0, + 836.0, + 509.0, + 836.0, + 556.0, + 795.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 509.0, + 974.0, + 509.0, + 974.0, + 556.0, + 907.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 411.0, + 857.0, + 411.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 857.0, + 1263.0, + 857.0, + 1263.0, + 919.0, + 633.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 857.0, + 1342.0, + 857.0, + 1342.0, + 919.0, + 1328.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 383.0, + 877.0, + 383.0, + 877.0, + 432.0, + 293.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 383.0, + 918.0, + 383.0, + 918.0, + 432.0, + 905.0, + 432.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1464, + 1405, + 1464, + 1405, + 1621, + 296, + 1621 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1244, + 1406, + 1244, + 1406, + 1374, + 296, + 1374 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1899, + 1407, + 1899, + 1407, + 2036, + 298, + 2036 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1405, + 1698, + 1405, + 1806, + 298, + 1806 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 385, + 1406, + 385, + 1406, + 482, + 296, + 482 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 480, + 645, + 1215, + 645, + 1215, + 724, + 480, + 724 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 783, + 1400, + 783, + 1400, + 852, + 298, + 852 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 285, + 1402, + 285, + 1402, + 380, + 299, + 380 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 1406, + 573, + 1406, + 637, + 297, + 637 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 514, + 500, + 1184, + 500, + 1184, + 565, + 514, + 565 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 613, + 1629, + 1087, + 1629, + 1087, + 1691, + 613, + 1691 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 515, + 988, + 1183, + 988, + 1183, + 1055, + 515, + 1055 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 442, + 1810, + 1253, + 1810, + 1253, + 1889, + 442, + 1889 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 295, + 917, + 1403, + 917, + 1403, + 980, + 295, + 980 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 753, + 1182, + 942, + 1182, + 942, + 1225, + 753, + 1225 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 657, + 874, + 1041, + 874, + 1041, + 915, + 657, + 915 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 295, + 1109, + 1399, + 1109, + 1399, + 1177, + 295, + 1177 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 728, + 826, + 728, + 826, + 763, + 297, + 763 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1645, + 1400, + 1645, + 1400, + 1676, + 1351, + 1676 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 298, + 1070, + 1285, + 1070, + 1285, + 1104, + 298, + 1104 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 301, + 1408, + 844, + 1408, + 844, + 1441, + 301, + 1441 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1351, + 669, + 1401, + 669, + 1401, + 701, + 1351, + 701 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1004, + 1400, + 1004, + 1400, + 1035, + 1351, + 1035 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 881, + 1400, + 881, + 1400, + 910, + 1351, + 910 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 518, + 1400, + 518, + 1400, + 548, + 1351, + 548 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1188, + 1400, + 1188, + 1400, + 1218, + 1352, + 1218 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1827, + 1400, + 1827, + 1400, + 1857, + 1352, + 1857 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 813, + 228, + 813, + 262, + 300, + 262 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 14, + "poly": [ + 611, + 1626, + 1086, + 1626, + 1086, + 1692, + 611, + 1692 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\mathbf { u } } \\phi ^ { k } ( \\mathbf { u } ) : = \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\mathbf { H } ^ { k } - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle" + }, + { + "category_id": 14, + "poly": [ + 442, + 1807, + 1257, + 1807, + 1257, + 1891, + 442, + 1891 + ], + "score": 0.94, + "latex": "\\phi ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\phi _ { i } ^ { k } ( \\mathbf { u } ) = \\frac { 1 } { | S | } \\sum _ { i \\in S } \\left( \\frac { 1 } { 2 } \\mathbf { u } ^ { T } ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\lambda I ) \\mathbf { u } - \\langle \\mathbf { v } , \\mathbf { u } \\rangle \\right) ." + }, + { + "category_id": 14, + "poly": [ + 513, + 498, + 1183, + 498, + 1183, + 571, + 513, + 571 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\substack { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } } q ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\mu I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\mu r ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 512, + 984, + 1183, + 984, + 1183, + 1058, + 512, + 1058 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\mathbf { h } \\in \\mathbb { R } ^ { d } , \\| \\mathbf { h } \\| \\leq r } \\tilde { q } ^ { k } ( \\mathbf { h } ) = \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\mathbf { H } ^ { k } - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1066, + 589, + 1066, + 589, + 1105, + 371, + 1105 + ], + "score": 0.93, + "latex": "\\tilde { \\mu } = \\mathrm { m i n } \\{ 0 , \\tilde { \\lambda } - \\tilde { \\epsilon } \\}" + }, + { + "category_id": 14, + "poly": [ + 481, + 643, + 1218, + 643, + 1218, + 724, + 481, + 724 + ], + "score": 0.93, + "latex": "\\mathbf { h } _ { c } ^ { k } + \\frac { \\sqrt { \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle ^ { 2 } - \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } \\big ( \\| \\mathbf { h } _ { c } ^ { k } \\| ^ { 2 } - r ^ { 2 } \\big ) } - \\langle \\mathbf { h } _ { c } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle } { \\| \\mathbf { u } _ { \\mathrm { m i n } } \\| ^ { 2 } } \\mathbf { u } _ { \\mathrm { m i n } }" + }, + { + "category_id": 13, + "poly": [ + 1262, + 915, + 1398, + 915, + 1398, + 951, + 1262, + 951 + ], + "score": 0.93, + "latex": "\\| \\mathbf { H } ^ { k } \\| \\leq L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1699, + 756, + 1699, + 756, + 1742, + 450, + 1742 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\cal { S } | } \\sum _ { i \\in \\cal { S } } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 574, + 449, + 783, + 449, + 783, + 481, + 574, + 481 + ], + "score": 0.92, + "latex": "\\mu = \\operatorname* { m i n } \\{ \\lambda _ { \\operatorname* { m i n } } , 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1702, + 1223, + 1702, + 1223, + 1736, + 1126, + 1736 + ], + "score": 0.92, + "latex": "| S | = n" + }, + { + "category_id": 13, + "poly": [ + 545, + 1556, + 719, + 1556, + 719, + 1592, + 545, + 1592 + ], + "score": 0.92, + "latex": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 } \\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 482, + 1742, + 710, + 1742, + 710, + 1779, + 482, + 1779 + ], + "score": 0.92, + "latex": "| S | = \\tilde { \\mathcal { O } } ( L _ { 1 } ^ { 2 } / ( L _ { 2 } \\epsilon ) )" + }, + { + "category_id": 13, + "poly": [ + 1217, + 817, + 1286, + 817, + 1286, + 853, + 1217, + 853 + ], + "score": 0.92, + "latex": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )" + }, + { + "category_id": 13, + "poly": [ + 925, + 1934, + 1189, + 1934, + 1189, + 1974, + 925, + 1974 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )" + }, + { + "category_id": 14, + "poly": [ + 754, + 1181, + 946, + 1181, + 946, + 1223, + 754, + 1223 + ], + "score": 0.92, + "latex": "| q _ { * } ^ { k } - \\tilde { q } _ { * } ^ { k } | \\leq \\tilde { \\epsilon } r ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 656, + 872, + 1041, + 872, + 1041, + 913, + 656, + 913 + ], + "score": 0.92, + "latex": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ," + }, + { + "category_id": 13, + "poly": [ + 530, + 1970, + 670, + 1970, + 670, + 2006, + 530, + 2006 + ], + "score": 0.92, + "latex": "\\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\mathbf { u } )" + }, + { + "category_id": 13, + "poly": [ + 910, + 1527, + 1069, + 1527, + 1069, + 1561, + 910, + 1561 + ], + "score": 0.91, + "latex": "( \\mathbf { H } ^ { k } - \\lambda I ) ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1009, + 918, + 1105, + 918, + 1105, + 948, + 1009, + 948 + ], + "score": 0.91, + "latex": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1742, + 1085, + 1742, + 1085, + 1779, + 1023, + 1779 + ], + "score": 0.91, + "latex": "\\phi ^ { k } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 868, + 1276, + 936, + 1276, + 936, + 1313, + 868, + 1313 + ], + "score": 0.91, + "latex": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )" + }, + { + "category_id": 13, + "poly": [ + 349, + 447, + 520, + 447, + 520, + 481, + 349, + 481 + ], + "score": 0.91, + "latex": "\\langle \\mathbf { g } ^ { k } , \\mathbf { u } _ { \\mathrm { m i n } } \\rangle \\leq 0" + }, + { + "category_id": 13, + "poly": [ + 600, + 1899, + 635, + 1899, + 635, + 1936, + 600, + 1936 + ], + "score": 0.9, + "latex": "\\phi _ { i } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1141, + 676, + 1141, + 676, + 1178, + 297, + 1178 + ], + "score": 0.9, + "latex": "\\lambda _ { \\operatorname* { m i n } } \\leq \\tilde { \\lambda } = \\tilde { \\mathbf { u } } ^ { T } \\mathbf { H } ^ { k } \\tilde { \\mathbf { u } } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ." + }, + { + "category_id": 13, + "poly": [ + 942, + 1498, + 1099, + 1498, + 1099, + 1526, + 942, + 1526 + ], + "score": 0.9, + "latex": "\\lambda = \\lambda _ { \\operatorname* { m i n } } - \\tilde { \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 574, + 1356, + 574, + 1356, + 605, + 1248, + 605 + ], + "score": 0.89, + "latex": "\\lambda _ { \\operatorname* { m i n } } < 0 ," + }, + { + "category_id": 13, + "poly": [ + 752, + 602, + 785, + 602, + 785, + 637, + 752, + 637 + ], + "score": 0.89, + "latex": "\\mathbf { h } _ { c } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1310, + 1058, + 1310, + 1058, + 1340, + 1017, + 1340 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1700, + 1329, + 1700, + 1329, + 1731, + 1288, + 1731 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 675, + 416, + 715, + 416, + 715, + 446, + 675, + 446 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 941, + 1901, + 1009, + 1901, + 1009, + 1934, + 941, + 1934 + ], + "score": 0.88, + "latex": "\\left( 4 L _ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 298, + 418, + 354, + 418, + 354, + 448, + 298, + 448 + ], + "score": 0.87, + "latex": "\\lambda _ { \\mathrm { m i n } }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1108, + 550, + 1108, + 550, + 1143, + 521, + 1143 + ], + "score": 0.87, + "latex": "q _ { * } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 953, + 1702, + 1039, + 1702, + 1039, + 1735, + 953, + 1735 + ], + "score": 0.87, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 602, + 1108, + 631, + 1108, + 631, + 1143, + 602, + 1143 + ], + "score": 0.86, + "latex": "\\tilde { q } _ { * } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 785, + 1331, + 785, + 1331, + 816, + 1190, + 816 + ], + "score": 0.85, + "latex": "\\left( \\lambda _ { \\operatorname* { m i n } } , \\mathbf { u } _ { \\operatorname* { m i n } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 770, + 420, + 828, + 420, + 828, + 448, + 770, + 448 + ], + "score": 0.81, + "latex": "\\mathbf { u } _ { \\mathrm { m i n } }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1564, + 902, + 1564, + 902, + 1586, + 881, + 1586 + ], + "score": 0.71, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1560, + 1220, + 1560, + 1220, + 1586, + 1205, + 1586 + ], + "score": 0.41, + "latex": "\\tilde { \\epsilon }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 847.0, + 1407.0, + 847.0, + 1444.0, + 293.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 223.0, + 819.0, + 223.0, + 819.0, + 269.0, + 290.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1462.0, + 1403.0, + 1462.0, + 1403.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1492.0, + 941.0, + 1492.0, + 941.0, + 1536.0, + 291.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1536.0, + 1100.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1524.0, + 909.0, + 1524.0, + 909.0, + 1563.0, + 291.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1524.0, + 1407.0, + 1524.0, + 1407.0, + 1563.0, + 1070.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1552.0, + 544.0, + 1552.0, + 544.0, + 1596.0, + 291.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1552.0, + 880.0, + 1552.0, + 880.0, + 1596.0, + 720.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1552.0, + 1204.0, + 1552.0, + 1204.0, + 1596.0, + 903.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1552.0, + 1407.0, + 1552.0, + 1407.0, + 1596.0, + 1221.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1585.0, + 667.0, + 1585.0, + 667.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1244.0, + 1407.0, + 1244.0, + 1407.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 867.0, + 1280.0, + 867.0, + 1317.0, + 294.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1280.0, + 1407.0, + 1280.0, + 1407.0, + 1317.0, + 937.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1016.0, + 1311.0, + 1016.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1345.0, + 1059.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 1379.0, + 1340.0, + 1379.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1896.0, + 599.0, + 1896.0, + 599.0, + 1938.0, + 293.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1896.0, + 940.0, + 1896.0, + 940.0, + 1938.0, + 636.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1896.0, + 1408.0, + 1896.0, + 1408.0, + 1938.0, + 1010.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1933.0, + 924.0, + 1933.0, + 924.0, + 1971.0, + 295.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1933.0, + 1409.0, + 1933.0, + 1409.0, + 1971.0, + 1190.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 529.0, + 1971.0, + 529.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2006.0, + 671.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1218.0, + 2000.0, + 1218.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 449.0, + 1695.0, + 449.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1695.0, + 952.0, + 1695.0, + 952.0, + 1744.0, + 757.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1695.0, + 1125.0, + 1695.0, + 1125.0, + 1744.0, + 1040.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1695.0, + 1287.0, + 1695.0, + 1287.0, + 1744.0, + 1224.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1695.0, + 1407.0, + 1695.0, + 1407.0, + 1744.0, + 1330.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 481.0, + 1740.0, + 481.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1740.0, + 1022.0, + 1740.0, + 1022.0, + 1781.0, + 711.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1740.0, + 1407.0, + 1740.0, + 1407.0, + 1781.0, + 1086.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 543.0, + 1776.0, + 543.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1406.0, + 383.0, + 1406.0, + 421.0, + 294.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 297.0, + 414.0, + 297.0, + 456.0, + 294.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 414.0, + 674.0, + 414.0, + 674.0, + 456.0, + 355.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 414.0, + 769.0, + 414.0, + 769.0, + 456.0, + 716.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 414.0, + 1407.0, + 414.0, + 1407.0, + 456.0, + 829.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 348.0, + 443.0, + 348.0, + 485.0, + 294.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 443.0, + 573.0, + 443.0, + 573.0, + 485.0, + 521.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 485.0, + 784.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 781.0, + 1189.0, + 781.0, + 1189.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 781.0, + 1405.0, + 781.0, + 1405.0, + 820.0, + 1332.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 1216.0, + 816.0, + 1216.0, + 857.0, + 294.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 816.0, + 1406.0, + 816.0, + 1406.0, + 857.0, + 1287.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 1406.0, + 286.0, + 1406.0, + 320.0, + 294.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 1404.0, + 317.0, + 1404.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 350.0, + 512.0, + 350.0, + 512.0, + 381.0, + 295.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 568.0, + 1247.0, + 568.0, + 1247.0, + 610.0, + 292.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 568.0, + 1406.0, + 568.0, + 1406.0, + 610.0, + 1357.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 751.0, + 600.0, + 751.0, + 641.0, + 294.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 600.0, + 795.0, + 600.0, + 795.0, + 641.0, + 786.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 1008.0, + 913.0, + 1008.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 913.0, + 1261.0, + 913.0, + 1261.0, + 955.0, + 1106.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 913.0, + 1408.0, + 913.0, + 1408.0, + 955.0, + 1399.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 949.0, + 1214.0, + 949.0, + 1214.0, + 980.0, + 297.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1104.0, + 520.0, + 1104.0, + 520.0, + 1148.0, + 295.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1104.0, + 601.0, + 1104.0, + 601.0, + 1148.0, + 551.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1148.0, + 632.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1142.0, + 748.0, + 1142.0, + 748.0, + 1182.0, + 677.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 831.0, + 727.0, + 831.0, + 767.0, + 294.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1067.0, + 370.0, + 1067.0, + 370.0, + 1110.0, + 294.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1067.0, + 1285.0, + 1067.0, + 1285.0, + 1110.0, + 590.0, + 1110.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1398, + 1406, + 1398, + 1406, + 1597, + 296, + 1597 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1138, + 1406, + 1138, + 1406, + 1302, + 297, + 1302 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1608, + 1406, + 1608, + 1406, + 1793, + 297, + 1793 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1907, + 1404, + 1907, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 746, + 1397, + 746, + 1397, + 861, + 297, + 861 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 305, + 536, + 1179, + 536, + 1179, + 722, + 305, + 722 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 956, + 1402, + 956, + 1402, + 1020, + 296, + 1020 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 307, + 1035, + 1335, + 1035, + 1335, + 1118, + 307, + 1118 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 1832, + 900, + 1832, + 900, + 1866, + 298, + 1866 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 858, + 74, + 858, + 105, + 298, + 105 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1341, + 704, + 1341, + 704, + 1374, + 300, + 1374 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 897, + 730, + 897, + 730, + 931, + 300, + 931 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 298, + 493, + 563, + 493, + 563, + 526, + 298, + 526 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 866, + 2088, + 866, + 2113, + 835, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 659, + 228, + 659, + 262, + 299, + 262 + ], + "score": 0.833 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1056, + 1400, + 1056, + 1400, + 1086, + 1354, + 1086 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 1375, + 1833, + 1402, + 1833, + 1402, + 1862, + 1375, + 1862 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 298, + 274, + 561, + 274, + 561, + 308, + 298, + 308 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 305, + 295, + 1406, + 295, + 1406, + 461, + 305, + 461 + ], + "score": 0.62 + }, + { + "category_id": 8, + "poly": [ + 308, + 414, + 1044, + 414, + 1044, + 460, + 308, + 460 + ], + "score": 0.17 + }, + { + "category_id": 13, + "poly": [ + 925, + 1643, + 1144, + 1643, + 1144, + 1692, + 925, + 1692 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { s = \\frac { 3 2 L _ { 1 } ^ { 2 } } { \\epsilon L _ { 2 } } \\mathrm { l o g } ( 4 d / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1139, + 1263, + 1139, + 1263, + 1175, + 1194, + 1175 + ], + "score": 0.93, + "latex": "\\tilde { q } _ { i } ^ { k } ( \\mathbf { h } )" + }, + { + "category_id": 13, + "poly": [ + 376, + 1140, + 504, + 1140, + 504, + 1175, + 376, + 1175 + ], + "score": 0.93, + "latex": "\\Psi ( { \\bf h } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 974, + 749, + 1181, + 749, + 1181, + 786, + 974, + 786 + ], + "score": 0.93, + "latex": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 567, + 1237, + 789, + 1237, + 789, + 1273, + 567, + 1273 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ \\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } ] \\leq \\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 496, + 747, + 890, + 747, + 890, + 793, + 496, + 793 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbf { H } ^ { k } = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\cal S } \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\in \\mathbb { R } ^ { d \\times d } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 306, + 1035, + 1341, + 1035, + 1341, + 1120, + 306, + 1120 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\mathbf { h \\in \\mathbb { R } } ^ { d } } \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\tilde { q } _ { i } ^ { k } ( \\mathbf { h } ) + \\Psi ( \\mathbf { h } ) = \\frac { 1 } { | \\mathcal { S } | } \\sum _ { i \\in \\mathcal { S } } \\Big ( \\langle \\mathbf { g } ^ { k } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\langle ( \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) - \\tilde { \\mu } I ) \\mathbf { h } , \\mathbf { h } \\rangle + \\frac { 1 } { 2 } \\tilde { \\mu } r ^ { 2 } \\Big ) + \\Psi ( \\mathbf { h } ) ," + }, + { + "category_id": 13, + "poly": [ + 1199, + 1689, + 1350, + 1689, + 1350, + 1724, + 1199, + 1724 + ], + "score": 0.92, + "latex": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2" + }, + { + "category_id": 13, + "poly": [ + 793, + 823, + 1057, + 823, + 1057, + 862, + 793, + 862 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } / \\tilde { \\epsilon } } )" + }, + { + "category_id": 13, + "poly": [ + 507, + 625, + 702, + 625, + 702, + 659, + 507, + 659 + ], + "score": 0.92, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } F ( \\mathbf { x } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 591, + 1971, + 761, + 1971, + 761, + 2006, + 591, + 2006 + ], + "score": 0.92, + "latex": "n \\ge \\Omega ( 1 / \\epsilon ^ { 4 / 3 } )" + }, + { + "category_id": 13, + "poly": [ + 877, + 1468, + 1185, + 1468, + 1185, + 1506, + 877, + 1506 + ], + "score": 0.92, + "latex": "{ \\tilde { \\mathcal { O } } } ( | S | + | S | ^ { 3 / 4 } L _ { 2 } ^ { 0 . 2 5 } / \\epsilon ^ { 0 . 2 5 } )" + }, + { + "category_id": 13, + "poly": [ + 540, + 1140, + 651, + 1140, + 651, + 1176, + 540, + 1176 + ], + "score": 0.92, + "latex": "\\| \\mathbf { h } \\| \\leq r" + }, + { + "category_id": 13, + "poly": [ + 954, + 1433, + 1059, + 1433, + 1059, + 1466, + 954, + 1466 + ], + "score": 0.92, + "latex": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 860, + 1235, + 1189, + 1235, + 1189, + 1273, + 860, + 1273 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( | S | + | S | ^ { 3 / 4 } \\sqrt { L _ { 2 } } \\cdot r / \\sqrt { \\tilde { \\epsilon } _ { 1 } } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 343, + 1400, + 343, + 1400, + 380, + 1211, + 380 + ], + "score": 0.91, + "latex": "\\tilde { q } ^ { k } ( \\mathbf { h } ) - \\tilde { q } _ { * } ^ { k } \\leq \\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1649, + 444, + 1649, + 444, + 1687, + 296, + 1687 + ], + "score": 0.91, + "latex": "4 \\sqrt { L _ { 2 } } \\Delta / \\epsilon ^ { 1 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 587, + 306, + 656, + 306, + 656, + 344, + 587, + 344 + ], + "score": 0.91, + "latex": "( \\tilde { \\lambda } , \\tilde { \\mathbf { u } } )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1174, + 1135, + 1174, + 1135, + 1205, + 1039, + 1205 + ], + "score": 0.91, + "latex": "\\tilde { \\epsilon } \\leq 2 L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 941, + 654, + 1167, + 654, + 1167, + 691, + 941, + 691 + ], + "score": 0.91, + "latex": "\\mathbf { H } ^ { k } : = \\nabla ^ { 2 } f ( \\mathbf { x } ^ { k } ; \\mathcal { H } )" + }, + { + "category_id": 13, + "poly": [ + 604, + 1534, + 704, + 1534, + 704, + 1564, + 604, + 1564 + ], + "score": 0.91, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 297, + 1721, + 408, + 1721, + 408, + 1752, + 297, + 1752 + ], + "score": 0.91, + "latex": "\\tilde { \\epsilon } _ { 1 } = \\tilde { \\epsilon } r ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1173, + 986, + 1173, + 986, + 1208, + 779, + 1208 + ], + "score": 0.9, + "latex": "\\| \\nabla ^ { 2 } f _ { i } ( \\mathbf { x } ^ { k } ) \\| \\leq L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 787, + 1141, + 950, + 1141, + 950, + 1173, + 787, + 1173 + ], + "score": 0.9, + "latex": "\\Psi ( \\mathbf { h } ) \\ = \\ + \\infty" + }, + { + "category_id": 13, + "poly": [ + 938, + 789, + 1171, + 789, + 1171, + 823, + 938, + 823 + ], + "score": 0.9, + "latex": "\\mathbf { u } ^ { T } \\mathbf { H } ^ { k } \\mathbf { u } \\leq \\lambda _ { \\operatorname* { m i n } } + \\tilde { \\epsilon } ." + }, + { + "category_id": 13, + "poly": [ + 891, + 1910, + 994, + 1910, + 994, + 1940, + 891, + 1940 + ], + "score": 0.9, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 803, + 1564, + 904, + 1564, + 904, + 1595, + 803, + 1595 + ], + "score": 0.89, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }" + }, + { + "category_id": 13, + "poly": [ + 456, + 1649, + 632, + 1649, + 632, + 1689, + 456, + 1689 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { T = \\frac { 3 } { 2 } \\mathrm { { l o g } } ( 2 / \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 751, + 1909, + 837, + 1909, + 837, + 1940, + 751, + 1940 + ], + "score": 0.88, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 556, + 1272, + 582, + 1272, + 582, + 1300, + 556, + 1300 + ], + "score": 0.88, + "latex": "\\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1609, + 1173, + 1609, + 1173, + 1643, + 1072, + 1643 + ], + "score": 0.87, + "latex": "\\zeta = 1 / 3" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1505, + 1213, + 1505, + 1213, + 1533, + 1129, + 1533 + ], + "score": 0.87, + "latex": "\\operatorname { S T R } _ { \\mathrm { f r e e } }" + }, + { + "category_id": 13, + "poly": [ + 853, + 347, + 880, + 347, + 880, + 377, + 853, + 377 + ], + "score": 0.87, + "latex": "\\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1174, + 363, + 1174, + 363, + 1207, + 296, + 1207 + ], + "score": 0.87, + "latex": "\\left( 4 L _ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 687, + 564, + 721, + 564, + 721, + 595, + 687, + 595 + ], + "score": 0.86, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 685, + 596, + 727, + 596, + 727, + 624, + 685, + 624 + ], + "score": 0.86, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 743, + 1432, + 892, + 1432, + 892, + 1468, + 743, + 1468 + ], + "score": 0.86, + "latex": "\\tilde { \\epsilon } = \\sqrt { \\epsilon L _ { 2 } } / 2" + }, + { + "category_id": 13, + "poly": [ + 587, + 1431, + 729, + 1431, + 729, + 1471, + 587, + 1471 + ], + "score": 0.86, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1605, + 1326, + 1605, + 1326, + 1646, + 1184, + 1646 + ], + "score": 0.86, + "latex": "r = \\sqrt { \\epsilon / L _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 640, + 1941, + 726, + 1941, + 726, + 1970, + 640, + 1970 + ], + "score": 0.85, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 759, + 1653, + 866, + 1653, + 866, + 1685, + 759, + 1685 + ], + "score": 0.85, + "latex": "c _ { 2 } = 5 0 0 \\mathrm { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 575, + 2005, + 676, + 2005, + 676, + 2034, + 575, + 2034 + ], + "score": 0.85, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1754, + 955, + 1754, + 955, + 1792, + 297, + 1792 + ], + "score": 0.83, + "latex": "\\tilde { \\mathcal { O } } ( d \\mathrm { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } + \\sqrt { n } / \\epsilon ^ { 2 } \\} \\mathrm { l o g } ( 1 / \\delta ) )" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1723, + 1091, + 1723, + 1091, + 1752, + 1023, + 1752 + ], + "score": 0.83, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 829, + 658, + 856, + 658, + 856, + 686, + 829, + 686 + ], + "score": 0.82, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1653, + 748, + 1653, + 748, + 1686, + 642, + 1686 + ], + "score": 0.82, + "latex": "c _ { 1 } = 6 0 0" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1940, + 1401, + 1940, + 1401, + 1971, + 1314, + 1971 + ], + "score": 0.81, + "latex": "\\mathrm { { S T R } _ { \\mathrm { { f r e e } } } }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 340, + 1103, + 340, + 1103, + 375, + 1080, + 375 + ], + "score": 0.78, + "latex": "\\tilde { \\mathbf { h } }" + }, + { + "category_id": 13, + "poly": [ + 1339, + 1609, + 1405, + 1609, + 1405, + 1643, + 1339, + 1643 + ], + "score": 0.77, + "latex": "K =" + }, + { + "category_id": 14, + "poly": [ + 425, + 406, + 1043, + 406, + 1043, + 463, + 425, + 463 + ], + "score": 0.74, + "latex": "\\tilde { \\mathbf { h } } + ( \\sqrt { \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ^ { 2 } - \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } ( \\| \\tilde { \\mathbf { h } } \\| ^ { 2 } - r ^ { 2 } ) } - \\langle \\tilde { \\mathbf { h } } , \\tilde { \\mathbf { u } } \\rangle ) \\tilde { \\mathbf { u } } / \\| \\tilde { \\mathbf { u } } \\| ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 584, + 664, + 601, + 664, + 601, + 685, + 584, + 685 + ], + "score": 0.73, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1568, + 1078, + 1568, + 1078, + 1591, + 1065, + 1591 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 735, + 1723, + 915, + 1723, + 915, + 1755, + 735, + 1755 + ], + "score": 0.65, + "latex": "O ( \\epsilon ) { - } S O S P ~ w . p" + }, + { + "category_id": 13, + "poly": [ + 385, + 274, + 427, + 274, + 427, + 307, + 385, + 307 + ], + "score": 0.57, + "latex": "\\mathbf { H } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 356, + 794, + 423, + 794, + 423, + 825, + 356, + 825 + ], + "score": 0.54, + "latex": "1 - p ," + }, + { + "category_id": 13, + "poly": [ + 735, + 1722, + 792, + 1722, + 792, + 1755, + 735, + 1755 + ], + "score": 0.4, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 388, + 274, + 563, + 274, + 563, + 309, + 388, + 309 + ], + "score": 0.35, + "latex": "\\mathbf { H } ^ { k } , \\mathbf { g } ^ { k } , r , \\tilde { \\epsilon } , \\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 437, + 274, + 471, + 274, + 471, + 308, + 437, + 308 + ], + "score": 0.32, + "latex": "\\mathbf { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 482, + 276, + 562, + 276, + 562, + 308, + 482, + 308 + ], + "score": 0.27, + "latex": "r , \\tilde { \\epsilon } , \\tilde { \\epsilon } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 424, + 1204, + 446, + 1204, + 446, + 1233, + 424, + 1233 + ], + "score": 0.26, + "latex": "\\mathrm { w }" + }, + { + "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, + 1342.0, + 706.0, + 1342.0, + 706.0, + 1375.0, + 296.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 890.0, + 735.0, + 890.0, + 735.0, + 939.0, + 291.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 486.0, + 567.0, + 486.0, + 567.0, + 534.0, + 293.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 662.0, + 224.0, + 662.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1838.0, + 1401.0, + 1838.0, + 1401.0, + 1861.0, + 1380.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1431.0, + 586.0, + 1431.0, + 586.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1431.0, + 742.0, + 1431.0, + 742.0, + 1472.0, + 730.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1431.0, + 953.0, + 1431.0, + 953.0, + 1472.0, + 893.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1431.0, + 1406.0, + 1431.0, + 1406.0, + 1472.0, + 1060.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1457.0, + 876.0, + 1457.0, + 876.0, + 1520.0, + 288.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1457.0, + 1413.0, + 1457.0, + 1413.0, + 1520.0, + 1186.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1503.0, + 1128.0, + 1503.0, + 1128.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1536.0, + 1214.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 603.0, + 1531.0, + 603.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1568.0, + 705.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1562.0, + 802.0, + 1562.0, + 802.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1562.0, + 1064.0, + 1562.0, + 1064.0, + 1599.0, + 905.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1562.0, + 1161.0, + 1562.0, + 1161.0, + 1599.0, + 1079.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1139.0, + 375.0, + 1139.0, + 375.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1139.0, + 539.0, + 1139.0, + 539.0, + 1175.0, + 505.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1139.0, + 786.0, + 1139.0, + 786.0, + 1175.0, + 652.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1139.0, + 1193.0, + 1139.0, + 1193.0, + 1175.0, + 951.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1175.0, + 1264.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1173.0, + 778.0, + 1173.0, + 778.0, + 1209.0, + 364.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1173.0, + 1038.0, + 1173.0, + 1038.0, + 1209.0, + 987.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1209.0, + 1136.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1200.0, + 423.0, + 1200.0, + 423.0, + 1240.0, + 291.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1200.0, + 1406.0, + 1200.0, + 1406.0, + 1240.0, + 447.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1238.0, + 566.0, + 1238.0, + 566.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1238.0, + 859.0, + 1238.0, + 859.0, + 1272.0, + 790.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1238.0, + 1409.0, + 1238.0, + 1409.0, + 1272.0, + 1190.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1270.0, + 555.0, + 1270.0, + 555.0, + 1302.0, + 294.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1270.0, + 1082.0, + 1270.0, + 1082.0, + 1302.0, + 583.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 1071.0, + 1606.0, + 1071.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1606.0, + 1183.0, + 1606.0, + 1183.0, + 1646.0, + 1174.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1606.0, + 1338.0, + 1606.0, + 1338.0, + 1646.0, + 1327.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1647.0, + 295.0, + 1647.0, + 295.0, + 1690.0, + 292.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1647.0, + 455.0, + 1647.0, + 455.0, + 1690.0, + 445.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1647.0, + 641.0, + 1647.0, + 641.0, + 1690.0, + 633.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1647.0, + 758.0, + 1647.0, + 758.0, + 1690.0, + 749.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1647.0, + 924.0, + 1647.0, + 924.0, + 1690.0, + 867.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1692.0, + 1198.0, + 1692.0, + 1198.0, + 1723.0, + 296.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1692.0, + 1404.0, + 1692.0, + 1404.0, + 1723.0, + 1351.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1718.0, + 296.0, + 1718.0, + 296.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1718.0, + 734.0, + 1718.0, + 734.0, + 1758.0, + 409.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1718.0, + 1022.0, + 1718.0, + 1022.0, + 1758.0, + 916.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1758.0, + 1092.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1748.0, + 296.0, + 1748.0, + 296.0, + 1796.0, + 292.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1748.0, + 966.0, + 1748.0, + 966.0, + 1796.0, + 956.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1633.5, + 1412.0, + 1633.5, + 1412.0, + 1702.5, + 963.0, + 1702.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1907.0, + 750.0, + 1907.0, + 750.0, + 1943.0, + 293.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1907.0, + 890.0, + 1907.0, + 890.0, + 1943.0, + 838.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1907.0, + 1404.0, + 1907.0, + 1404.0, + 1943.0, + 995.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1935.0, + 639.0, + 1935.0, + 639.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1935.0, + 1313.0, + 1935.0, + 1313.0, + 1977.0, + 727.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1935.0, + 1405.0, + 1935.0, + 1405.0, + 1977.0, + 1402.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 590.0, + 1969.0, + 590.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2009.0, + 762.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 574.0, + 2003.0, + 574.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2036.0, + 677.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 740.0, + 495.0, + 740.0, + 495.0, + 793.0, + 289.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 740.0, + 973.0, + 740.0, + 973.0, + 793.0, + 891.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 740.0, + 1407.0, + 740.0, + 1407.0, + 793.0, + 1182.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 787.0, + 355.0, + 787.0, + 355.0, + 828.0, + 293.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 787.0, + 937.0, + 787.0, + 937.0, + 828.0, + 424.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 787.0, + 1403.0, + 787.0, + 1403.0, + 828.0, + 1172.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 792.0, + 821.0, + 792.0, + 863.0, + 293.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 821.0, + 1072.0, + 821.0, + 1072.0, + 863.0, + 1058.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 534.0, + 798.0, + 534.0, + 798.0, + 567.0, + 309.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 566.0, + 338.0, + 566.0, + 338.0, + 597.0, + 309.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 562.0, + 686.0, + 562.0, + 686.0, + 601.0, + 367.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 562.0, + 903.0, + 562.0, + 903.0, + 601.0, + 722.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 597.0, + 338.0, + 597.0, + 338.0, + 628.0, + 309.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 589.0, + 684.0, + 589.0, + 684.0, + 633.0, + 368.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 589.0, + 766.0, + 589.0, + 766.0, + 633.0, + 728.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 627.0, + 338.0, + 627.0, + 338.0, + 659.0, + 309.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 621.0, + 506.0, + 621.0, + 506.0, + 662.0, + 397.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 621.0, + 717.0, + 621.0, + 717.0, + 662.0, + 703.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 658.0, + 338.0, + 658.0, + 338.0, + 689.0, + 308.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 651.0, + 583.0, + 651.0, + 583.0, + 695.0, + 395.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 651.0, + 828.0, + 651.0, + 828.0, + 695.0, + 602.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 651.0, + 940.0, + 651.0, + 940.0, + 695.0, + 857.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 651.0, + 1179.0, + 651.0, + 1179.0, + 695.0, + 1168.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 690.0, + 338.0, + 690.0, + 338.0, + 720.0, + 309.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 687.0, + 889.0, + 687.0, + 889.0, + 721.0, + 371.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 955.0, + 1406.0, + 955.0, + 1406.0, + 992.0, + 293.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 987.0, + 1399.0, + 987.0, + 1399.0, + 1023.0, + 295.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1830.0, + 901.0, + 1830.0, + 901.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 269.0, + 384.0, + 269.0, + 384.0, + 316.0, + 294.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 283.0, + 387.0, + 283.0, + 387.0, + 313.0, + 300.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 304.0, + 586.0, + 304.0, + 586.0, + 345.0, + 306.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 304.0, + 1405.0, + 304.0, + 1405.0, + 345.0, + 657.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 336.0, + 852.0, + 336.0, + 852.0, + 385.0, + 303.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 336.0, + 1079.0, + 336.0, + 1079.0, + 385.0, + 881.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 336.0, + 1210.0, + 336.0, + 1210.0, + 385.0, + 1104.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 336.0, + 1406.0, + 336.0, + 1406.0, + 385.0, + 1401.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 372.0, + 595.0, + 372.0, + 595.0, + 413.0, + 339.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 414.0, + 424.0, + 414.0, + 424.0, + 459.0, + 306.0, + 459.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 462, + 1388, + 1224, + 1388, + 1224, + 1558, + 462, + 1558 + ], + "score": 0.979, + "html": "
#sample#feature#sample#feature
a9a32.561123w8a49,749300
ijcnn49,99022phishing7,60468
codrna28.3058mnist60,000784
epsilon40,0002,000
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1798, + 1407, + 1798, + 1407, + 1923, + 297, + 1923 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 296, + 232, + 1398, + 232, + 1398, + 920, + 296, + 920 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1185, + 1406, + 1185, + 1406, + 1320, + 300, + 1320 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 294, + 1054, + 1401, + 1054, + 1401, + 1118, + 294, + 1118 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 297, + 1947, + 1404, + 1947, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 702, + 1131, + 995, + 1131, + 995, + 1172, + 702, + 1172 + ], + "score": 0.936 + }, + { + "category_id": 6, + "poly": [ + 578, + 1332, + 1120, + 1332, + 1120, + 1366, + 578, + 1366 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.908 + }, + { + "category_id": 4, + "poly": [ + 293, + 955, + 1401, + 955, + 1401, + 1019, + 293, + 1019 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1136, + 1400, + 1136, + 1400, + 1166, + 1352, + 1166 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 299, + 1741, + 745, + 1741, + 745, + 1773, + 299, + 1773 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 297, + 1603, + 912, + 1603, + 912, + 1639, + 297, + 1639 + ], + "score": 0.547 + }, + { + "category_id": 6, + "poly": [ + 297, + 1603, + 912, + 1603, + 912, + 1639, + 297, + 1639 + ], + "score": 0.384 + }, + { + "category_id": 13, + "poly": [ + 298, + 1284, + 458, + 1284, + 458, + 1321, + 298, + 1321 + ], + "score": 0.92, + "latex": "\\sqrt { n } / \\epsilon ^ { 2 } , \\dot { 1 } / \\epsilon ^ { 3 } \\} ," + }, + { + "category_id": 13, + "poly": [ + 921, + 1974, + 1057, + 1974, + 1057, + 2005, + 921, + 2005 + ], + "score": 0.92, + "latex": "\\overline { { n } } \\geq \\Omega ( 1 / \\epsilon ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 701, + 1132, + 998, + 1132, + 998, + 1171, + 701, + 1171 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\| \\nabla f _ { i } ( \\mathbf { x } ) - \\nabla F ( \\mathbf { x } ) \\| \\leq \\sigma . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 726, + 1255, + 829, + 1255, + 829, + 1286, + 726, + 1286 + ], + "score": 0.91, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } ^ { + } }" + }, + { + "category_id": 13, + "poly": [ + 892, + 1216, + 1396, + 1216, + 1396, + 1253, + 892, + 1253 + ], + "score": 0.9, + "latex": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 7 5 } , n ^ { 0 . 5 } / \\epsilon ^ { 2 } + 1 / \\epsilon ^ { 2 . 7 5 } , 1 / \\epsilon ^ { 3 } \\} ) ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 812, + 1288, + 913, + 1288, + 913, + 1318, + 812, + 1318 + ], + "score": 0.89, + "latex": "{ \\mathrm { S T R } } _ { \\mathrm { f r e e } } +" + }, + { + "category_id": 13, + "poly": [ + 950, + 1254, + 1412, + 1254, + 1412, + 1289, + 950, + 1289 + ], + "score": 0.88, + "latex": "\\tilde { \\mathcal { O } } ( d \\operatorname* { m i n } \\{ n / \\epsilon ^ { 1 . 5 } + n ^ { 0 . 7 5 } / \\epsilon ^ { 1 . 7 5 } , 1 / \\epsilon ^ { 2 . 5 } +" + }, + { + "category_id": 13, + "poly": [ + 679, + 1288, + 763, + 1288, + 763, + 1318, + 679, + 1318 + ], + "score": 0.88, + "latex": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1220, + 504, + 1220, + 504, + 1252, + 418, + 1252 + ], + "score": 0.87, + "latex": "{ \\mathrm { { S T R } } } _ { \\mathrm { { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1289, + 1398, + 1289, + 1398, + 1318, + 1277, + 1318 + ], + "score": 0.8, + "latex": "\\mathrm { S R V R C _ { \\mathrm { f r e e } } }" + }, + { + "category_id": 13, + "poly": [ + 695, + 1091, + 715, + 1091, + 715, + 1113, + 695, + 1113 + ], + "score": 0.73, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 234.0, + 605.0, + 234.0, + 605.0, + 268.0, + 548.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 231.0, + 1161.0, + 231.0, + 1161.0, + 269.0, + 1094.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 284.0, + 474.0, + 284.0, + 474.0, + 293.0, + 464.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 278.0, + 510.0, + 278.0, + 510.0, + 301.0, + 476.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 282.0, + 782.0, + 282.0, + 782.0, + 304.0, + 729.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 284.0, + 1020.0, + 284.0, + 1020.0, + 293.0, + 1010.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 278.0, + 1057.0, + 278.0, + 1057.0, + 301.0, + 1024.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 282.0, + 1329.0, + 282.0, + 1329.0, + 305.0, + 1280.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 295.0, + 525.0, + 295.0, + 525.0, + 343.0, + 453.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 314.0, + 625.0, + 314.0, + 625.0, + 329.0, + 608.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 299.0, + 797.0, + 299.0, + 797.0, + 346.0, + 726.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 295.0, + 1074.0, + 295.0, + 1074.0, + 342.0, + 1001.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 311.0, + 1170.0, + 311.0, + 1170.0, + 322.0, + 1160.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 326.0, + 1216.0, + 326.0, + 1216.0, + 337.0, + 1205.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 299.0, + 1344.0, + 299.0, + 1344.0, + 346.0, + 1274.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 336.0, + 350.0, + 336.0, + 350.0, + 441.0, + 299.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 336.0, + 569.0, + 336.0, + 569.0, + 381.0, + 453.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 334.0, + 627.0, + 334.0, + 627.0, + 442.0, + 574.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 367.0, + 709.0, + 367.0, + 709.0, + 377.0, + 699.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 338.0, + 839.0, + 338.0, + 839.0, + 384.0, + 723.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 338.0, + 875.0, + 338.0, + 875.0, + 439.0, + 843.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 349.0, + 900.0, + 349.0, + 900.0, + 369.0, + 876.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 336.0, + 1119.0, + 336.0, + 1119.0, + 384.0, + 1004.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 335.0, + 1174.0, + 335.0, + 1174.0, + 443.0, + 1120.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 337.0, + 1260.0, + 337.0, + 1260.0, + 348.0, + 1248.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 338.0, + 1388.0, + 338.0, + 1388.0, + 385.0, + 1274.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 377.0, + 546.0, + 377.0, + 546.0, + 405.0, + 476.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 380.0, + 816.0, + 380.0, + 816.0, + 405.0, + 728.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 389.0, + 973.0, + 389.0, + 973.0, + 409.0, + 958.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 384.0, + 1021.0, + 384.0, + 1021.0, + 395.0, + 1009.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 377.0, + 1094.0, + 377.0, + 1094.0, + 405.0, + 1025.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 380.0, + 1363.0, + 380.0, + 1363.0, + 405.0, + 1278.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 401.0, + 350.0, + 401.0, + 350.0, + 416.0, + 332.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 397.0, + 520.0, + 397.0, + 520.0, + 423.0, + 478.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 404.0, + 625.0, + 404.0, + 625.0, + 417.0, + 603.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 400.0, + 792.0, + 400.0, + 792.0, + 426.0, + 749.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 397.0, + 901.0, + 397.0, + 901.0, + 416.0, + 876.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 397.0, + 1069.0, + 397.0, + 1069.0, + 423.0, + 1025.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 399.0, + 1174.0, + 399.0, + 1174.0, + 417.0, + 1149.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 397.0, + 1239.0, + 397.0, + 1239.0, + 409.0, + 1226.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 407.0, + 1290.0, + 407.0, + 1290.0, + 416.0, + 1280.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 400.0, + 1340.0, + 400.0, + 1340.0, + 426.0, + 1296.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 412.0, + 1259.0, + 412.0, + 1259.0, + 422.0, + 1246.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 422.0, + 839.0, + 422.0, + 839.0, + 437.0, + 823.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 444.0, + 351.0, + 444.0, + 351.0, + 463.0, + 326.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 447.0, + 483.0, + 447.0, + 483.0, + 466.0, + 468.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 445.0, + 625.0, + 445.0, + 625.0, + 463.0, + 599.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 444.0, + 900.0, + 444.0, + 900.0, + 463.0, + 872.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 444.0, + 1173.0, + 444.0, + 1173.0, + 463.0, + 1146.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 489.0, + 900.0, + 489.0, + 900.0, + 507.0, + 872.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 497.0, + 419.0, + 497.0, + 419.0, + 521.0, + 387.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 501.0, + 463.0, + 501.0, + 463.0, + 517.0, + 448.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 497.0, + 524.0, + 497.0, + 524.0, + 521.0, + 495.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 501.0, + 570.0, + 501.0, + 570.0, + 518.0, + 554.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 500.0, + 684.0, + 500.0, + 684.0, + 519.0, + 664.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 500.0, + 739.0, + 500.0, + 739.0, + 519.0, + 714.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 500.0, + 792.0, + 500.0, + 792.0, + 519.0, + 769.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 497.0, + 847.0, + 497.0, + 847.0, + 521.0, + 819.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 501.0, + 903.0, + 501.0, + 903.0, + 517.0, + 888.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 498.0, + 966.0, + 498.0, + 966.0, + 521.0, + 935.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 502.0, + 1007.0, + 502.0, + 1007.0, + 514.0, + 996.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 497.0, + 1072.0, + 497.0, + 1072.0, + 521.0, + 1041.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 500.0, + 1120.0, + 500.0, + 1120.0, + 519.0, + 1100.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 501.0, + 1230.0, + 501.0, + 1230.0, + 518.0, + 1215.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 498.0, + 1286.0, + 498.0, + 1286.0, + 519.0, + 1263.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 497.0, + 1342.0, + 497.0, + 1342.0, + 521.0, + 1314.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 500.0, + 1393.0, + 500.0, + 1393.0, + 519.0, + 1368.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 511.0, + 519.0, + 511.0, + 519.0, + 538.0, + 400.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 512.0, + 767.0, + 512.0, + 767.0, + 537.0, + 694.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 511.0, + 1066.0, + 511.0, + 1066.0, + 538.0, + 948.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 508.0, + 1317.0, + 508.0, + 1317.0, + 541.0, + 1241.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 545.0, + 1067.0, + 545.0, + 1067.0, + 576.0, + 632.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 583.0, + 604.0, + 583.0, + 604.0, + 615.0, + 545.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 581.0, + 1154.0, + 581.0, + 1154.0, + 617.0, + 1092.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 622.0, + 511.0, + 622.0, + 511.0, + 647.0, + 459.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 625.0, + 783.0, + 625.0, + 783.0, + 650.0, + 724.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 626.0, + 1055.0, + 626.0, + 1055.0, + 650.0, + 1022.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 633.0, + 1294.0, + 633.0, + 1294.0, + 641.0, + 1280.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 626.0, + 1329.0, + 626.0, + 1329.0, + 649.0, + 1296.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 649.0, + 349.0, + 649.0, + 349.0, + 658.0, + 339.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 640.0, + 525.0, + 640.0, + 525.0, + 668.0, + 453.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 650.0, + 625.0, + 650.0, + 625.0, + 663.0, + 608.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 642.0, + 797.0, + 642.0, + 797.0, + 671.0, + 728.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 644.0, + 1070.0, + 644.0, + 1070.0, + 672.0, + 1001.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 642.0, + 1344.0, + 642.0, + 1344.0, + 671.0, + 1274.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 661.0, + 524.0, + 661.0, + 524.0, + 687.0, + 476.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 662.0, + 796.0, + 662.0, + 796.0, + 691.0, + 731.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 665.0, + 1067.0, + 665.0, + 1067.0, + 691.0, + 1021.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 663.0, + 1343.0, + 663.0, + 1343.0, + 689.0, + 1289.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 681.0, + 352.0, + 681.0, + 352.0, + 783.0, + 301.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 681.0, + 535.0, + 681.0, + 535.0, + 709.0, + 454.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 681.0, + 627.0, + 681.0, + 627.0, + 785.0, + 573.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 682.0, + 806.0, + 682.0, + 806.0, + 710.0, + 723.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 683.0, + 875.0, + 683.0, + 875.0, + 783.0, + 843.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 694.0, + 900.0, + 694.0, + 900.0, + 713.0, + 877.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 683.0, + 1079.0, + 683.0, + 1079.0, + 711.0, + 1002.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 678.0, + 1153.0, + 678.0, + 1153.0, + 785.0, + 1120.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 695.0, + 1170.0, + 695.0, + 1170.0, + 704.0, + 1160.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 682.0, + 1354.0, + 682.0, + 1354.0, + 710.0, + 1274.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 703.0, + 569.0, + 703.0, + 569.0, + 727.0, + 479.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 707.0, + 709.0, + 707.0, + 709.0, + 718.0, + 699.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 704.0, + 839.0, + 704.0, + 839.0, + 729.0, + 749.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 704.0, + 1112.0, + 704.0, + 1112.0, + 729.0, + 1021.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 702.0, + 1240.0, + 702.0, + 1240.0, + 715.0, + 1224.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 705.0, + 1260.0, + 705.0, + 1260.0, + 719.0, + 1244.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 704.0, + 1388.0, + 704.0, + 1388.0, + 729.0, + 1296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 716.0, + 1239.0, + 716.0, + 1239.0, + 726.0, + 1228.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 723.0, + 545.0, + 723.0, + 545.0, + 747.0, + 478.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 723.0, + 817.0, + 723.0, + 817.0, + 751.0, + 728.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 730.0, + 1021.0, + 730.0, + 1021.0, + 743.0, + 1004.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 720.0, + 1089.0, + 720.0, + 1089.0, + 751.0, + 1022.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 725.0, + 1173.0, + 725.0, + 1173.0, + 741.0, + 1156.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 723.0, + 1364.0, + 723.0, + 1364.0, + 751.0, + 1274.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 741.0, + 350.0, + 741.0, + 350.0, + 756.0, + 331.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 742.0, + 521.0, + 742.0, + 521.0, + 768.0, + 478.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 741.0, + 627.0, + 741.0, + 627.0, + 758.0, + 600.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 743.0, + 792.0, + 743.0, + 792.0, + 769.0, + 748.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 741.0, + 900.0, + 741.0, + 900.0, + 759.0, + 876.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 743.0, + 1066.0, + 743.0, + 1066.0, + 769.0, + 1022.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 753.0, + 1173.0, + 753.0, + 1173.0, + 773.0, + 1151.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 743.0, + 1339.0, + 743.0, + 1339.0, + 769.0, + 1294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 769.0, + 1115.0, + 769.0, + 1115.0, + 787.0, + 1079.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 787.0, + 351.0, + 787.0, + 351.0, + 805.0, + 326.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 789.0, + 529.0, + 789.0, + 529.0, + 805.0, + 513.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 785.0, + 628.0, + 785.0, + 628.0, + 807.0, + 598.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 793.0, + 732.0, + 793.0, + 732.0, + 805.0, + 721.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 788.0, + 900.0, + 788.0, + 900.0, + 806.0, + 873.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 783.0, + 1171.0, + 783.0, + 1171.0, + 803.0, + 1149.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 817.0, + 569.0, + 817.0, + 569.0, + 836.0, + 544.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 817.0, + 1171.0, + 817.0, + 1171.0, + 836.0, + 1149.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 842.0, + 523.0, + 842.0, + 523.0, + 881.0, + 387.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 844.0, + 570.0, + 844.0, + 570.0, + 862.0, + 554.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 843.0, + 684.0, + 843.0, + 684.0, + 864.0, + 664.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 843.0, + 792.0, + 843.0, + 792.0, + 883.0, + 693.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 843.0, + 846.0, + 843.0, + 846.0, + 863.0, + 819.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 846.0, + 946.0, + 846.0, + 946.0, + 862.0, + 928.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 844.0, + 1071.0, + 844.0, + 1071.0, + 881.0, + 947.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 843.0, + 1120.0, + 843.0, + 1120.0, + 863.0, + 1094.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 846.0, + 1178.0, + 846.0, + 1178.0, + 860.0, + 1163.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 844.0, + 1219.0, + 844.0, + 1219.0, + 862.0, + 1204.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 843.0, + 1317.0, + 843.0, + 1317.0, + 884.0, + 1240.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 843.0, + 1348.0, + 843.0, + 1348.0, + 863.0, + 1328.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 843.0, + 1393.0, + 843.0, + 1393.0, + 863.0, + 1368.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 888.0, + 1026.0, + 888.0, + 1026.0, + 922.0, + 674.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.75, + 303.5, + 417.75, + 303.5, + 417.75, + 340.5, + 360.75, + 340.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 275.0, + 620.0, + 275.0, + 620.0, + 283.0, + 615.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.25, + 291.0, + 647.25, + 291.0, + 647.25, + 308.0, + 634.25, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 385.0, + 476.0, + 385.0, + 476.0, + 394.0, + 458.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.75, + 490.0, + 348.75, + 490.0, + 348.75, + 513.0, + 334.75, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 492.0, + 625.0, + 492.0, + 625.0, + 513.0, + 607.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 497.0, + 1169.0, + 497.0, + 1169.0, + 511.0, + 1160.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 655.0, + 961.0, + 655.0, + 961.0, + 684.0, + 901.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.75, + 834.0, + 349.75, + 834.0, + 349.75, + 857.0, + 334.75, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.25, + 834.5, + 624.25, + 834.5, + 624.25, + 858.0, + 609.25, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 836.0, + 897.0, + 836.0, + 897.0, + 858.5, + 883.0, + 858.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1981.0, + 330.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 920.0, + 1972.0, + 920.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1972.0, + 1069.0, + 1972.0, + 1069.0, + 2008.0, + 1058.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2001.0, + 902.0, + 2001.0, + 902.0, + 2037.0, + 329.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1328.0, + 1121.0, + 1328.0, + 1121.0, + 1370.0, + 574.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 951.0, + 1406.0, + 951.0, + 1406.0, + 995.0, + 292.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 986.0, + 551.0, + 986.0, + 551.0, + 1022.0, + 295.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1739.0, + 750.0, + 1739.0, + 750.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1600.0, + 913.0, + 1600.0, + 913.0, + 1643.0, + 293.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1600.0, + 913.0, + 1600.0, + 913.0, + 1643.0, + 293.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1407.0, + 1797.0, + 1407.0, + 1834.0, + 294.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1828.0, + 1409.0, + 1828.0, + 1409.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1894.0, + 296.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1890.0, + 1312.0, + 1890.0, + 1312.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1184.0, + 1407.0, + 1184.0, + 1407.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1212.0, + 417.0, + 1212.0, + 417.0, + 1259.0, + 291.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1212.0, + 891.0, + 1212.0, + 891.0, + 1259.0, + 505.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1212.0, + 1410.0, + 1212.0, + 1410.0, + 1259.0, + 1397.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1250.0, + 725.0, + 1250.0, + 725.0, + 1290.0, + 291.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1250.0, + 949.0, + 1250.0, + 949.0, + 1290.0, + 830.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1281.0, + 678.0, + 1281.0, + 678.0, + 1326.0, + 459.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1281.0, + 811.0, + 1281.0, + 811.0, + 1326.0, + 764.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1281.0, + 1276.0, + 1281.0, + 1276.0, + 1326.0, + 914.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1281.0, + 1411.0, + 1281.0, + 1411.0, + 1326.0, + 1399.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 1403.0, + 1051.0, + 1403.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1083.0, + 694.0, + 1083.0, + 694.0, + 1119.0, + 294.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1083.0, + 938.0, + 1083.0, + 938.0, + 1119.0, + 716.0, + 1119.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 616, + 1404, + 616, + 1404, + 862, + 298, + 862 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1405, + 229, + 1405, + 385, + 299, + 385 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 398, + 1404, + 398, + 1404, + 521, + 299, + 521 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 300, + 559, + 618, + 559, + 618, + 591, + 300, + 591 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 104, + 298, + 104 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 13, + "poly": [ + 1223, + 261, + 1397, + 261, + 1397, + 295, + 1223, + 295 + ], + "score": 0.92, + "latex": "\\{ 0 . 2 n , 0 . 6 n , n \\}" + }, + { + "category_id": 13, + "poly": [ + 392, + 292, + 615, + 292, + 615, + 324, + 392, + 324 + ], + "score": 0.89, + "latex": "\\lbrace 0 . 0 1 n , 0 . 1 n , 0 . 2 n \\rbrace" + }, + { + "category_id": 13, + "poly": [ + 945, + 460, + 1024, + 460, + 1024, + 490, + 945, + 490 + ], + "score": 0.88, + "latex": "d ^ { 2 } + d" + }, + { + "category_id": 13, + "poly": [ + 942, + 428, + 1055, + 428, + 1055, + 461, + 942, + 461 + ], + "score": 0.88, + "latex": "2 ( d ^ { 2 } + d )" + }, + { + "category_id": 13, + "poly": [ + 801, + 289, + 1129, + 289, + 1129, + 324, + 801, + 324 + ], + "score": 0.87, + "latex": "\\{ 0 . 0 1 n ^ { 0 . 5 } , 0 . 0 5 n ^ { 0 . 5 } , 0 . 1 n ^ { 0 . 5 } \\}" + }, + { + "category_id": 13, + "poly": [ + 616, + 327, + 646, + 327, + 646, + 353, + 616, + 353 + ], + "score": 0.86, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 705, + 295, + 736, + 295, + 736, + 323, + 705, + 323 + ], + "score": 0.86, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 569, + 357, + 599, + 357, + 599, + 385, + 569, + 385 + ], + "score": 0.85, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 265, + 1157, + 265, + 1157, + 292, + 1128, + 292 + ], + "score": 0.83, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 625, + 295, + 656, + 295, + 656, + 323, + 625, + 323 + ], + "score": 0.83, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 296, + 326, + 296, + 326, + 322, + 297, + 322 + ], + "score": 0.81, + "latex": "s _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 560.0, + 621.0, + 560.0, + 621.0, + 593.0, + 294.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 618.0, + 1405.0, + 618.0, + 1405.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 645.0, + 1405.0, + 645.0, + 1405.0, + 684.0, + 293.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 679.0, + 1402.0, + 679.0, + 1402.0, + 713.0, + 296.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 708.0, + 1406.0, + 708.0, + 1406.0, + 743.0, + 293.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 738.0, + 1404.0, + 738.0, + 1404.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 800.0, + 1404.0, + 800.0, + 1404.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 832.0, + 1205.0, + 832.0, + 1205.0, + 865.0, + 296.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1409.0, + 228.0, + 1409.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1127.0, + 258.0, + 1127.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 258.0, + 1222.0, + 258.0, + 1222.0, + 298.0, + 1158.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 258.0, + 1409.0, + 258.0, + 1409.0, + 298.0, + 1398.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 284.0, + 296.0, + 284.0, + 296.0, + 330.0, + 290.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 284.0, + 391.0, + 284.0, + 391.0, + 330.0, + 327.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 284.0, + 624.0, + 284.0, + 624.0, + 330.0, + 616.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 284.0, + 704.0, + 284.0, + 704.0, + 330.0, + 657.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 284.0, + 800.0, + 284.0, + 800.0, + 330.0, + 737.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 284.0, + 1411.0, + 284.0, + 1411.0, + 330.0, + 1130.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 322.0, + 615.0, + 322.0, + 615.0, + 355.0, + 297.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 322.0, + 1403.0, + 322.0, + 1403.0, + 355.0, + 647.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 568.0, + 351.0, + 568.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 351.0, + 1308.0, + 351.0, + 1308.0, + 388.0, + 600.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 433.0, + 294.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 941.0, + 428.0, + 941.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 428.0, + 1406.0, + 428.0, + 1406.0, + 464.0, + 1056.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 944.0, + 458.0, + 944.0, + 496.0, + 292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 458.0, + 1405.0, + 458.0, + 1405.0, + 496.0, + 1025.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 488.0, + 1408.0, + 488.0, + 1408.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ.md b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ.md new file mode 100644 index 0000000000000000000000000000000000000000..eb40ff8f5cf8798c77e8193600dce7f29e18a987 --- /dev/null +++ b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ.md @@ -0,0 +1,248 @@ +# CoAtNet: Marrying Convolution and Attention for All Data Sizes + +Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan Google Research, Brain Team {zihangd,hanxiaol,qvl,tanmingxing}@google.com + +# Abstract + +Transformers have attracted increasing interests in computer vision, but they still fall behind state-of-the-art convolutional networks. In this work, we show that while Transformers tend to have larger model capacity, their generalization can be worse than convolutional networks due to the lack of the right inductive bias. To effectively combine the strengths from both architectures, we present CoAtNets (pronounced “coat” nets), a family of hybrid models built from two key insights: (1) depthwise Convolution and self-Attention can be naturally unified via simple relative attention; (2) vertically stacking convolution layers and attention layers in a principled way is surprisingly effective in improving generalization, capacity and efficiency. Experiments show that our CoAtNets achieve state-of-the-art performance under different resource constraints across various datasets: Without extra data, CoAtNet achieves $8 6 . 0 \%$ ImageNet top-1 accuracy; When pre-trained with 13M images from ImageNet-21K, our CoAtNet achieves $8 8 . 5 6 \%$ top-1 accuracy, matching ViT-huge pre-trained with 300M images from JFT-300M while using $2 3 \mathrm { x }$ less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves $9 0 . 8 8 \%$ top-1 accuracy on ImageNet, establishing a new state-of-the-art result. + +# 1 Introduction + +Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of self-attention models like Transformers [6] in natural language processing [7, 8], many previous works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers, one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher capacity at scale than ConvNets. + +While ViT has shown impressive results with enormous JFT 300M training images, its performance still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training, the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA convolution-only models on ImageNet classification given the same amount of data and computation [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases possessed by ConvNets, and thus require significant amount of data and computational resource to compensate. Not surprisingly, many recent works have been trying to incorporate the inductive biases of ConvNets into Transformer models, by imposing local receptive fields for attention layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a particular property, lacking a systematic understanding of the respective roles of convolution and attention when combined. + +In this work, we systematically study the problem of hybridizing convolution and attention from two fundamental aspects in machine learning – generalization and model capacity. Our study shows that convolutional layers tend to have better generalization with faster converging speed thanks to their strong prior of inductive bias, while attention layers have higher model capacity that can benefit from larger datasets. Combining convolutional and attention layers can achieve better generalization and capacity; however, a key challenge here is how to effectively combine them to achieve better trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we observe that the commonly used depthwise convolution can be effectively merged into attention layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a proper way, could be surprisingly effective to achieve better generalization and capacity. Based on these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys the strengths from both ConvNets and Transformers. + +Our CoAtNet achieves SOTA performances under comparable resource constraints across different data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not only enjoys the superior scalability of Transformer models, but also achieves faster convergence and thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves $8 6 . 0 \%$ top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches $8 8 . 5 6 \%$ top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on JFT-300M, a $2 3 \times$ larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to $9 0 . 8 8 \%$ while using $1 . 5 \mathrm { x }$ less computation of the prior art set by ViT-G/14 [26]. + +# 2 Model + +In the section, we focus on the question of how to “optimally” combine the convolution and transformer. Roughly speaking, we decompose the question into two parts: + +1. How to combine the convolution and self-attention within one basic computational block? 2. How to vertically stack different types of computational blocks together to form a complete network? + +The rationale of the decomposition will become clearer as we gradually reveal our design choices. + +# 2.1 Merging Convolution and Self-Attention + +For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolution [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the channel size of the input by $4 \mathbf { x }$ and later project the the $4 \mathbf { x }$ -wide hidden state back to the original channel size to enable residual connection. + +Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive field + +$$ +y _ { i } = \sum _ { j \in \mathcal { L } ( i ) } w _ { i - j } \odot x _ { j } \quad \mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } , +$$ + +where $x _ { i } , y _ { i } \in \mathbb { R } ^ { D }$ are the input and output at position $i$ respectively, and $\mathcal { L } ( i )$ denotes a local neighborhood of $i$ , e.g., a 3x3 grid centered at $i$ in image processing. + +In comparison, self-attention allows the receptive field to be the entire spatial locations and computes the weights based on the re-normalized pairwise similarity between the pair $( x _ { i } , x _ { j } )$ : 2 + +$$ +y _ { i } = \sum _ { j \in \mathcal { G } } \underbrace { \frac { \exp { \left( x _ { i } ^ { \top } x _ { j } \right) } } { \sum _ { k \in \mathcal { G } } \exp { \left( x _ { i } ^ { \top } x _ { k } \right) } } } _ { A _ { i , j } } x _ { j } \quad \mathrm { ( s e l f - a t t e n t i o n ) } , +$$ + +where $\mathcal { G }$ indicates the global spatial space. Before getting into the question of how to best combine them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out the good properties we hope to retain. + +• First of all, the depthwise convolution kernel $w _ { i - j }$ is an input-independent parameter of static value, while the attention weight $A _ { i , j }$ dynamically depends on the representation of the input. Hence, it is much easier for the self-attention to capture complicated relational interactions between different spatial positions, a property that we desire most when processing high-level concepts. However, the flexibility comes with a risk of easier overfitting, especially when data is limited. • Secondly, notice that given any position pair $( i , j )$ , the corresponding convolution weight $w _ { i - j }$ only cares about the relative shift between them, i.e. $i - j$ , rather than the specific values of $i$ or $j$ . This property is often referred to translation equivalence, which has been found to improve generalization under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than Transformers when the dataset is not enormously large. • Finally, the size of the receptive field is one of the most crucial differences between self-attention and convolution. Generally speaking, a larger receptive field provides more contextual information, which could lead to higher model capacity. Hence, the global receptive field has been a key motivation to employ self-attention in vision. However, a large receptive field requires significantly more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size, which has been a fundamental trade-off in applying self-attention models. + +Table 1: Desirable properties found in convolution or self-attention. + +
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
+ +Given the comparison above, an ideal model should be able to combine the 3 desirable properties in Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a straightforward idea that could achieve this is simply to sum a global static convolution kernel with the adaptive attention matrix, either after or before the Softmax normalization, i.e., + +$$ +y _ { i } ^ { \mathrm { p o s t } } = \sum _ { j \in \mathcal { G } } \left( \frac { \exp \left( x _ { i } ^ { \top } x _ { j } \right) } { \sum _ { k \in \mathcal { G } } \exp \left( x _ { i } ^ { \top } x _ { k } \right) } + w _ { i - j } \right) x _ { j } \ \mathrm { ~ o r ~ } \ y _ { i } ^ { \mathrm { p e } } = \sum _ { j \in \mathcal { G } } \frac { \exp \left( x _ { i } ^ { \top } x _ { j } + w _ { i - j } \right) } { \sum _ { k \in \mathcal { G } } \exp \left( x _ { i } ^ { \top } x _ { k } + w _ { i - k } \right) } x _ { j } . +$$ + +Interestingly, while the idea seems overly simplified, the pre-normalization version $y ^ { \mathrm { p r e } }$ corresponds to a particular variant of relative self-attention [30, 31]. In this case, the attention weight $A _ { i , j }$ is decided jointly by the $w _ { i - j }$ of translation equivariance and the input-adaptive $x _ { i } ^ { \top } x _ { j }$ , which can enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable the global convolution kernel without blowing up the number of parameters, we have reloaded the notation of $w _ { i - j }$ as a scalar (i.e., $w \in \mathbb { R } ^ { O ( | \mathcal { G } | ) }$ ) rather than a vector in Eqn. (1). Another advantage of the scalar formulation of $w$ is that retrieving $w _ { i - j }$ for all $( i , j )$ is clearly subsumed by computing the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1). Given the benefits, we will use the Transformer block with the pre-normalization relative attention variant in Eqn. (3) as the key component of the proposed CoAtNet model. + +# 2.2 Vertical Layout Design + +After figuring out a neat way to combine convolution and attention, we next consider how to utilize it to stack an entire network. + +As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence, if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will be excessively slow due to the large number of pixels in any image of common sizes. Hence, to construct a network that is feasible in practice, we have mainly three options: + +(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention after the feature map reaches manageable level. +(B) Enforce local attention, which restricts the global receptive field $\mathcal { G }$ in attention to a local field $\mathcal { L }$ just like in convolution [22, 21]. +(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a linear complexity w.r.t. the spatial size [12, 32, 33]. + +We briefly experimented with option (C) without getting a reasonably good result. For option (B), we found that implementing local attention involves many non-trivial shape formatting operations that requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be extremely slow [34], which not only defeats the original purpose of speeding up global attention, but also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will focus on option (A) and compare our results with theirs in our empirical study (Section 4). + +For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets. With these choices, we derive a search space of 5 variants and compare them in controlled experiments. + +• When the ViT Stem is used, we directly stack $L$ Transformer blocks with relative attention, which we denote as $\mathrm { V I T } _ { \mathrm { R E L } }$ . +• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0, S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning of each stage, we always reduce the spatial size by $2 \mathbf { x }$ and increase the number of channels (see Appendix A.1 for the detailed down-sampling implementation). The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that convolution stages must appear before Transformer stages. The constraint is based on the prior that convolution is better at processing local patterns that are more common in early stages. This leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and C-T-T-T, where C and T denote Convolution and Transformer respectively. + +To systematically study the design choices, we consider two fundamental aspects generalization capability and model capacity: For generalization, we are interested in the gap between the training loss and the evaluation accuracy. If two models have the same training loss, then the model with higher evaluation accuracy has better generalization capability, since it can generalize better to unseen evaluation dataset. Generalization capability is particularly important to data efficiency when training data size is limited. For model capacity, we measure the ability to fit large training datasets. When training data is abundant and overfitting is not an issue, the model with higher capacity will achieve better final performance after reasonable training steps. Note that, since simply increasing the model size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model sizes of the 5 variants are comparable. + +To compare the generalization and model capacity, we train different variants of hybrid models on ImageNet-1K (1.3M) and JFT $\left( > 3 0 0 \mathbf { M } \right)$ dataset for 300 and 3 epochs respectively, both without any regularization or augmentation. The training loss and evaluation accuracy on both datasets are summarized in Figure 1. + +• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e., gap between train and evaluation metrics), we have + +$$ +\mathrm { C \mathrm { - } C \mathrm { - } C \mathrm { - } C \approx C \mathrm { - } C \mathrm { - } C \mathrm { - } T \ge C \mathrm { - } C \mathrm { - } T \mathrm { - } T > C \mathrm { - } T \mathrm { - } T \mathrm { - } T \gg V \mathrm { I } \mathrm { T } _ { \mathrm { R E L } } . } +$$ + +![](images/8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg) +Figure 1: Comparison for model generalization and capacity under different data size. For fair comparison, all models have similar parameter size and computational cost. + +Particularly, $\mathrm { V I T } _ { \mathrm { R E L } }$ is significantly worse than variants by a large margin, which we conjecture is related to the lack of proper low-level information processing in its aggressive down-sampling Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the model has, the smaller the generalization gap is. + +• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end of the training suggest the following ranking: + +$$ +\mathrm { C - C \mathrm { - } T \mathrm { - } T \approx C \mathrm { - } T \mathrm { - } T \mathrm { - } T > V I T _ { R E L } > C \mathrm { - } C \mathrm { - } C \mathrm { - } T > C \mathrm { - } C \mathrm { - } C \mathrm { - } C \mathrm { - } C \mathrm { . } } +$$ + +Importantly, this suggests that simply having more Transformer blocks does NOT necessarily mean higher capacity for visual processing. On one hand, while initially worse, $\mathrm { V I T } _ { \mathrm { R E L } }$ ultimately catch up with the two variants with more MBConv stages, indicating the capacity advantage of Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming $\mathrm { V I T } _ { \mathrm { R E L } }$ suggest that the ViT stem with an aggressive stride may have lost too much information and hence limit the model capacity. More interestingly, the fact that C-C-T-T $\approx \mathbf { C }$ -T-T-T indicates the for processing low-level information, static local operations like convolution could be as capable as adaptive global attention mechanism, while saving computation and memory usage substantially. + +Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer accuracy than C-T-T-T, despite the same pre-training performance. + +Table 2: Transferability test results. + +
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
+ +Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1. + +# 3 Related Work + +Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dominating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28] are popular in mobile platforms due to its lower computational cost and smaller parameter size [27]. Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this paper mostly employs MBConv as convolution building blocks. + +Self-attention and Transformers. With the key ingredients of self-attention, Transformers have been widely adopted for neural language processing and speech understanding. As an early work, stand-alone self-attention network [34] shows self-attention alone can work well for different vision tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited. Following that, many recent works have been focused on improving vision Transformers for data efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer readers to the dedicated surveys [36, 37]. + +Relative attention. Under the general name of relative attention, there have been various variants in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories: (a) the input-dependent version where the extra relative attention score is a function of the input states $f ( \bar { x } _ { i } , x _ { j } , \bar { i } - j )$ , and (b) the input-independent version $f ( i - j )$ . The variant in CoAtNet belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we neither share the relative attention parameters across layers nor use the bucketing mechanism. As a benefit of the input independence, obtaining $f ( i - j )$ for all $( i , j )$ pairs is computationally much cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be computed once and cached for future use. A recent work [22] also utilizes such an input-independent parameterization, but it restricts the receptive field to a local window. + +Combining convolution and self-attention. The idea of combining convolution and self-attention for vision recognition is not new. A common approach is to augment the ConvNet backbone with explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While self-attention usually improves the accuracy, they often come with extra computational cost and hence are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44]. + +While our work also belongs to this category, we show that our relative attention instantiation is a natural mixture of depthwise convolution and content-based attention with minimum additional cost. More importantly, starting from the perspectives of generalization and model capacity, we take a systematic approach to the vertical layout design and show how and why different network stages prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage (S2) when the overall size increases. On the other hand, compared to models employing local attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity, as S3 occupies the majority of the computation and parameters. + +# 4 Experiments + +In this section, we compare CoAtNet with previous results under comparable settings. For completeness, all the hyper-parameters not mentioned here are included in Appendix A.2. + +# 4.1 Experiment Setting + +CoAtNet model family. To compare with existing models of different sizes, we also design a family of CoAtNet models as summarized in Table 3. Overall, we always double the number of channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1. Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in S2 and S3. + +Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90 and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training. Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence, finetuning is always employed whenever input resolution changes. + +Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is always 4 and the expansion (shrink) rate for the SE is always 0.25. + +
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
+ +Data Augmentation & Regularization. In this work, we only consider two widely used data augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively, the specific hyper-parameters of the augmentation and regularization methods depend on model size and data scale, where strong regularization is usually applied for larger models and smaller dataset. + +Under the general principle, a complication under the current paradigm is how to adjust the regularization for pre-training and finetuning as data size can change. Specifically, we have an interesting observation that if a certain type of augmentation is entirely disabled during pre-training, simply turning it on during fine-tuning would most likely harm the performance rather than improving. We conjecture this could be related to data distribution shift. As a result, for certain runs of the proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can harm the pre-training metrics, this allows more versatile regularization and augmentation during finetuning, leading to improved down-stream performances. + +# 4.2 Main Results + +![](images/cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg) +Figure 2: Accuracy-to-FLOPs scaling curve under ImageNet-1K only setting at $2 2 4 \mathbf { x } 2 2 4$ . + +![](images/f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg) +Figure 3: Accuracy-to-Params scaling curve under ImageNet- $2 1 \mathrm { K } \Rightarrow$ ImageNet-1K setting. + +ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4. Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we also visualize the all results at resolution $2 2 4 \mathbf { x } 2 2 4$ in Fig. 2. As we can see, CoAtNet scales much better than previous model with attention modules. + +Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only; $2 1 \mathtt { K } + 1 \mathtt { K }$ denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is longer than the standard 90 epochs. More results are in Appendix A.3. + +
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
+ +ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pretraining, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous models. Notably, the best CoAtNet variant achieves a top-1 accuracy of $8 8 . 5 6 \%$ , matching the ViTH/14 performance of $8 8 . 5 5 \%$ , which requires pre-training the $2 . 3 \mathbf { x }$ larger ViT model on a $2 3 \mathrm { x }$ larger proprietary weakly labeled dataset (JFT) for $2 . 2 \mathbf { x }$ more steps. This marks a dramatic improvement in both data efficiency and computation efficiency. + +JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance with JFT-300M set by NFNet- $\mathrm { F 4 + }$ , while being $2 \mathbf { x }$ more efficient in terms of both TPU training time and parameter count. When we scale up the model to consume similar training resource as NFNet- $. \mathrm { F 4 + }$ , CoAtNet-5 reaches $8 9 . 7 7 \%$ on top-1 accuracy, outperforming previous results under comparable settings. + +Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the same JFT-3B dataset of an even larger size [26], with over $4 \mathbf { x }$ less computation, CoAtNet-6 is able to match the performance of $\mathrm { V i T - G } / 1 4$ of $9 0 . 4 5 \%$ , and with $1 . 5 \mathrm { x }$ less computation, CoAtNet-7 achieves $8 9 . 7 7 \%$ on top-1 accuracy $9 0 . 8 8 \%$ , achieving the new state-of-the-art performance. + +Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pretraining time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2 for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2 Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26]. + +
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
+ +# 4.3 Ablation Studies + +In this section, we will ablate our design choices for CoAtNet. + +Firstly, we study the importance of the relative attention from combining convolution and attention into a single computation unit. Specifically, we compare two models, one with the relative attention and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer setting, the relative attention variant achieves a substantially better transfer accuracy, despite their very close pre-training performances. This suggests the main advantage of relative attention in visual processing is not in higher capacity but in better generalization. + +Table 6: Ablation on relative attention. + +
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
+ +Table 7: Ablation on architecture layout. + +
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
+ +Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv) and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose, we compare a few different layouts that we experimented with in Table 7. + +Table 8: Ablation on head size and normalization type. + +
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
+ +• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to generalize well. + +• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher capacity is often regarded more important, we further compare V0 and V1 under the ImageNet21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind V0. Again, this suggests the importance of convolution in achieving good transferability and generalization. + +Lastly, we study two choices of model details, namely the dimension of each attention (default to 32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same performance, while BatchNorm is $10 - 2 0 \%$ faster on TPU depending on the per-core batch size. + +# 5 Conclusion + +In this paper, we systematically study the properties of convolutions and Transformers, which leads to a principled way to combine them into a new family of models named CoAtNet. Extensive experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model capacity like Transformers, achieving state-of-the-art performances under different data sizes and computation budgets. + +Note that this paper currently focuses on ImageNet classification for model development. However, we believe our approach is applicable to broader applications like object detection and semantic segmentation. We will leave them for future work. + +# References + +[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pages 1097–1105, 2012. +[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In ICLR, 2015. +[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. +[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9, 2015. +[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural networks. ICML, 2019. +[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762, 2017. +[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. +[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. +[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7794–7803, 2018. +[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3286–3295, 2019. +[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605, 2021. +[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention: Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 3531–3539, 2021. +[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. +[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A largescale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. +[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable effectiveness of data in deep learning era. In Proceedings of the IEEE international conference on computer vision, pages 843–852, 2017. +[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv preprint arXiv:2012.12877, 2020. +[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. +[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021. +[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021. +[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance largescale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021. +[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv preprint arXiv:2103.12731, 2021. +[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint arXiv:2103.14030, 2021. +[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021. +[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou, and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv preprint arXiv:2104.01136, 2021. +[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. +[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transformers. arXiv preprint arXiv:2106.04560, 2021. +[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4510–4520, 2018. +[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014. +[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020. +[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. arXiv preprint arXiv:1803.02155, 2018. +[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019. +[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In International Conference on Machine Learning, pages 5156–5165. PMLR, 2020. +[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking attention with performers. arXiv preprint arXiv:2009.14794, 2020. +[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909, 2019. +[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828, 2019. +[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint arXiv:2012.12556, 2020. +[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan, and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021. +[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer. arXiv preprint arXiv:1809.04281, 2018. +[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860, 2019. +[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via the lens of kernel. arXiv preprint arXiv:1908.11775, 2019. +[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv preprint arXiv:2102.08602, 2021. +[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018. +[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021. +[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction without convolutions. arXiv preprint arXiv:2102.12122, 2021. +[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020. +[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. +[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016. +[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2818–2826, 2016. +[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. +[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European conference on computer vision, pages 630–645. Springer, 2016. +[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. +[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236, 2020. \ No newline at end of file diff --git a/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_content_list.json b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..f733772f0dbe2279236643d34cb3f1f5101bd143 --- /dev/null +++ b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_content_list.json @@ -0,0 +1,1045 @@ +[ + { + "type": "text", + "text": "CoAtNet: Marrying Convolution and Attention for All Data Sizes ", + "text_level": 1, + "bbox": [ + 214, + 122, + 785, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan Google Research, Brain Team {zihangd,hanxiaol,qvl,tanmingxing}@google.com ", + "bbox": [ + 307, + 220, + 691, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 299, + 535, + 315 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Transformers have attracted increasing interests in computer vision, but they still fall behind state-of-the-art convolutional networks. In this work, we show that while Transformers tend to have larger model capacity, their generalization can be worse than convolutional networks due to the lack of the right inductive bias. To effectively combine the strengths from both architectures, we present CoAtNets (pronounced “coat” nets), a family of hybrid models built from two key insights: (1) depthwise Convolution and self-Attention can be naturally unified via simple relative attention; (2) vertically stacking convolution layers and attention layers in a principled way is surprisingly effective in improving generalization, capacity and efficiency. Experiments show that our CoAtNets achieve state-of-the-art performance under different resource constraints across various datasets: Without extra data, CoAtNet achieves $8 6 . 0 \\%$ ImageNet top-1 accuracy; When pre-trained with 13M images from ImageNet-21K, our CoAtNet achieves $8 8 . 5 6 \\%$ top-1 accuracy, matching ViT-huge pre-trained with 300M images from JFT-300M while using $2 3 \\mathrm { x }$ less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves $9 0 . 8 8 \\%$ top-1 accuracy on ImageNet, establishing a new state-of-the-art result. ", + "bbox": [ + 233, + 332, + 766, + 551 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 176, + 575, + 310, + 593 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of self-attention models like Transformers [6] in natural language processing [7, 8], many previous works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers, one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher capacity at scale than ConvNets. ", + "bbox": [ + 174, + 607, + 825, + 732 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "While ViT has shown impressive results with enormous JFT 300M training images, its performance still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training, the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA convolution-only models on ImageNet classification given the same amount of data and computation [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases possessed by ConvNets, and thus require significant amount of data and computational resource to compensate. Not surprisingly, many recent works have been trying to incorporate the inductive biases of ConvNets into Transformer models, by imposing local receptive fields for attention layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a particular property, lacking a systematic understanding of the respective roles of convolution and attention when combined. ", + "bbox": [ + 174, + 738, + 826, + 877 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 147 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we systematically study the problem of hybridizing convolution and attention from two fundamental aspects in machine learning – generalization and model capacity. Our study shows that convolutional layers tend to have better generalization with faster converging speed thanks to their strong prior of inductive bias, while attention layers have higher model capacity that can benefit from larger datasets. Combining convolutional and attention layers can achieve better generalization and capacity; however, a key challenge here is how to effectively combine them to achieve better trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we observe that the commonly used depthwise convolution can be effectively merged into attention layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a proper way, could be surprisingly effective to achieve better generalization and capacity. Based on these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys the strengths from both ConvNets and Transformers. ", + "bbox": [ + 174, + 154, + 825, + 319 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not only enjoys the superior scalability of Transformer models, but also achieves faster convergence and thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves $8 6 . 0 \\%$ top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches $8 8 . 5 6 \\%$ top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on JFT-300M, a $2 3 \\times$ larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to $9 0 . 8 8 \\%$ while using $1 . 5 \\mathrm { x }$ less computation of the prior art set by ViT-G/14 [26]. ", + "bbox": [ + 173, + 325, + 825, + 478 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Model ", + "text_level": 1, + "bbox": [ + 174, + 505, + 259, + 521 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the section, we focus on the question of how to “optimally” combine the convolution and transformer. Roughly speaking, we decompose the question into two parts: ", + "bbox": [ + 173, + 540, + 823, + 569 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. How to combine the convolution and self-attention within one basic computational block? 2. How to vertically stack different types of computational blocks together to form a complete network? ", + "bbox": [ + 200, + 574, + 825, + 622 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The rationale of the decomposition will become clearer as we gradually reveal our design choices. ", + "bbox": [ + 169, + 628, + 816, + 645 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 Merging Convolution and Self-Attention ", + "text_level": 1, + "bbox": [ + 176, + 667, + 493, + 683 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolution [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the channel size of the input by $4 \\mathbf { x }$ and later project the the $4 \\mathbf { x }$ -wide hidden state back to the original channel size to enable residual connection. ", + "bbox": [ + 173, + 695, + 825, + 765 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive field ", + "bbox": [ + 173, + 771, + 825, + 827 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg", + "text": "$$\ny _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 333, + 832, + 661, + 868 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }$ are the input and output at position $i$ respectively, and $\\mathcal { L } ( i )$ denotes a local neighborhood of $i$ , e.g., a 3x3 grid centered at $i$ in image processing. ", + "bbox": [ + 174, + 882, + 823, + 912 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes the weights based on the re-normalized pairwise similarity between the pair $( x _ { i } , x _ { j } )$ : 2 ", + "bbox": [ + 169, + 90, + 823, + 119 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg", + "text": "$$\ny _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 333, + 128, + 663, + 188 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { G }$ indicates the global spatial space. Before getting into the question of how to best combine them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out the good properties we hope to retain. ", + "bbox": [ + 174, + 195, + 825, + 238 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• First of all, the depthwise convolution kernel $w _ { i - j }$ is an input-independent parameter of static value, while the attention weight $A _ { i , j }$ dynamically depends on the representation of the input. Hence, it is much easier for the self-attention to capture complicated relational interactions between different spatial positions, a property that we desire most when processing high-level concepts. However, the flexibility comes with a risk of easier overfitting, especially when data is limited. • Secondly, notice that given any position pair $( i , j )$ , the corresponding convolution weight $w _ { i - j }$ only cares about the relative shift between them, i.e. $i - j$ , rather than the specific values of $i$ or $j$ . This property is often referred to translation equivalence, which has been found to improve generalization under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than Transformers when the dataset is not enormously large. • Finally, the size of the receptive field is one of the most crucial differences between self-attention and convolution. Generally speaking, a larger receptive field provides more contextual information, which could lead to higher model capacity. Hence, the global receptive field has been a key motivation to employ self-attention in vision. However, a large receptive field requires significantly more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size, which has been a fundamental trade-off in applying self-attention models. ", + "bbox": [ + 173, + 242, + 826, + 486 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg", + "table_caption": [ + "Table 1: Desirable properties found in convolution or self-attention. " + ], + "table_footnote": [], + "table_body": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "bbox": [ + 285, + 525, + 702, + 595 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a straightforward idea that could achieve this is simply to sum a global static convolution kernel with the adaptive attention matrix, either after or before the Softmax normalization, i.e., ", + "bbox": [ + 178, + 612, + 821, + 667 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg", + "text": "$$\ny _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 676, + 800, + 720 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Interestingly, while the idea seems overly simplified, the pre-normalization version $y ^ { \\mathrm { p r e } }$ corresponds to a particular variant of relative self-attention [30, 31]. In this case, the attention weight $A _ { i , j }$ is decided jointly by the $w _ { i - j }$ of translation equivariance and the input-adaptive $x _ { i } ^ { \\top } x _ { j }$ , which can enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable the global convolution kernel without blowing up the number of parameters, we have reloaded the notation of $w _ { i - j }$ as a scalar (i.e., $w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }$ ) rather than a vector in Eqn. (1). Another advantage of the scalar formulation of $w$ is that retrieving $w _ { i - j }$ for all $( i , j )$ is clearly subsumed by computing the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1). Given the benefits, we will use the Transformer block with the pre-normalization relative attention variant in Eqn. (3) as the key component of the proposed CoAtNet model. ", + "bbox": [ + 173, + 728, + 825, + 871 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 Vertical Layout Design ", + "text_level": 1, + "bbox": [ + 174, + 92, + 372, + 106 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it to stack an entire network. ", + "bbox": [ + 173, + 118, + 823, + 146 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence, if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will be excessively slow due to the large number of pixels in any image of common sizes. Hence, to construct a network that is feasible in practice, we have mainly three options: ", + "bbox": [ + 173, + 152, + 825, + 209 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention after the feature map reaches manageable level. \n(B) Enforce local attention, which restricts the global receptive field $\\mathcal { G }$ in attention to a local field $\\mathcal { L }$ just like in convolution [22, 21]. \n(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a linear complexity w.r.t. the spatial size [12, 32, 33]. ", + "bbox": [ + 176, + 215, + 825, + 309 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we found that implementing local attention involves many non-trivial shape formatting operations that requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be extremely slow [34], which not only defeats the original purpose of speeding up global attention, but also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will focus on option (A) and compare our results with theirs in our empirical study (Section 4). ", + "bbox": [ + 173, + 315, + 825, + 398 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets. With these choices, we derive a search space of 5 variants and compare them in controlled experiments. ", + "bbox": [ + 174, + 404, + 823, + 446 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• When the ViT Stem is used, we directly stack $L$ Transformer blocks with relative attention, which we denote as $\\mathrm { V I T } _ { \\mathrm { R E L } }$ . \n• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0, S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning of each stage, we always reduce the spatial size by $2 \\mathbf { x }$ and increase the number of channels (see Appendix A.1 for the detailed down-sampling implementation). The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that convolution stages must appear before Transformer stages. The constraint is based on the prior that convolution is better at processing local patterns that are more common in early stages. This leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and C-T-T-T, where C and T denote Convolution and Transformer respectively. ", + "bbox": [ + 171, + 453, + 825, + 642 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To systematically study the design choices, we consider two fundamental aspects generalization capability and model capacity: For generalization, we are interested in the gap between the training loss and the evaluation accuracy. If two models have the same training loss, then the model with higher evaluation accuracy has better generalization capability, since it can generalize better to unseen evaluation dataset. Generalization capability is particularly important to data efficiency when training data size is limited. For model capacity, we measure the ability to fit large training datasets. When training data is abundant and overfitting is not an issue, the model with higher capacity will achieve better final performance after reasonable training steps. Note that, since simply increasing the model size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model sizes of the 5 variants are comparable. ", + "bbox": [ + 173, + 648, + 825, + 787 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To compare the generalization and model capacity, we train different variants of hybrid models on ImageNet-1K (1.3M) and JFT $\\left( > 3 0 0 \\mathbf { M } \\right)$ dataset for 300 and 3 epochs respectively, both without any regularization or augmentation. The training loss and evaluation accuracy on both datasets are summarized in Figure 1. ", + "bbox": [ + 174, + 792, + 825, + 849 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e., gap between train and evaluation metrics), we have ", + "bbox": [ + 169, + 854, + 825, + 883 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg", + "text": "$$\n\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }\n$$", + "text_format": "latex", + "bbox": [ + 305, + 896, + 702, + 912 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg", + "image_caption": [ + "Figure 1: Comparison for model generalization and capacity under different data size. For fair comparison, all models have similar parameter size and computational cost. " + ], + "image_footnote": [], + "bbox": [ + 178, + 90, + 820, + 234 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Particularly, $\\mathrm { V I T } _ { \\mathrm { R E L } }$ is significantly worse than variants by a large margin, which we conjecture is related to the lack of proper low-level information processing in its aggressive down-sampling Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the model has, the smaller the generalization gap is. ", + "bbox": [ + 186, + 297, + 825, + 354 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end of the training suggest the following ranking: ", + "bbox": [ + 176, + 356, + 823, + 385 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg", + "text": "$$\n\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }\n$$", + "text_format": "latex", + "bbox": [ + 307, + 391, + 702, + 407 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily mean higher capacity for visual processing. On one hand, while initially worse, $\\mathrm { V I T } _ { \\mathrm { R E L } }$ ultimately catch up with the two variants with more MBConv stages, indicating the capacity advantage of Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming $\\mathrm { V I T } _ { \\mathrm { R E L } }$ suggest that the ViT stem with an aggressive stride may have lost too much information and hence limit the model capacity. More interestingly, the fact that C-C-T-T $\\approx \\mathbf { C }$ -T-T-T indicates the for processing low-level information, static local operations like convolution could be as capable as adaptive global attention mechanism, while saving computation and memory usage substantially. ", + "bbox": [ + 186, + 415, + 825, + 526 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer accuracy than C-T-T-T, despite the same pre-training performance. ", + "bbox": [ + 176, + 531, + 825, + 588 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg", + "table_caption": [ + "Table 2: Transferability test results. " + ], + "table_footnote": [], + "table_body": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "bbox": [ + 300, + 612, + 692, + 683 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1. ", + "bbox": [ + 173, + 696, + 825, + 726 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 744, + 321, + 762 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dominating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28] are popular in mobile platforms due to its lower computational cost and smaller parameter size [27]. Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this paper mostly employs MBConv as convolution building blocks. ", + "bbox": [ + 173, + 775, + 826, + 887 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have been widely adopted for neural language processing and speech understanding. As an early work, stand-alone self-attention network [34] shows self-attention alone can work well for different vision tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited. Following that, many recent works have been focused on improving vision Transformers for data efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer readers to the dedicated surveys [36, 37]. ", + "bbox": [ + 174, + 90, + 825, + 215 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Relative attention. Under the general name of relative attention, there have been various variants in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories: (a) the input-dependent version where the extra relative attention score is a function of the input states $f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )$ , and (b) the input-independent version $f ( i - j )$ . The variant in CoAtNet belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we neither share the relative attention parameters across layers nor use the bucketing mechanism. As a benefit of the input independence, obtaining $f ( i - j )$ for all $( i , j )$ pairs is computationally much cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be computed once and cached for future use. A recent work [22] also utilizes such an input-independent parameterization, but it restricts the receptive field to a local window. ", + "bbox": [ + 173, + 229, + 825, + 368 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Combining convolution and self-attention. The idea of combining convolution and self-attention for vision recognition is not new. A common approach is to augment the ConvNet backbone with explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While self-attention usually improves the accuracy, they often come with extra computational cost and hence are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44]. ", + "bbox": [ + 174, + 382, + 825, + 507 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "While our work also belongs to this category, we show that our relative attention instantiation is a natural mixture of depthwise convolution and content-based attention with minimum additional cost. More importantly, starting from the perspectives of generalization and model capacity, we take a systematic approach to the vertical layout design and show how and why different network stages prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage (S2) when the overall size increases. On the other hand, compared to models employing local attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity, as S3 occupies the majority of the computation and parameters. ", + "bbox": [ + 174, + 513, + 825, + 638 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 657, + 312, + 674 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section, we compare CoAtNet with previous results under comparable settings. For completeness, all the hyper-parameters not mentioned here are included in Appendix A.2. ", + "bbox": [ + 174, + 688, + 823, + 717 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 Experiment Setting ", + "text_level": 1, + "bbox": [ + 174, + 732, + 348, + 747 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "CoAtNet model family. To compare with existing models of different sizes, we also design a family of CoAtNet models as summarized in Table 3. Overall, we always double the number of channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1. Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in S2 and S3. ", + "bbox": [ + 174, + 757, + 825, + 827 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90 and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training. Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence, finetuning is always employed whenever input resolution changes. ", + "bbox": [ + 174, + 842, + 823, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg", + "table_caption": [ + "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is always 4 and the expansion (shrink) rate for the SE is always 0.25. " + ], + "table_footnote": [], + "table_body": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "bbox": [ + 173, + 154, + 826, + 244 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 261, + 826, + 332 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Data Augmentation & Regularization. In this work, we only consider two widely used data augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively, the specific hyper-parameters of the augmentation and regularization methods depend on model size and data scale, where strong regularization is usually applied for larger models and smaller dataset. ", + "bbox": [ + 174, + 347, + 825, + 416 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Under the general principle, a complication under the current paradigm is how to adjust the regularization for pre-training and finetuning as data size can change. Specifically, we have an interesting observation that if a certain type of augmentation is entirely disabled during pre-training, simply turning it on during fine-tuning would most likely harm the performance rather than improving. We conjecture this could be related to data distribution shift. As a result, for certain runs of the proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can harm the pre-training metrics, this allows more versatile regularization and augmentation during finetuning, leading to improved down-stream performances. ", + "bbox": [ + 173, + 422, + 826, + 547 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 Main Results ", + "text_level": 1, + "bbox": [ + 174, + 565, + 305, + 579 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg", + "image_caption": [ + "Figure 2: Accuracy-to-FLOPs scaling curve under ImageNet-1K only setting at $2 2 4 \\mathbf { x } 2 2 4$ . " + ], + "image_footnote": [], + "bbox": [ + 179, + 601, + 478, + 785 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg", + "image_caption": [ + "Figure 3: Accuracy-to-Params scaling curve under ImageNet- $2 1 \\mathrm { K } \\Rightarrow$ ImageNet-1K setting. " + ], + "image_footnote": [], + "bbox": [ + 513, + 602, + 813, + 785 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4. Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we also visualize the all results at resolution $2 2 4 \\mathbf { x } 2 2 4$ in Fig. 2. As we can see, CoAtNet scales much better than previous model with attention modules. ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg", + "table_caption": [ + "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only; $2 1 \\mathtt { K } + 1 \\mathtt { K }$ denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is longer than the standard 90 epochs. More results are in Appendix A.3. " + ], + "table_footnote": [], + "table_body": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "bbox": [ + 171, + 140, + 843, + 645 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pretraining, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous models. Notably, the best CoAtNet variant achieves a top-1 accuracy of $8 8 . 5 6 \\%$ , matching the ViTH/14 performance of $8 8 . 5 5 \\%$ , which requires pre-training the $2 . 3 \\mathbf { x }$ larger ViT model on a $2 3 \\mathrm { x }$ larger proprietary weakly labeled dataset (JFT) for $2 . 2 \\mathbf { x }$ more steps. This marks a dramatic improvement in both data efficiency and computation efficiency. ", + "bbox": [ + 174, + 681, + 826, + 766 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance with JFT-300M set by NFNet- $\\mathrm { F 4 + }$ , while being $2 \\mathbf { x }$ more efficient in terms of both TPU training time and parameter count. When we scale up the model to consume similar training resource as NFNet- $. \\mathrm { F 4 + }$ , CoAtNet-5 reaches $8 9 . 7 7 \\%$ on top-1 accuracy, outperforming previous results under comparable settings. ", + "bbox": [ + 174, + 792, + 825, + 877 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the same JFT-3B dataset of an even larger size [26], with over $4 \\mathbf { x }$ less computation, CoAtNet-6 is able to match the performance of $\\mathrm { V i T - G } / 1 4$ of $9 0 . 4 5 \\%$ , and with $1 . 5 \\mathrm { x }$ less computation, CoAtNet-7 achieves $8 9 . 7 7 \\%$ on top-1 accuracy $9 0 . 8 8 \\%$ , achieving the new state-of-the-art performance. ", + "bbox": [ + 174, + 883, + 821, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg", + "table_caption": [ + "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pretraining time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2 for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2 Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26]. " + ], + "table_footnote": [], + "table_body": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "bbox": [ + 173, + 156, + 834, + 358 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 372, + 823, + 401 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.3 Ablation Studies ", + "text_level": 1, + "bbox": [ + 174, + 416, + 328, + 431 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this section, we will ablate our design choices for CoAtNet. ", + "bbox": [ + 174, + 441, + 581, + 457 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Firstly, we study the importance of the relative attention from combining convolution and attention into a single computation unit. Specifically, we compare two models, one with the relative attention and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer setting, the relative attention variant achieves a substantially better transfer accuracy, despite their very close pre-training performances. This suggests the main advantage of relative attention in visual processing is not in higher capacity but in better generalization. ", + "bbox": [ + 173, + 462, + 825, + 574 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg", + "table_caption": [ + "Table 6: Ablation on relative attention. " + ], + "table_footnote": [], + "table_body": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "bbox": [ + 192, + 597, + 800, + 691 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg", + "table_caption": [ + "Table 7: Ablation on architecture layout. " + ], + "table_footnote": [], + "table_body": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "bbox": [ + 227, + 723, + 766, + 828 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv) and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose, we compare a few different layouts that we experimented with in Table 7. ", + "bbox": [ + 174, + 842, + 826, + 911 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg", + "table_caption": [ + "Table 8: Ablation on head size and normalization type. " + ], + "table_footnote": [], + "table_body": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "bbox": [ + 225, + 99, + 767, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to generalize well. ", + "bbox": [ + 174, + 233, + 823, + 289 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher capacity is often regarded more important, we further compare V0 and V1 under the ImageNet21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind V0. Again, this suggests the importance of convolution in achieving good transferability and generalization. ", + "bbox": [ + 173, + 291, + 825, + 373 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lastly, we study two choices of model details, namely the dimension of each attention (default to 32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same performance, while BatchNorm is $10 - 2 0 \\%$ faster on TPU depending on the per-core batch size. ", + "bbox": [ + 174, + 381, + 825, + 463 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 483, + 299, + 500 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we systematically study the properties of convolutions and Transformers, which leads to a principled way to combine them into a new family of models named CoAtNet. Extensive experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model capacity like Transformers, achieving state-of-the-art performances under different data sizes and computation budgets. ", + "bbox": [ + 174, + 513, + 825, + 583 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Note that this paper currently focuses on ImageNet classification for model development. However, we believe our approach is applicable to broader applications like object detection and semantic segmentation. We will leave them for future work. ", + "bbox": [ + 174, + 590, + 823, + 632 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 90, + 266, + 106 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pages 1097–1105, 2012. \n[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In ICLR, 2015. \n[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. \n[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9, 2015. \n[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural networks. ICML, 2019. \n[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762, 2017. \n[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. \n[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. \n[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7794–7803, 2018. \n[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3286–3295, 2019. \n[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605, 2021. \n[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention: Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 3531–3539, 2021. \n[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. \n[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A largescale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. \n[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable effectiveness of data in deep learning era. In Proceedings of the IEEE international conference on computer vision, pages 843–852, 2017. \n[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv preprint arXiv:2012.12877, 2020. \n[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. \n[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021. \n[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021. \n[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance largescale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021. \n[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv preprint arXiv:2103.12731, 2021. \n[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint arXiv:2103.14030, 2021. \n[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021. \n[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou, and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv preprint arXiv:2104.01136, 2021. \n[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. \n[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transformers. arXiv preprint arXiv:2106.04560, 2021. \n[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4510–4520, 2018. \n[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014. \n[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020. \n[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. arXiv preprint arXiv:1803.02155, 2018. \n[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019. \n[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In International Conference on Machine Learning, pages 5156–5165. PMLR, 2020. \n[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking attention with performers. arXiv preprint arXiv:2009.14794, 2020. \n[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909, 2019. \n[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828, 2019. \n[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint arXiv:2012.12556, 2020. \n[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan, and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021. \n[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer. arXiv preprint arXiv:1809.04281, 2018. \n[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860, 2019. \n[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via the lens of kernel. arXiv preprint arXiv:1908.11775, 2019. \n[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv preprint arXiv:2102.08602, 2021. \n[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018. \n[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021. \n[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction without convolutions. arXiv preprint arXiv:2102.12122, 2021. \n[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020. \n[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. \n[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016. \n[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2818–2826, 2016. \n[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. \n[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European conference on computer vision, pages 630–645. Springer, 2016. \n[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. \n[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236, 2020. ", + "bbox": [ + 173, + 119, + 828, + 914 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 45, + 828, + 917 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 85, + 828, + 631 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_middle.json b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..51d5279beb3e5c8999caab23ac9f5b763016dec9 --- /dev/null +++ b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_middle.json @@ -0,0 +1,30612 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 131, + 97, + 481, + 136 + ], + "lines": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "spans": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "score": 1.0, + "content": "CoAtNet: Marrying Convolution and Attention", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "spans": [ + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "score": 1.0, + "content": "for All Data Sizes", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 188, + 175, + 423, + 209 + ], + "lines": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "spans": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "score": 1.0, + "content": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "spans": [ + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "spans": [ + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "score": 1.0, + "content": "{zihangd,hanxiaol,qvl,tanmingxing}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 283, + 237, + 328, + 250 + ], + "lines": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "spans": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 263, + 469, + 437 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "score": 1.0, + "content": "Transformers have attracted increasing interests in computer vision, but they still", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "fall behind state-of-the-art convolutional networks. In this work, we show that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "score": 1.0, + "content": "while Transformers tend to have larger model capacity, their generalization can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "worse than convolutional networks due to the lack of the right inductive bias. To", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "effectively combine the strengths from both architectures, we present CoAtNets", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "(pronounced “coat” nets), a family of hybrid models built from two key insights:", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "score": 1.0, + "content": "(1) depthwise Convolution and self-Attention can be naturally unified via simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "relative attention; (2) vertically stacking convolution layers and attention layers in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "a principled way is surprisingly effective in improving generalization, capacity and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "efficiency. Experiments show that our CoAtNets achieve state-of-the-art perfor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "score": 1.0, + "content": "mance under different resource constraints across various datasets: Without extra", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 382, + 469, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 240, + 395 + ], + "score": 1.0, + "content": "data, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 240, + 383, + 267, + 393 + ], + "score": 0.87, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 382, + 469, + 395 + ], + "score": 1.0, + "content": "ImageNet top-1 accuracy; When pre-trained with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 373, + 406 + ], + "score": 1.0, + "content": "13M images from ImageNet-21K, our CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 406, + 404 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "top-1 accuracy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "score": 1.0, + "content": "matching ViT-huge pre-trained with 300M images from JFT-300M while using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 415, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 142, + 415, + 159, + 425 + ], + "score": 0.7, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 415, + 470, + 427 + ], + "score": 1.0, + "content": "less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 426, + 458, + 438 + ], + "spans": [ + { + "bbox": [ + 142, + 426, + 174, + 437 + ], + "score": 0.85, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 426, + 458, + 438 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet, establishing a new state-of-the-art result.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 190, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "self-attention models like Transformers [6] in natural language processing [7, 8], many previous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "score": 1.0, + "content": "capacity at scale than ConvNets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "While ViT has shown impressive results with enormous JFT 300M training images, its performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "score": 1.0, + "content": "still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "convolution-only models on ImageNet classification given the same amount of data and computa-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "tion [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "possessed by ConvNets, and thus require significant amount of data and computational resource", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "to compensate. Not surprisingly, many recent works have been trying to incorporate the induc-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "tive biases of ConvNets into Transformer models, by imposing local receptive fields for attention", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 703, + 453, + 714 + ], + "lines": [ + { + "bbox": [ + 120, + 700, + 456, + 717 + ], + "spans": [ + { + "bbox": [ + 120, + 700, + 456, + 717 + ], + "score": 1.0, + "content": "1 The initial projection stage can be seen as an aggressive down-sampling convolutional stem.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 131, + 97, + 481, + 136 + ], + "lines": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "spans": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "score": 1.0, + "content": "CoAtNet: Marrying Convolution and Attention", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "spans": [ + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "score": 1.0, + "content": "for All Data Sizes", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 188, + 175, + 423, + 209 + ], + "lines": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "spans": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "score": 1.0, + "content": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "spans": [ + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "spans": [ + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "score": 1.0, + "content": "{zihangd,hanxiaol,qvl,tanmingxing}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 187, + 176, + 425, + 211 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 237, + 328, + 250 + ], + "lines": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "spans": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 263, + 469, + 437 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "score": 1.0, + "content": "Transformers have attracted increasing interests in computer vision, but they still", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "fall behind state-of-the-art convolutional networks. In this work, we show that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "score": 1.0, + "content": "while Transformers tend to have larger model capacity, their generalization can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "worse than convolutional networks due to the lack of the right inductive bias. To", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "effectively combine the strengths from both architectures, we present CoAtNets", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "(pronounced “coat” nets), a family of hybrid models built from two key insights:", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "score": 1.0, + "content": "(1) depthwise Convolution and self-Attention can be naturally unified via simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "relative attention; (2) vertically stacking convolution layers and attention layers in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "a principled way is surprisingly effective in improving generalization, capacity and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "efficiency. Experiments show that our CoAtNets achieve state-of-the-art perfor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "score": 1.0, + "content": "mance under different resource constraints across various datasets: Without extra", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 382, + 469, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 240, + 395 + ], + "score": 1.0, + "content": "data, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 240, + 383, + 267, + 393 + ], + "score": 0.87, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 382, + 469, + 395 + ], + "score": 1.0, + "content": "ImageNet top-1 accuracy; When pre-trained with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 373, + 406 + ], + "score": 1.0, + "content": "13M images from ImageNet-21K, our CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 406, + 404 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "top-1 accuracy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "score": 1.0, + "content": "matching ViT-huge pre-trained with 300M images from JFT-300M while using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 415, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 142, + 415, + 159, + 425 + ], + "score": 0.7, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 415, + 470, + 427 + ], + "score": 1.0, + "content": "less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 426, + 458, + 438 + ], + "spans": [ + { + "bbox": [ + 142, + 426, + 174, + 437 + ], + "score": 0.85, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 426, + 458, + 438 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet, establishing a new state-of-the-art result.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5, + "bbox_fs": [ + 141, + 262, + 470, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 190, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "self-attention models like Transformers [6] in natural language processing [7, 8], many previous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "score": 1.0, + "content": "capacity at scale than ConvNets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 482, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "While ViT has shown impressive results with enormous JFT 300M training images, its performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "score": 1.0, + "content": "still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "convolution-only models on ImageNet classification given the same amount of data and computa-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "tion [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "possessed by ConvNets, and thus require significant amount of data and computational resource", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "to compensate. Not surprisingly, many recent works have been trying to incorporate the induc-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "tive biases of ConvNets into Transformer models, by imposing local receptive fields for attention", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "particular property, lacking a systematic understanding of the respective roles of convolution and", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "score": 1.0, + "content": "attention when combined.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 584, + 506, + 696 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "particular property, lacking a systematic understanding of the respective roles of convolution and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "score": 1.0, + "content": "attention when combined.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "In this work, we systematically study the problem of hybridizing convolution and attention from", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "two fundamental aspects in machine learning – generalization and model capacity. Our study shows", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "that convolutional layers tend to have better generalization with faster converging speed thanks to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "their strong prior of inductive bias, while attention layers have higher model capacity that can benefit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "from larger datasets. Combining convolutional and attention layers can achieve better generalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "score": 1.0, + "content": "and capacity; however, a key challenge here is how to effectively combine them to achieve better", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "observe that the commonly used depthwise convolution can be effectively merged into attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "proper way, could be surprisingly effective to achieve better generalization and capacity. Based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "score": 1.0, + "content": "the strengths from both ConvNets and Transformers.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "only enjoys the superior scalability of Transformer models, but also achieves faster convergence and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 477, + 314 + ], + "score": 1.0, + "content": "thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 477, + 302, + 505, + 313 + ], + "score": 0.86, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 139, + 345 + ], + "score": 0.87, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 161, + 358 + ], + "score": 1.0, + "content": "JFT-300M, a", + "type": "text" + }, + { + "bbox": [ + 161, + 345, + 181, + 356 + ], + "score": 0.88, + "content": "2 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 445, + 369 + ], + "score": 1.0, + "content": "better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to", + "type": "text" + }, + { + "bbox": [ + 446, + 357, + 479, + 367 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 367, + 369, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 131, + 380 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 367, + 150, + 378 + ], + "score": 0.67, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 367, + 369, + 380 + ], + "score": 1.0, + "content": "less computation of the prior art set by ViT-G/14 [26].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 159, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "score": 1.0, + "content": "2 Model", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "score": 1.0, + "content": "In the section, we focus on the question of how to “optimally” combine the convolution and trans-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "score": 1.0, + "content": "former. Roughly speaking, we decompose the question into two parts:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 123, + 455, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "1. How to combine the convolution and self-attention within one basic computational block?", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "2. How to vertically stack different types of computational blocks together to form a complete", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "score": 1.0, + "content": "network?", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 500, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "score": 1.0, + "content": "The rationale of the decomposition will become clearer as we gradually reveal our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 302, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "score": 1.0, + "content": "2.1 Merging Convolution and Self-Attention", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "tion [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 222, + 597 + ], + "score": 1.0, + "content": "channel size of the input by", + "type": "text" + }, + { + "bbox": [ + 222, + 585, + 234, + 595 + ], + "score": 0.56, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 584, + 335, + 597 + ], + "score": 1.0, + "content": "and later project the the", + "type": "text" + }, + { + "bbox": [ + 335, + 585, + 347, + 595 + ], + "score": 0.46, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "-wide hidden state back to the original", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "score": 1.0, + "content": "channel size to enable residual connection.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "score": 1.0, + "content": "field", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 659, + 405, + 688 + ], + "lines": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "spans": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "score": 0.91, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,", + "type": "interline_equation", + "image_path": "6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 659, + 405, + 673.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 204, + 673.5, + 405, + 688.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 134, + 713 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 187, + 711 + ], + "score": 0.92, + "content": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 699, + 339, + 713 + ], + "score": 1.0, + "content": "are the input and output at position", + "type": "text" + }, + { + "bbox": [ + 340, + 701, + 344, + 710 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 699, + 419, + 713 + ], + "score": 1.0, + "content": "respectively, and", + "type": "text" + }, + { + "bbox": [ + 419, + 700, + 438, + 712 + ], + "score": 0.92, + "content": "\\mathcal { L } ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "denotes a local", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 382, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 175, + 725 + ], + "score": 1.0, + "content": "neighborhood of", + "type": "text" + }, + { + "bbox": [ + 175, + 712, + 180, + 721 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 709, + 291, + 725 + ], + "score": 1.0, + "content": ", e.g., a 3x3 grid centered at", + "type": "text" + }, + { + "bbox": [ + 292, + 712, + 296, + 721 + ], + "score": 0.81, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 709, + 382, + 725 + ], + "score": 1.0, + "content": "in image processing.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 72, + 506, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "In this work, we systematically study the problem of hybridizing convolution and attention from", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "two fundamental aspects in machine learning – generalization and model capacity. Our study shows", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "that convolutional layers tend to have better generalization with faster converging speed thanks to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "their strong prior of inductive bias, while attention layers have higher model capacity that can benefit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "from larger datasets. Combining convolutional and attention layers can achieve better generalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "score": 1.0, + "content": "and capacity; however, a key challenge here is how to effectively combine them to achieve better", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "observe that the commonly used depthwise convolution can be effectively merged into attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "proper way, could be surprisingly effective to achieve better generalization and capacity. Based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "score": 1.0, + "content": "the strengths from both ConvNets and Transformers.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 122, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "only enjoys the superior scalability of Transformer models, but also achieves faster convergence and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 477, + 314 + ], + "score": 1.0, + "content": "thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 477, + 302, + 505, + 313 + ], + "score": 0.86, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 139, + 345 + ], + "score": 0.87, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 161, + 358 + ], + "score": 1.0, + "content": "JFT-300M, a", + "type": "text" + }, + { + "bbox": [ + 161, + 345, + 181, + 356 + ], + "score": 0.88, + "content": "2 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 445, + 369 + ], + "score": 1.0, + "content": "better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to", + "type": "text" + }, + { + "bbox": [ + 446, + 357, + 479, + 367 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 367, + 369, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 131, + 380 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 367, + 150, + 378 + ], + "score": 0.67, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 367, + 369, + 380 + ], + "score": 1.0, + "content": "less computation of the prior art set by ViT-G/14 [26].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 258, + 506, + 380 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 159, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "score": 1.0, + "content": "2 Model", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "score": 1.0, + "content": "In the section, we focus on the question of how to “optimally” combine the convolution and trans-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "score": 1.0, + "content": "former. Roughly speaking, we decompose the question into two parts:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 429, + 505, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 123, + 455, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "1. How to combine the convolution and self-attention within one basic computational block?", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "2. How to vertically stack different types of computational blocks together to form a complete", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "score": 1.0, + "content": "network?", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 129, + 455, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 500, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "score": 1.0, + "content": "The rationale of the decomposition will become clearer as we gradually reveal our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 497, + 500, + 513 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 302, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "score": 1.0, + "content": "2.1 Merging Convolution and Self-Attention", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "tion [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 222, + 597 + ], + "score": 1.0, + "content": "channel size of the input by", + "type": "text" + }, + { + "bbox": [ + 222, + 585, + 234, + 595 + ], + "score": 0.56, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 584, + 335, + 597 + ], + "score": 1.0, + "content": "and later project the the", + "type": "text" + }, + { + "bbox": [ + 335, + 585, + 347, + 595 + ], + "score": 0.46, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "-wide hidden state back to the original", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "score": 1.0, + "content": "channel size to enable residual connection.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 551, + 505, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "score": 1.0, + "content": "field", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 612, + 505, + 657 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 659, + 405, + 688 + ], + "lines": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "spans": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "score": 0.91, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,", + "type": "interline_equation", + "image_path": "6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 659, + 405, + 673.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 204, + 673.5, + 405, + 688.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 134, + 713 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 187, + 711 + ], + "score": 0.92, + "content": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 699, + 339, + 713 + ], + "score": 1.0, + "content": "are the input and output at position", + "type": "text" + }, + { + "bbox": [ + 340, + 701, + 344, + 710 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 699, + 419, + 713 + ], + "score": 1.0, + "content": "respectively, and", + "type": "text" + }, + { + "bbox": [ + 419, + 700, + 438, + 712 + ], + "score": 0.92, + "content": "\\mathcal { L } ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "denotes a local", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 382, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 175, + 725 + ], + "score": 1.0, + "content": "neighborhood of", + "type": "text" + }, + { + "bbox": [ + 175, + 712, + 180, + 721 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 709, + 291, + 725 + ], + "score": 1.0, + "content": ", e.g., a 3x3 grid centered at", + "type": "text" + }, + { + "bbox": [ + 292, + 712, + 296, + 721 + ], + "score": 0.81, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 709, + 382, + 725 + ], + "score": 1.0, + "content": "in image processing.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 699, + 505, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 82, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 411, + 97 + ], + "score": 1.0, + "content": "the weights based on the re-normalized pairwise similarity between the pair", + "type": "text" + }, + { + "bbox": [ + 411, + 83, + 442, + 96 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 82, + 452, + 97 + ], + "score": 1.0, + "content": ": 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 102, + 406, + 149 + ], + "lines": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "spans": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "score": 0.94, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,", + "type": "interline_equation", + "image_path": "a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 204, + 102, + 406, + 117.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 117.66666666666667, + 406, + 133.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 133.33333333333334, + 406, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 156, + 141, + 166 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "indicates the global spatial space. Before getting into the question of how to best combine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "score": 1.0, + "content": "the good properties we hope to retain.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 290, + 207 + ], + "score": 1.0, + "content": "• First of all, the depthwise convolution kernel", + "type": "text" + }, + { + "bbox": [ + 290, + 195, + 312, + 205 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 192, + 507, + 207 + ], + "score": 1.0, + "content": "is an input-independent parameter of static value,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 204, + 218, + 217 + ], + "score": 1.0, + "content": "while the attention weight", + "type": "text" + }, + { + "bbox": [ + 219, + 205, + 237, + 217 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "dynamically depends on the representation of the input. Hence, it is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "much easier for the self-attention to capture complicated relational interactions between different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "score": 1.0, + "content": "spatial positions, a property that we desire most when processing high-level concepts. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "score": 1.0, + "content": "the flexibility comes with a risk of easier overfitting, especially when data is limited.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 289, + 264 + ], + "score": 1.0, + "content": "• Secondly, notice that given any position pair", + "type": "text" + }, + { + "bbox": [ + 289, + 251, + 310, + 263 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 250, + 463, + 264 + ], + "score": 1.0, + "content": ", the corresponding convolution weight", + "type": "text" + }, + { + "bbox": [ + 463, + 253, + 484, + 263 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 113, + 262, + 303, + 274 + ], + "score": 1.0, + "content": "cares about the relative shift between them, i.e.", + "type": "text" + }, + { + "bbox": [ + 303, + 263, + 325, + 273 + ], + "score": 0.9, + "content": "i - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 262, + 458, + 274 + ], + "score": 1.0, + "content": ", rather than the specific values of", + "type": "text" + }, + { + "bbox": [ + 458, + 263, + 463, + 272 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 475, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 475, + 263, + 480, + 273 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 262, + 506, + 274 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "property is often referred to translation equivalence, which has been found to improve generalization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "spans": [ + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "score": 1.0, + "content": "Transformers when the dataset is not enormously large.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "• Finally, the size of the receptive field is one of the most crucial differences between self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "and convolution. Generally speaking, a larger receptive field provides more contextual information,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "score": 1.0, + "content": "which could lead to higher model capacity. Hence, the global receptive field has been a key", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "motivation to employ self-attention in vision. However, a large receptive field requires significantly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "score": 1.0, + "content": "more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "score": 1.0, + "content": "which has been a fundamental trade-off in applying self-attention models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 169, + 404, + 440, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "spans": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "score": 1.0, + "content": "Table 1: Desirable properties found in convolution or self-attention.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "spans": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "type": "table", + "image_path": "d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 175, + 416, + 430, + 434.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 175, + 434.6666666666667, + 430, + 453.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 175, + 453.33333333333337, + 430, + 472.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "text", + "bbox": [ + 109, + 485, + 503, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "straightforward idea that could achieve this is simply to sum a global static convolution kernel with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "score": 1.0, + "content": "the adaptive attention matrix, either after or before the Softmax normalization, i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 536, + 490, + 571 + ], + "lines": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "spans": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "score": 0.92, + "content": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .", + "type": "interline_equation", + "image_path": "6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 536, + 490, + 547.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 547.6666666666666, + 490, + 559.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 559.3333333333333, + 490, + 570.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 437, + 590 + ], + "score": 1.0, + "content": "Interestingly, while the idea seems overly simplified, the pre-normalization version", + "type": "text" + }, + { + "bbox": [ + 438, + 578, + 453, + 589 + ], + "score": 0.89, + "content": "y ^ { \\mathrm { p r e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 476, + 603 + ], + "score": 1.0, + "content": "to a particular variant of relative self-attention [30, 31]. In this case, the attention weight", + "type": "text" + }, + { + "bbox": [ + 476, + 589, + 494, + 601 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 587, + 506, + 603 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 200, + 614 + ], + "score": 1.0, + "content": "decided jointly by the", + "type": "text" + }, + { + "bbox": [ + 200, + 603, + 222, + 613 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 600, + 432, + 614 + ], + "score": 1.0, + "content": "of translation equivariance and the input-adaptive", + "type": "text" + }, + { + "bbox": [ + 432, + 600, + 455, + 613 + ], + "score": 0.92, + "content": "x _ { i } ^ { \\top } x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 600, + 505, + 614 + ], + "score": 1.0, + "content": ", which can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "the global convolution kernel without blowing up the number of parameters, we have reloaded the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 632, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 151, + 648 + ], + "score": 1.0, + "content": "notation of", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 173, + 647 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 632, + 237, + 648 + ], + "score": 1.0, + "content": "as a scalar (i.e.,", + "type": "text" + }, + { + "bbox": [ + 237, + 633, + 288, + 645 + ], + "score": 0.91, + "content": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 632, + 507, + 648 + ], + "score": 1.0, + "content": ") rather than a vector in Eqn. (1). Another advantage of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 210, + 659 + ], + "score": 1.0, + "content": "the scalar formulation of", + "type": "text" + }, + { + "bbox": [ + 210, + 647, + 218, + 655 + ], + "score": 0.8, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 644, + 289, + 659 + ], + "score": 1.0, + "content": "is that retrieving", + "type": "text" + }, + { + "bbox": [ + 289, + 647, + 311, + 658 + ], + "score": 0.89, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 644, + 340, + 659 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 340, + 646, + 361, + 658 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "is clearly subsumed by computing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Given the benefits, we will use the Transformer block with the pre-normalization relative attention", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "score": 1.0, + "content": "variant in Eqn. (3) as the key component of the proposed CoAtNet model.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "2 To simplify the presentation, we deliberately omit the multi-head query, key and value projections for now.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 366, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 366, + 723 + ], + "score": 1.0, + "content": "In the actual implementation, we always use the multi-head projections.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 82, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 411, + 97 + ], + "score": 1.0, + "content": "the weights based on the re-normalized pairwise similarity between the pair", + "type": "text" + }, + { + "bbox": [ + 411, + 83, + 442, + 96 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 82, + 452, + 97 + ], + "score": 1.0, + "content": ": 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 72, + 505, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 102, + 406, + 149 + ], + "lines": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "spans": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "score": 0.94, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,", + "type": "interline_equation", + "image_path": "a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 204, + 102, + 406, + 117.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 117.66666666666667, + 406, + 133.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 133.33333333333334, + 406, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 156, + 141, + 166 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "indicates the global spatial space. Before getting into the question of how to best combine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "score": 1.0, + "content": "the good properties we hope to retain.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 154, + 505, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 290, + 207 + ], + "score": 1.0, + "content": "• First of all, the depthwise convolution kernel", + "type": "text" + }, + { + "bbox": [ + 290, + 195, + 312, + 205 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 192, + 507, + 207 + ], + "score": 1.0, + "content": "is an input-independent parameter of static value,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 204, + 218, + 217 + ], + "score": 1.0, + "content": "while the attention weight", + "type": "text" + }, + { + "bbox": [ + 219, + 205, + 237, + 217 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "dynamically depends on the representation of the input. Hence, it is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "much easier for the self-attention to capture complicated relational interactions between different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "score": 1.0, + "content": "spatial positions, a property that we desire most when processing high-level concepts. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "score": 1.0, + "content": "the flexibility comes with a risk of easier overfitting, especially when data is limited.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 289, + 264 + ], + "score": 1.0, + "content": "• Secondly, notice that given any position pair", + "type": "text" + }, + { + "bbox": [ + 289, + 251, + 310, + 263 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 250, + 463, + 264 + ], + "score": 1.0, + "content": ", the corresponding convolution weight", + "type": "text" + }, + { + "bbox": [ + 463, + 253, + 484, + 263 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 113, + 262, + 303, + 274 + ], + "score": 1.0, + "content": "cares about the relative shift between them, i.e.", + "type": "text" + }, + { + "bbox": [ + 303, + 263, + 325, + 273 + ], + "score": 0.9, + "content": "i - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 262, + 458, + 274 + ], + "score": 1.0, + "content": ", rather than the specific values of", + "type": "text" + }, + { + "bbox": [ + 458, + 263, + 463, + 272 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 475, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 475, + 263, + 480, + 273 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 262, + 506, + 274 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "property is often referred to translation equivalence, which has been found to improve generalization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "spans": [ + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "score": 1.0, + "content": "Transformers when the dataset is not enormously large.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "• Finally, the size of the receptive field is one of the most crucial differences between self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "and convolution. Generally speaking, a larger receptive field provides more contextual information,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "score": 1.0, + "content": "which could lead to higher model capacity. Hence, the global receptive field has been a key", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "motivation to employ self-attention in vision. However, a large receptive field requires significantly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "score": 1.0, + "content": "more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "score": 1.0, + "content": "which has been a fundamental trade-off in applying self-attention models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 192, + 507, + 385 + ] + }, + { + "type": "table", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 169, + 404, + 440, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "spans": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "score": 1.0, + "content": "Table 1: Desirable properties found in convolution or self-attention.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "spans": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "type": "table", + "image_path": "d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 175, + 416, + 430, + 434.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 175, + 434.6666666666667, + 430, + 453.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 175, + 453.33333333333337, + 430, + 472.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "text", + "bbox": [ + 109, + 485, + 503, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "straightforward idea that could achieve this is simply to sum a global static convolution kernel with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "score": 1.0, + "content": "the adaptive attention matrix, either after or before the Softmax normalization, i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 484, + 506, + 530 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 536, + 490, + 571 + ], + "lines": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "spans": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "score": 0.92, + "content": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .", + "type": "interline_equation", + "image_path": "6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 536, + 490, + 547.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 547.6666666666666, + 490, + 559.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 559.3333333333333, + 490, + 570.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 437, + 590 + ], + "score": 1.0, + "content": "Interestingly, while the idea seems overly simplified, the pre-normalization version", + "type": "text" + }, + { + "bbox": [ + 438, + 578, + 453, + 589 + ], + "score": 0.89, + "content": "y ^ { \\mathrm { p r e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 476, + 603 + ], + "score": 1.0, + "content": "to a particular variant of relative self-attention [30, 31]. In this case, the attention weight", + "type": "text" + }, + { + "bbox": [ + 476, + 589, + 494, + 601 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 587, + 506, + 603 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 200, + 614 + ], + "score": 1.0, + "content": "decided jointly by the", + "type": "text" + }, + { + "bbox": [ + 200, + 603, + 222, + 613 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 600, + 432, + 614 + ], + "score": 1.0, + "content": "of translation equivariance and the input-adaptive", + "type": "text" + }, + { + "bbox": [ + 432, + 600, + 455, + 613 + ], + "score": 0.92, + "content": "x _ { i } ^ { \\top } x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 600, + 505, + 614 + ], + "score": 1.0, + "content": ", which can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "the global convolution kernel without blowing up the number of parameters, we have reloaded the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 632, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 151, + 648 + ], + "score": 1.0, + "content": "notation of", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 173, + 647 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 632, + 237, + 648 + ], + "score": 1.0, + "content": "as a scalar (i.e.,", + "type": "text" + }, + { + "bbox": [ + 237, + 633, + 288, + 645 + ], + "score": 0.91, + "content": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 632, + 507, + 648 + ], + "score": 1.0, + "content": ") rather than a vector in Eqn. (1). Another advantage of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 210, + 659 + ], + "score": 1.0, + "content": "the scalar formulation of", + "type": "text" + }, + { + "bbox": [ + 210, + 647, + 218, + 655 + ], + "score": 0.8, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 644, + 289, + 659 + ], + "score": 1.0, + "content": "is that retrieving", + "type": "text" + }, + { + "bbox": [ + 289, + 647, + 311, + 658 + ], + "score": 0.89, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 644, + 340, + 659 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 340, + 646, + 361, + 658 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "is clearly subsumed by computing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Given the benefits, we will use the Transformer block with the pre-normalization relative attention", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "score": 1.0, + "content": "variant in Eqn. (3) as the key component of the proposed CoAtNet model.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 576, + 507, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 228, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "score": 1.0, + "content": "2.2 Vertical Layout Design", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 94, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "score": 1.0, + "content": "to stack an entire network.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "score": 1.0, + "content": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "be excessively slow due to the large number of pixels in any image of common sizes. Hence, to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "score": 1.0, + "content": "construct a network that is feasible in practice, we have mainly three options:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "spans": [ + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "score": 1.0, + "content": "after the feature map reaches manageable level.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 196, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 380, + 209 + ], + "score": 1.0, + "content": "(B) Enforce local attention, which restricts the global receptive field", + "type": "text" + }, + { + "bbox": [ + 381, + 197, + 389, + 207 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 196, + 495, + 209 + ], + "score": 1.0, + "content": "in attention to a local field", + "type": "text" + }, + { + "bbox": [ + 496, + 197, + 504, + 207 + ], + "score": 0.62, + "content": "\\mathcal { L }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "spans": [ + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "score": 1.0, + "content": "just like in convolution [22, 21].", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "spans": [ + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "score": 1.0, + "content": "linear complexity w.r.t. the spatial size [12, 32, 33].", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "found that implementing local attention involves many non-trivial shape formatting operations that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "extremely slow [34], which not only defeats the original purpose of speeding up global attention, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "score": 1.0, + "content": "focus on option (A) and compare our results with theirs in our empirical study (Section 4).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "With these choices, we derive a search space of 5 variants and compare them in controlled experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 359, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 298, + 371 + ], + "score": 1.0, + "content": "• When the ViT Stem is used, we directly stack", + "type": "text" + }, + { + "bbox": [ + 298, + 360, + 306, + 369 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Transformer blocks with relative attention, which", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 369, + 204, + 383 + ], + "spans": [ + { + "bbox": [ + 113, + 369, + 168, + 383 + ], + "score": 1.0, + "content": "we denote as", + "type": "text" + }, + { + "bbox": [ + 169, + 370, + 199, + 381 + ], + "score": 0.87, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 369, + 204, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 113, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 113, + 406, + 322, + 419 + ], + "score": 1.0, + "content": "of each stage, we always reduce the spatial size by", + "type": "text" + }, + { + "bbox": [ + 322, + 407, + 335, + 417 + ], + "score": 0.57, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "and increase the number of channels (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "score": 1.0, + "content": "Appendix A.1 for the detailed down-sampling implementation).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "score": 1.0, + "content": "convolution stages must appear before Transformer stages. The constraint is based on the prior", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "that convolution is better at processing local patterns that are more common in early stages. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "score": 1.0, + "content": "C-T-T-T, where C and T denote Convolution and Transformer respectively.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "To systematically study the design choices, we consider two fundamental aspects generalization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "capability and model capacity: For generalization, we are interested in the gap between the training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "score": 1.0, + "content": "loss and the evaluation accuracy. If two models have the same training loss, then the model with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "higher evaluation accuracy has better generalization capability, since it can generalize better to unseen", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "evaluation dataset. Generalization capability is particularly important to data efficiency when training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "data size is limited. For model capacity, we measure the ability to fit large training datasets. When", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "training data is abundant and overfitting is not an issue, the model with higher capacity will achieve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "better final performance after reasonable training steps. Note that, since simply increasing the model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "score": 1.0, + "content": "sizes of the 5 variants are comparable.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "To compare the generalization and model capacity, we train different variants of hybrid models on", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 653 + ], + "score": 1.0, + "content": "ImageNet-1K (1.3M) and JFT", + "type": "text" + }, + { + "bbox": [ + 235, + 640, + 272, + 651 + ], + "score": 0.76, + "content": "\\left( > 3 0 0 \\mathbf { M } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "dataset for 300 and 3 epochs respectively, both without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "any regularization or augmentation. The training loss and evaluation accuracy on both datasets are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "summarized in Figure 1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 104, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "spans": [ + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "score": 1.0, + "content": "gap between train and evaluation metrics), we have", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 710, + 430, + 723 + ], + "lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "score": 0.79, + "content": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }", + "type": "interline_equation", + "image_path": "5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [], + "index": 51 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 228, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "score": 1.0, + "content": "2.2 Vertical Layout Design", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 94, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "score": 1.0, + "content": "to stack an entire network.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 94, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "score": 1.0, + "content": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "be excessively slow due to the large number of pixels in any image of common sizes. Hence, to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "score": 1.0, + "content": "construct a network that is feasible in practice, we have mainly three options:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 121, + 507, + 167 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 171, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "spans": [ + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "score": 1.0, + "content": "after the feature map reaches manageable level.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 196, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 380, + 209 + ], + "score": 1.0, + "content": "(B) Enforce local attention, which restricts the global receptive field", + "type": "text" + }, + { + "bbox": [ + 381, + 197, + 389, + 207 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 196, + 495, + 209 + ], + "score": 1.0, + "content": "in attention to a local field", + "type": "text" + }, + { + "bbox": [ + 496, + 197, + 504, + 207 + ], + "score": 0.62, + "content": "\\mathcal { L }", + "type": "inline_equation" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "spans": [ + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "score": 1.0, + "content": "just like in convolution [22, 21].", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "spans": [ + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "score": 1.0, + "content": "linear complexity w.r.t. the spatial size [12, 32, 33].", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 171, + 506, + 246 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "found that implementing local attention involves many non-trivial shape formatting operations that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "extremely slow [34], which not only defeats the original purpose of speeding up global attention, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "score": 1.0, + "content": "focus on option (A) and compare our results with theirs in our empirical study (Section 4).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 249, + 506, + 316 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "With these choices, we derive a search space of 5 variants and compare them in controlled experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 320, + 505, + 355 + ] + }, + { + "type": "list", + "bbox": [ + 105, + 359, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 298, + 371 + ], + "score": 1.0, + "content": "• When the ViT Stem is used, we directly stack", + "type": "text" + }, + { + "bbox": [ + 298, + 360, + 306, + 369 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Transformer blocks with relative attention, which", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 369, + 204, + 383 + ], + "spans": [ + { + "bbox": [ + 113, + 369, + 168, + 383 + ], + "score": 1.0, + "content": "we denote as", + "type": "text" + }, + { + "bbox": [ + 169, + 370, + 199, + 381 + ], + "score": 0.87, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 369, + 204, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 113, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 113, + 406, + 322, + 419 + ], + "score": 1.0, + "content": "of each stage, we always reduce the spatial size by", + "type": "text" + }, + { + "bbox": [ + 322, + 407, + 335, + 417 + ], + "score": 0.57, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "and increase the number of channels (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "score": 1.0, + "content": "Appendix A.1 for the detailed down-sampling implementation).", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "score": 1.0, + "content": "convolution stages must appear before Transformer stages. The constraint is based on the prior", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "that convolution is better at processing local patterns that are more common in early stages. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "score": 1.0, + "content": "C-T-T-T, where C and T denote Convolution and Transformer respectively.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + } + ], + "index": 28, + "bbox_fs": [ + 105, + 358, + 506, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "To systematically study the design choices, we consider two fundamental aspects generalization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "capability and model capacity: For generalization, we are interested in the gap between the training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "score": 1.0, + "content": "loss and the evaluation accuracy. If two models have the same training loss, then the model with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "higher evaluation accuracy has better generalization capability, since it can generalize better to unseen", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "evaluation dataset. Generalization capability is particularly important to data efficiency when training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "data size is limited. For model capacity, we measure the ability to fit large training datasets. When", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "training data is abundant and overfitting is not an issue, the model with higher capacity will achieve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "better final performance after reasonable training steps. Note that, since simply increasing the model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "score": 1.0, + "content": "sizes of the 5 variants are comparable.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 514, + 506, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "To compare the generalization and model capacity, we train different variants of hybrid models on", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 653 + ], + "score": 1.0, + "content": "ImageNet-1K (1.3M) and JFT", + "type": "text" + }, + { + "bbox": [ + 235, + 640, + 272, + 651 + ], + "score": 0.76, + "content": "\\left( > 3 0 0 \\mathbf { M } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "dataset for 300 and 3 epochs respectively, both without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "any regularization or augmentation. The training loss and evaluation accuracy on both datasets are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "summarized in Figure 1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 629, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "spans": [ + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "score": 1.0, + "content": "gap between train and evaluation metrics), we have", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5, + "bbox_fs": [ + 104, + 676, + 506, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 710, + 430, + 723 + ], + "lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "score": 0.79, + "content": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }", + "type": "interline_equation", + "image_path": "5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [], + "index": 51 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "score": 0.971, + "type": "image", + "image_path": "8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 502, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 110.0, + 502, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 148.0, + 502, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 192, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "Figure 1: Comparison for model generalization and capacity under different data size. For fair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "score": 1.0, + "content": "comparison, all models have similar parameter size and computational cost.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 114, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 114, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 236, + 167, + 250 + ], + "score": 1.0, + "content": "Particularly,", + "type": "text" + }, + { + "bbox": [ + 167, + 237, + 198, + 248 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "is significantly worse than variants by a large margin, which we conjecture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "is related to the lack of proper low-level information processing in its aggressive down-sampling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "spans": [ + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "score": 1.0, + "content": "model has, the smaller the generalization gap is.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "score": 1.0, + "content": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "score": 1.0, + "content": "of the training suggest the following ranking:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 310, + 430, + 323 + ], + "lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "score": 0.82, + "content": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }", + "type": "interline_equation", + "image_path": "db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 329, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 431, + 352 + ], + "score": 1.0, + "content": "mean higher capacity for visual processing. On one hand, while initially worse,", + "type": "text" + }, + { + "bbox": [ + 432, + 340, + 461, + 351 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 341, + 505, + 352 + ], + "score": 1.0, + "content": "ultimately", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "catch up with the two variants with more MBConv stages, indicating the capacity advantage of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 113, + 359, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 113, + 359, + 473, + 376 + ], + "score": 1.0, + "content": "Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming", + "type": "text" + }, + { + "bbox": [ + 473, + 362, + 504, + 373 + ], + "score": 0.88, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "suggest that the ViT stem with an aggressive stride may have lost too much information and hence", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 113, + 382, + 387, + 396 + ], + "score": 1.0, + "content": "limit the model capacity. More interestingly, the fact that C-C-T-T", + "type": "text" + }, + { + "bbox": [ + 387, + 384, + 407, + 394 + ], + "score": 0.37, + "content": "\\approx \\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "-T-T-T indicates the for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing low-level information, static local operations like convolution could be as capable as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "score": 1.0, + "content": "adaptive global attention mechanism, while saving computation and memory usage substantially.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "score": 1.0, + "content": "accuracy than C-T-T-T, despite the same pre-training performance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "table", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 474, + 376, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "score": 1.0, + "content": "Table 2: Transferability test results.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "spans": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "type": "table", + "image_path": "c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 485, + 424, + 499.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 184, + 499.0, + 424, + 513.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 513.0, + 424, + 527.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 184, + 527.0, + 424, + 541.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 25.25 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "score": 1.0, + "content": "C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 197, + 604 + ], + "lines": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "score": 1.0, + "content": "3 Related Work", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dom-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "inating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28]", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "are popular in mobile platforms due to its lower computational cost and smaller parameter size [27].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "score": 1.0, + "content": "paper mostly employs MBConv as convolution building blocks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 711, + 462, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 463, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 463, + 724 + ], + "score": 1.0, + "content": "3 Rigorously speaking, this test examines not only the transferability but also the generalization.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "score": 0.971, + "type": "image", + "image_path": "8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 502, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 110.0, + 502, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 148.0, + 502, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 192, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "Figure 1: Comparison for model generalization and capacity under different data size. For fair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "score": 1.0, + "content": "comparison, all models have similar parameter size and computational cost.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 114, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 114, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 236, + 167, + 250 + ], + "score": 1.0, + "content": "Particularly,", + "type": "text" + }, + { + "bbox": [ + 167, + 237, + 198, + 248 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "is significantly worse than variants by a large margin, which we conjecture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "is related to the lack of proper low-level information processing in its aggressive down-sampling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "spans": [ + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "score": 1.0, + "content": "model has, the smaller the generalization gap is.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 113, + 236, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "score": 1.0, + "content": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "score": 1.0, + "content": "of the training suggest the following ranking:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 280, + 506, + 307 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 310, + 430, + 323 + ], + "lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "score": 0.82, + "content": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }", + "type": "interline_equation", + "image_path": "db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 329, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 431, + 352 + ], + "score": 1.0, + "content": "mean higher capacity for visual processing. On one hand, while initially worse,", + "type": "text" + }, + { + "bbox": [ + 432, + 340, + 461, + 351 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 341, + 505, + 352 + ], + "score": 1.0, + "content": "ultimately", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "catch up with the two variants with more MBConv stages, indicating the capacity advantage of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 113, + 359, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 113, + 359, + 473, + 376 + ], + "score": 1.0, + "content": "Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming", + "type": "text" + }, + { + "bbox": [ + 473, + 362, + 504, + 373 + ], + "score": 0.88, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "suggest that the ViT stem with an aggressive stride may have lost too much information and hence", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 113, + 382, + 387, + 396 + ], + "score": 1.0, + "content": "limit the model capacity. More interestingly, the fact that C-C-T-T", + "type": "text" + }, + { + "bbox": [ + 387, + 384, + 407, + 394 + ], + "score": 0.37, + "content": "\\approx \\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "-T-T-T indicates the for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing low-level information, static local operations like convolution could be as capable as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "score": 1.0, + "content": "adaptive global attention mechanism, while saving computation and memory usage substantially.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 113, + 329, + 506, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "score": 1.0, + "content": "accuracy than C-T-T-T, despite the same pre-training performance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 421, + 506, + 468 + ] + }, + { + "type": "table", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 474, + 376, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "score": 1.0, + "content": "Table 2: Transferability test results.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "spans": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "type": "table", + "image_path": "c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 485, + 424, + 499.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 184, + 499.0, + 424, + 513.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 513.0, + 424, + 527.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 184, + 527.0, + 424, + 541.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 25.25 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "score": 1.0, + "content": "C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 552, + 504, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 197, + 604 + ], + "lines": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "score": 1.0, + "content": "3 Related Work", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dom-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "inating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28]", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "are popular in mobile platforms due to its lower computational cost and smaller parameter size [27].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "score": 1.0, + "content": "paper mostly employs MBConv as convolution building blocks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 614, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "been widely adopted for neural language processing and speech understanding. As an early work,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "stand-alone self-attention network [34] shows self-attention alone can work well for different vision", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Following that, many recent works have been focused on improving vision Transformers for data", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "score": 1.0, + "content": "readers to the dedicated surveys [36, 37].", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Relative attention. Under the general name of relative attention, there have been various variants", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "(a) the input-dependent version where the extra relative attention score is a function of the input", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 132, + 227 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 133, + 215, + 196, + 228 + ], + "score": 0.93, + "content": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 215, + 361, + 227 + ], + "score": 1.0, + "content": ", and (b) the input-independent version", + "type": "text" + }, + { + "bbox": [ + 361, + 215, + 397, + 227 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 215, + 506, + 227 + ], + "score": 1.0, + "content": ". The variant in CoAtNet", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "neither share the relative attention parameters across layers nor use the bucketing mechanism. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 294, + 261 + ], + "score": 1.0, + "content": "a benefit of the input independence, obtaining", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 329, + 260 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 248, + 358, + 261 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 358, + 248, + 379, + 260 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "pairs is computationally much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "computed once and cached for future use. A recent work [22] also utilizes such an input-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "score": 1.0, + "content": "parameterization, but it restricts the receptive field to a local window.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Combining convolution and self-attention. The idea of combining convolution and self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "for vision recognition is not new. A common approach is to augment the ConvNet backbone with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "self-attention usually improves the accuracy, they often come with extra computational cost and hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "score": 1.0, + "content": "convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "While our work also belongs to this category, we show that our relative attention instantiation is a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "score": 1.0, + "content": "natural mixture of depthwise convolution and content-based attention with minimum additional cost.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "More importantly, starting from the perspectives of generalization and model capacity, we take a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "score": 1.0, + "content": "systematic approach to the vertical layout design and show how and why different network stages", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "(S2) when the overall size increases. On the other hand, compared to models employing local", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "score": 1.0, + "content": "as S3 occupies the majority of the computation and parameters.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 521, + 191, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, we compare CoAtNet with previous results under comparable settings. For complete-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "score": 1.0, + "content": "ness, all the hyper-parameters not mentioned here are included in Appendix A.2.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 107, + 580, + 213, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "score": 1.0, + "content": "4.1 Experiment Setting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "CoAtNet model family. To compare with existing models of different sizes, we also design a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "family of CoAtNet models as summarized in Table 3. Overall, we always double the number of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "score": 1.0, + "content": "S2 and S3.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "been widely adopted for neural language processing and speech understanding. As an early work,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "stand-alone self-attention network [34] shows self-attention alone can work well for different vision", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Following that, many recent works have been focused on improving vision Transformers for data", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "score": 1.0, + "content": "readers to the dedicated surveys [36, 37].", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 73, + 506, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Relative attention. Under the general name of relative attention, there have been various variants", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "(a) the input-dependent version where the extra relative attention score is a function of the input", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 132, + 227 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 133, + 215, + 196, + 228 + ], + "score": 0.93, + "content": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 215, + 361, + 227 + ], + "score": 1.0, + "content": ", and (b) the input-independent version", + "type": "text" + }, + { + "bbox": [ + 361, + 215, + 397, + 227 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 215, + 506, + 227 + ], + "score": 1.0, + "content": ". The variant in CoAtNet", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "neither share the relative attention parameters across layers nor use the bucketing mechanism. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 294, + 261 + ], + "score": 1.0, + "content": "a benefit of the input independence, obtaining", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 329, + 260 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 248, + 358, + 261 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 358, + 248, + 379, + 260 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "pairs is computationally much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "computed once and cached for future use. A recent work [22] also utilizes such an input-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "score": 1.0, + "content": "parameterization, but it restricts the receptive field to a local window.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 182, + 506, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Combining convolution and self-attention. The idea of combining convolution and self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "for vision recognition is not new. A common approach is to augment the ConvNet backbone with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "self-attention usually improves the accuracy, they often come with extra computational cost and hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "score": 1.0, + "content": "convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 304, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "While our work also belongs to this category, we show that our relative attention instantiation is a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "score": 1.0, + "content": "natural mixture of depthwise convolution and content-based attention with minimum additional cost.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "More importantly, starting from the perspectives of generalization and model capacity, we take a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "score": 1.0, + "content": "systematic approach to the vertical layout design and show how and why different network stages", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "(S2) when the overall size increases. On the other hand, compared to models employing local", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "score": 1.0, + "content": "as S3 occupies the majority of the computation and parameters.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 408, + 507, + 508 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 521, + 191, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, we compare CoAtNet with previous results under comparable settings. For complete-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "score": 1.0, + "content": "ness, all the hyper-parameters not mentioned here are included in Appendix A.2.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 545, + 505, + 568 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 580, + 213, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "score": 1.0, + "content": "4.1 Experiment Setting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "CoAtNet model family. To compare with existing models of different sizes, we also design a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "family of CoAtNet models as summarized in Table 3. Overall, we always double the number of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "score": 1.0, + "content": "S2 and S3.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 600, + 506, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "score": 1.0, + "content": "ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "score": 1.0, + "content": "on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "score": 1.0, + "content": "finetuning is always employed whenever input resolution changes.", + "type": "text", + "cross_page": true + } + ], + "index": 11 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 666, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 77, + 506, + 121 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "score": 1.0, + "content": "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "score": 1.0, + "content": "Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "score": 1.0, + "content": "always 4 and the expansion (shrink) rate for the SE is always 0.25.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "type": "table", + "image_path": "84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 122, + 506, + 146.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.0, + 506, + 170.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 170.0, + 506, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 506, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "score": 1.0, + "content": "ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "score": 1.0, + "content": "on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "score": 1.0, + "content": "finetuning is always employed whenever input resolution changes.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Data Augmentation & Regularization. In this work, we only consider two widely used data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "score": 1.0, + "content": "stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "the specific hyper-parameters of the augmentation and regularization methods depend on model size", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "score": 1.0, + "content": "and data scale, where strong regularization is usually applied for larger models and smaller dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "Under the general principle, a complication under the current paradigm is how to adjust the regular-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "ization for pre-training and finetuning as data size can change. Specifically, we have an interesting", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "observation that if a certain type of augmentation is entirely disabled during pre-training, simply", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "score": 1.0, + "content": "turning it on during fine-tuning would most likely harm the performance rather than improving.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "We conjecture this could be related to data distribution shift. As a result, for certain runs of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "score": 1.0, + "content": "harm the pre-training metrics, this allows more versatile regularization and augmentation during", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "score": 1.0, + "content": "finetuning, leading to improved down-stream performances.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 187, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "4.2 Main Results", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "score": 0.97, + "type": "image", + "image_path": "cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 110, + 476, + 293, + 489.27272727272725 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 110, + 489.27272727272725, + 293, + 502.5454545454545 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 110, + 502.5454545454545, + 293, + 515.8181818181818 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 110, + 515.8181818181818, + 293, + 529.090909090909 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 110, + 529.090909090909, + 293, + 542.3636363636363 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 110, + 542.3636363636363, + 293, + 555.6363636363635 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 110, + 555.6363636363635, + 293, + 568.9090909090908 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 110, + 568.9090909090908, + 293, + 582.181818181818 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 110, + 582.181818181818, + 293, + 595.4545454545453 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 595.4545454545453, + 293, + 608.7272727272725 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 110, + 608.7272727272725, + 293, + 621.9999999999998 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 632, + 299, + 654 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "score": 1.0, + "content": "Figure 2: Accuracy-to-FLOPs scaling curve un-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 642, + 278, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 237, + 655 + ], + "score": 1.0, + "content": "der ImageNet-1K only setting at", + "type": "text" + }, + { + "bbox": [ + 238, + 642, + 274, + 653 + ], + "score": 0.64, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 642, + 278, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.0 + } + ], + "index": 43.5 + }, + { + "type": "image", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "spans": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "score": 0.972, + "type": "image", + "image_path": "f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 314, + 477, + 498, + 490.1818181818182 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 490.1818181818182, + 498, + 503.3636363636364 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 503.3636363636364, + 498, + 516.5454545454545 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 516.5454545454545, + 498, + 529.7272727272726 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 529.7272727272726, + 498, + 542.9090909090908 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 542.9090909090908, + 498, + 556.0909090909089 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 556.0909090909089, + 498, + 569.272727272727 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 569.272727272727, + 498, + 582.4545454545452 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 582.4545454545452, + 498, + 595.6363636363633 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 595.6363636363633, + 498, + 608.8181818181814 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 608.8181818181814, + 498, + 621.9999999999995 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 632, + 503, + 654 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "score": 1.0, + "content": "Figure 3: Accuracy-to-Params scaling curve un-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 309, + 640, + 489, + 657 + ], + "spans": [ + { + "bbox": [ + 309, + 640, + 367, + 657 + ], + "score": 1.0, + "content": "der ImageNet-", + "type": "text" + }, + { + "bbox": [ + 368, + 643, + 399, + 653 + ], + "score": 0.65, + "content": "2 1 \\mathrm { K } \\Rightarrow", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 640, + 489, + 657 + ], + "score": 1.0, + "content": "ImageNet-1K setting.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.0 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "score": 1.0, + "content": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 273, + 713 + ], + "score": 1.0, + "content": "also visualize the all results at resolution", + "type": "text" + }, + { + "bbox": [ + 273, + 700, + 310, + 711 + ], + "score": 0.51, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "in Fig. 2. As we can see, CoAtNet scales much", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "score": 1.0, + "content": "better than previous model with attention modules.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 55 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 77, + 506, + 121 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "score": 1.0, + "content": "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "score": 1.0, + "content": "Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "score": 1.0, + "content": "always 4 and the expansion (shrink) rate for the SE is always 0.25.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "type": "table", + "image_path": "84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 122, + 506, + 146.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.0, + 506, + 170.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 170.0, + 506, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 506, + 263 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 105, + 208, + 507, + 264 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Data Augmentation & Regularization. In this work, we only consider two widely used data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "score": 1.0, + "content": "stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "the specific hyper-parameters of the augmentation and regularization methods depend on model size", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "score": 1.0, + "content": "and data scale, where strong regularization is usually applied for larger models and smaller dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 275, + 507, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "Under the general principle, a complication under the current paradigm is how to adjust the regular-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "ization for pre-training and finetuning as data size can change. Specifically, we have an interesting", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "observation that if a certain type of augmentation is entirely disabled during pre-training, simply", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "score": 1.0, + "content": "turning it on during fine-tuning would most likely harm the performance rather than improving.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "We conjecture this could be related to data distribution shift. As a result, for certain runs of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "score": 1.0, + "content": "harm the pre-training metrics, this allows more versatile regularization and augmentation during", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "score": 1.0, + "content": "finetuning, leading to improved down-stream performances.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 335, + 507, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 187, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "4.2 Main Results", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "score": 0.97, + "type": "image", + "image_path": "cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 110, + 476, + 293, + 489.27272727272725 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 110, + 489.27272727272725, + 293, + 502.5454545454545 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 110, + 502.5454545454545, + 293, + 515.8181818181818 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 110, + 515.8181818181818, + 293, + 529.090909090909 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 110, + 529.090909090909, + 293, + 542.3636363636363 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 110, + 542.3636363636363, + 293, + 555.6363636363635 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 110, + 555.6363636363635, + 293, + 568.9090909090908 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 110, + 568.9090909090908, + 293, + 582.181818181818 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 110, + 582.181818181818, + 293, + 595.4545454545453 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 595.4545454545453, + 293, + 608.7272727272725 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 110, + 608.7272727272725, + 293, + 621.9999999999998 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 632, + 299, + 654 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "score": 1.0, + "content": "Figure 2: Accuracy-to-FLOPs scaling curve un-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 642, + 278, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 237, + 655 + ], + "score": 1.0, + "content": "der ImageNet-1K only setting at", + "type": "text" + }, + { + "bbox": [ + 238, + 642, + 274, + 653 + ], + "score": 0.64, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 642, + 278, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.0 + } + ], + "index": 43.5 + }, + { + "type": "image", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "spans": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "score": 0.972, + "type": "image", + "image_path": "f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 314, + 477, + 498, + 490.1818181818182 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 490.1818181818182, + 498, + 503.3636363636364 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 503.3636363636364, + 498, + 516.5454545454545 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 516.5454545454545, + 498, + 529.7272727272726 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 529.7272727272726, + 498, + 542.9090909090908 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 542.9090909090908, + 498, + 556.0909090909089 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 556.0909090909089, + 498, + 569.272727272727 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 569.272727272727, + 498, + 582.4545454545452 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 582.4545454545452, + 498, + 595.6363636363633 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 595.6363636363633, + 498, + 608.8181818181814 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 608.8181818181814, + 498, + 621.9999999999995 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 632, + 503, + 654 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "score": 1.0, + "content": "Figure 3: Accuracy-to-Params scaling curve un-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 309, + 640, + 489, + 657 + ], + "spans": [ + { + "bbox": [ + 309, + 640, + 367, + 657 + ], + "score": 1.0, + "content": "der ImageNet-", + "type": "text" + }, + { + "bbox": [ + 368, + 643, + 399, + 653 + ], + "score": 0.65, + "content": "2 1 \\mathrm { K } \\Rightarrow", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 640, + 489, + 657 + ], + "score": 1.0, + "content": "ImageNet-1K setting.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.0 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "score": 1.0, + "content": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 273, + 713 + ], + "score": 1.0, + "content": "also visualize the all results at resolution", + "type": "text" + }, + { + "bbox": [ + 273, + 700, + 310, + 711 + ], + "score": 0.51, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "in Fig. 2. As we can see, CoAtNet scales much", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "score": 1.0, + "content": "better than previous model with attention modules.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 55, + "bbox_fs": [ + 105, + 667, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 68, + 506, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 471, + 82 + ], + "score": 1.0, + "content": "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only;", + "type": "text" + }, + { + "bbox": [ + 471, + 69, + 505, + 79 + ], + "score": 0.83, + "content": "2 1 \\mathtt { K } + 1 \\mathtt { K }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "score": 1.0, + "content": "denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "score": 1.0, + "content": "RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "score": 1.0, + "content": "longer than the standard 90 epochs. More results are in Appendix A.3.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "type": "table", + "image_path": "07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 105, + 111, + 516, + 244.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 105, + 244.33333333333334, + 516, + 377.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 377.6666666666667, + 516, + 511.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "score": 1.0, + "content": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "training, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 562, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 396, + 575 + ], + "score": 1.0, + "content": "models. Notably, the best CoAtNet variant achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 396, + 563, + 428, + 573 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 562, + 507, + 575 + ], + "score": 1.0, + "content": ", matching the ViT-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "H/14 performance of", + "type": "text" + }, + { + "bbox": [ + 192, + 574, + 224, + 584 + ], + "score": 0.89, + "content": "8 8 . 5 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 573, + 352, + 586 + ], + "score": 1.0, + "content": ", which requires pre-training the", + "type": "text" + }, + { + "bbox": [ + 352, + 574, + 372, + 584 + ], + "score": 0.76, + "content": "2 . 3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 573, + 462, + 586 + ], + "score": 1.0, + "content": "larger ViT model on a", + "type": "text" + }, + { + "bbox": [ + 462, + 574, + 479, + 584 + ], + "score": 0.76, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 282, + 597 + ], + "score": 1.0, + "content": "proprietary weakly labeled dataset (JFT) for", + "type": "text" + }, + { + "bbox": [ + 282, + 585, + 301, + 595 + ], + "score": 0.82, + "content": "2 . 2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "more steps. This marks a dramatic improvement in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "score": 1.0, + "content": "both data efficiency and computation efficiency.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 648, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 232, + 665 + ], + "score": 1.0, + "content": "with JFT-300M set by NFNet-", + "type": "text" + }, + { + "bbox": [ + 232, + 651, + 249, + 661 + ], + "score": 0.64, + "content": "\\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 648, + 305, + 665 + ], + "score": 1.0, + "content": ", while being", + "type": "text" + }, + { + "bbox": [ + 305, + 651, + 317, + 661 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 648, + 506, + 665 + ], + "score": 1.0, + "content": "more efficient in terms of both TPU training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "time and parameter count. When we scale up the model to consume similar training resource as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 137, + 685 + ], + "score": 1.0, + "content": "NFNet-", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 155, + 683 + ], + "score": 0.82, + "content": ". \\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 672, + 240, + 685 + ], + "score": 1.0, + "content": ", CoAtNet-5 reaches", + "type": "text" + }, + { + "bbox": [ + 240, + 673, + 273, + 683 + ], + "score": 0.87, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "on top-1 accuracy, outperforming previous results under", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "score": 1.0, + "content": "comparable settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 337, + 723 + ], + "score": 1.0, + "content": "same JFT-3B dataset of an even larger size [26], with over", + "type": "text" + }, + { + "bbox": [ + 337, + 711, + 349, + 721 + ], + "score": 0.39, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "less computation, CoAtNet-6 is able to", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 68, + 506, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 471, + 82 + ], + "score": 1.0, + "content": "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only;", + "type": "text" + }, + { + "bbox": [ + 471, + 69, + 505, + 79 + ], + "score": 0.83, + "content": "2 1 \\mathtt { K } + 1 \\mathtt { K }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "score": 1.0, + "content": "denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "score": 1.0, + "content": "RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "score": 1.0, + "content": "longer than the standard 90 epochs. More results are in Appendix A.3.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "type": "table", + "image_path": "07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 105, + 111, + 516, + 244.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 105, + 244.33333333333334, + 516, + 377.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 377.6666666666667, + 516, + 511.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "score": 1.0, + "content": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "training, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 562, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 396, + 575 + ], + "score": 1.0, + "content": "models. Notably, the best CoAtNet variant achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 396, + 563, + 428, + 573 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 562, + 507, + 575 + ], + "score": 1.0, + "content": ", matching the ViT-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "H/14 performance of", + "type": "text" + }, + { + "bbox": [ + 192, + 574, + 224, + 584 + ], + "score": 0.89, + "content": "8 8 . 5 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 573, + 352, + 586 + ], + "score": 1.0, + "content": ", which requires pre-training the", + "type": "text" + }, + { + "bbox": [ + 352, + 574, + 372, + 584 + ], + "score": 0.76, + "content": "2 . 3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 573, + 462, + 586 + ], + "score": 1.0, + "content": "larger ViT model on a", + "type": "text" + }, + { + "bbox": [ + 462, + 574, + 479, + 584 + ], + "score": 0.76, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 282, + 597 + ], + "score": 1.0, + "content": "proprietary weakly labeled dataset (JFT) for", + "type": "text" + }, + { + "bbox": [ + 282, + 585, + 301, + 595 + ], + "score": 0.82, + "content": "2 . 2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "more steps. This marks a dramatic improvement in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "score": 1.0, + "content": "both data efficiency and computation efficiency.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 540, + 507, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 648, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 232, + 665 + ], + "score": 1.0, + "content": "with JFT-300M set by NFNet-", + "type": "text" + }, + { + "bbox": [ + 232, + 651, + 249, + 661 + ], + "score": 0.64, + "content": "\\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 648, + 305, + 665 + ], + "score": 1.0, + "content": ", while being", + "type": "text" + }, + { + "bbox": [ + 305, + 651, + 317, + 661 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 648, + 506, + 665 + ], + "score": 1.0, + "content": "more efficient in terms of both TPU training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "time and parameter count. When we scale up the model to consume similar training resource as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 137, + 685 + ], + "score": 1.0, + "content": "NFNet-", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 155, + 683 + ], + "score": 0.82, + "content": ". \\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 672, + 240, + 685 + ], + "score": 1.0, + "content": ", CoAtNet-5 reaches", + "type": "text" + }, + { + "bbox": [ + 240, + 673, + 273, + 683 + ], + "score": 0.87, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "on top-1 accuracy, outperforming previous results under", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "score": 1.0, + "content": "comparable settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 629, + 506, + 698 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 337, + 723 + ], + "score": 1.0, + "content": "same JFT-3B dataset of an even larger size [26], with over", + "type": "text" + }, + { + "bbox": [ + 337, + 711, + 349, + 721 + ], + "score": 0.39, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "less computation, CoAtNet-6 is able to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 210, + 308 + ], + "score": 1.0, + "content": "match the performance of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 210, + 295, + 248, + 306 + ], + "score": 0.25, + "content": "\\mathrm { V i T - G } / 1 4", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 249, + 295, + 260, + 308 + ], + "score": 1.0, + "content": "of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 261, + 295, + 292, + 306 + ], + "score": 0.89, + "content": "9 0 . 4 5 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 292, + 295, + 332, + 308 + ], + "score": 1.0, + "content": ", and with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 333, + 295, + 351, + 306 + ], + "score": 0.74, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "less computation, CoAtNet-7 achieves", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 306, + 441, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 138, + 317 + ], + "score": 0.86, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 139, + 306, + 213, + 319 + ], + "score": 1.0, + "content": "on top-1 accuracy", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 213, + 306, + 245, + 317 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 245, + 306, + 441, + 319 + ], + "score": 1.0, + "content": ", achieving the new state-of-the-art performance.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 699, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 67, + 506, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "score": 1.0, + "content": "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pre-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "score": 1.0, + "content": "training time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "score": 1.0, + "content": "for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26].", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "type": "table", + "image_path": "4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 124, + 511, + 177.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 177.33333333333334, + 511, + 230.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 230.66666666666669, + 511, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 210, + 308 + ], + "score": 1.0, + "content": "match the performance of", + "type": "text" + }, + { + "bbox": [ + 210, + 295, + 248, + 306 + ], + "score": 0.25, + "content": "\\mathrm { V i T - G } / 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 295, + 260, + 308 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 261, + 295, + 292, + 306 + ], + "score": 0.89, + "content": "9 0 . 4 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 295, + 332, + 308 + ], + "score": 1.0, + "content": ", and with", + "type": "text" + }, + { + "bbox": [ + 333, + 295, + 351, + 306 + ], + "score": 0.74, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "less computation, CoAtNet-7 achieves", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 306, + 441, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 138, + 317 + ], + "score": 0.86, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 306, + 213, + 319 + ], + "score": 1.0, + "content": "on top-1 accuracy", + "type": "text" + }, + { + "bbox": [ + 213, + 306, + 245, + 317 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 306, + 441, + 319 + ], + "score": 1.0, + "content": ", achieving the new state-of-the-art performance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 201, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "score": 1.0, + "content": "4.3 Ablation Studies", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 356, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "score": 1.0, + "content": "In this section, we will ablate our design choices for CoAtNet.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Firstly, we study the importance of the relative attention from combining convolution and attention", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "into a single computation unit. Specifically, we compare two models, one with the relative attention", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "setting, the relative attention variant achieves a substantially better transfer accuracy, despite their", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "score": 1.0, + "content": "very close pre-training performances. This suggests the main advantage of relative attention in visual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "score": 1.0, + "content": "processing is not in higher capacity but in better generalization.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "table", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 228, + 462, + 383, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "spans": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "score": 1.0, + "content": "Table 6: Ablation on relative attention.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "spans": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "type": "table", + "image_path": "00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 118, + 473, + 490, + 498.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 118, + 498.0, + 490, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 118, + 523.0, + 490, + 548.0 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "table", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 561, + 386, + 572 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "spans": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "score": 1.0, + "content": "Table 7: Ablation on architecture layout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "spans": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "type": "table", + "image_path": "06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 139, + 573, + 469, + 600.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 139, + 600.6666666666666, + 469, + 628.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 139, + 628.3333333333333, + 469, + 655.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "score": 1.0, + "content": "we compare a few different layouts that we experimented with in Table 7.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 67, + 506, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "score": 1.0, + "content": "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pre-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "score": 1.0, + "content": "training time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "score": 1.0, + "content": "for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26].", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "type": "table", + "image_path": "4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 124, + 511, + 177.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 177.33333333333334, + 511, + 230.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 230.66666666666669, + 511, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 106, + 295, + 505, + 319 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 201, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "score": 1.0, + "content": "4.3 Ablation Studies", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 356, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "score": 1.0, + "content": "In this section, we will ablate our design choices for CoAtNet.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 350, + 357, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Firstly, we study the importance of the relative attention from combining convolution and attention", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "into a single computation unit. Specifically, we compare two models, one with the relative attention", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "setting, the relative attention variant achieves a substantially better transfer accuracy, despite their", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "score": 1.0, + "content": "very close pre-training performances. This suggests the main advantage of relative attention in visual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "score": 1.0, + "content": "processing is not in higher capacity but in better generalization.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 366, + 506, + 456 + ] + }, + { + "type": "table", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 228, + 462, + 383, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "spans": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "score": 1.0, + "content": "Table 6: Ablation on relative attention.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "spans": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "type": "table", + "image_path": "00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 118, + 473, + 490, + 498.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 118, + 498.0, + 490, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 118, + 523.0, + 490, + 548.0 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "table", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 561, + 386, + 572 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "spans": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "score": 1.0, + "content": "Table 7: Ablation on architecture layout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "spans": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "type": "table", + "image_path": "06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 139, + 573, + 469, + 600.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 139, + 600.6666666666666, + 469, + 628.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 139, + 628.3333333333333, + 469, + 655.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "score": 1.0, + "content": "we compare a few different layouts that we experimented with in Table 7.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 667, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 195, + 68, + 415, + 78 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "spans": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "score": 1.0, + "content": "Table 8: Ablation on head size and normalization type.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "spans": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "type": "table", + "image_path": "622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 79, + 470, + 107.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 107.66666666666667, + 470, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 136.33333333333334, + 470, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "score": 1.0, + "content": "S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "spans": [ + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "score": 1.0, + "content": "generalize well.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "capacity is often regarded more important, we further compare V0 and V1 under the ImageNet-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "V0. Again, this suggests the importance of convolution in achieving good transferability and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "spans": [ + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "score": 1.0, + "content": "generalization.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "Lastly, we study two choices of model details, namely the dimension of each attention (default to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 493, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 245, + 369 + ], + "score": 1.0, + "content": "performance, while BatchNorm is", + "type": "text" + }, + { + "bbox": [ + 245, + 356, + 283, + 367 + ], + "score": 0.88, + "content": "10 - 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 355, + 493, + 369 + ], + "score": 1.0, + "content": "faster on TPU depending on the per-core batch size.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 383, + 183, + 396 + ], + "lines": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "In this paper, we systematically study the properties of convolutions and Transformers, which leads", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "to a principled way to combine them into a new family of models named CoAtNet. Extensive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "capacity like Transformers, achieving state-of-the-art performances under different data sizes and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "score": 1.0, + "content": "computation budgets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "Note that this paper currently focuses on ImageNet classification for model development. However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "we believe our approach is applicable to broader applications like object detection and semantic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "score": 1.0, + "content": "segmentation. We will leave them for future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 195, + 68, + 415, + 78 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "spans": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "score": 1.0, + "content": "Table 8: Ablation on head size and normalization type.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "spans": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "type": "table", + "image_path": "622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 79, + 470, + 107.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 107.66666666666667, + 470, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 136.33333333333334, + 470, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "score": 1.0, + "content": "S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "spans": [ + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "score": 1.0, + "content": "generalize well.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 184, + 506, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "capacity is often regarded more important, we further compare V0 and V1 under the ImageNet-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "V0. Again, this suggests the importance of convolution in achieving good transferability and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "spans": [ + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "score": 1.0, + "content": "generalization.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 230, + 506, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "Lastly, we study two choices of model details, namely the dimension of each attention (default to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 493, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 245, + 369 + ], + "score": 1.0, + "content": "performance, while BatchNorm is", + "type": "text" + }, + { + "bbox": [ + 245, + 356, + 283, + 367 + ], + "score": 0.88, + "content": "10 - 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 355, + 493, + 369 + ], + "score": 1.0, + "content": "faster on TPU depending on the per-core batch size.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 302, + 506, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 383, + 183, + 396 + ], + "lines": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "In this paper, we systematically study the properties of convolutions and Transformers, which leads", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "to a principled way to combine them into a new family of models named CoAtNet. Extensive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "capacity like Transformers, achieving state-of-the-art performances under different data sizes and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "score": 1.0, + "content": "computation budgets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 407, + 506, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "Note that this paper currently focuses on ImageNet classification for model development. However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "we believe our approach is applicable to broader applications like object detection and semantic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "score": 1.0, + "content": "segmentation. We will leave them for future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 466, + 506, + 501 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 163, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 95, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "score": 1.0, + "content": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "score": 1.0, + "content": "convolutional neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "spans": [ + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "score": 1.0, + "content": "1097–1105, 2012.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "score": 1.0, + "content": "[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "score": 1.0, + "content": "image recognition. In ICLR, 2015.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "score": 1.0, + "content": "[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "spans": [ + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "score": 1.0, + "content": "recognition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "score": 1.0, + "content": "networks. ICML, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "score": 1.0, + "content": "[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "score": 1.0, + "content": "7794–7803, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "score": 1.0, + "content": "on Computer Vision, pages 3286–3295, 2019.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "spans": [ + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "score": 1.0, + "content": "[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "spans": [ + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "score": 1.0, + "content": "Applications of Computer Vision, pages 3531–3539, 2021.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "score": 1.0, + "content": "An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "spans": [ + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "score": 1.0, + "content": "arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "spans": [ + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "score": 1.0, + "content": "recognition, pages 248–255. Ieee, 2009.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "score": 1.0, + "content": "[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "effectiveness of data in deep learning era. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "spans": [ + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "score": 1.0, + "content": "on computer vision, pages 843–852, 2017.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "spans": [ + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "score": 1.0, + "content": "Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 26 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 163, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 106, + 95, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "score": 1.0, + "content": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "score": 1.0, + "content": "convolutional neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "spans": [ + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "score": 1.0, + "content": "1097–1105, 2012.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "score": 1.0, + "content": "[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "score": 1.0, + "content": "image recognition. In ICLR, 2015.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "score": 1.0, + "content": "[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "spans": [ + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "score": 1.0, + "content": "recognition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "score": 1.0, + "content": "networks. ICML, 2019.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "score": 1.0, + "content": "[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "score": 1.0, + "content": "7794–7803, 2018.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "score": 1.0, + "content": "on Computer Vision, pages 3286–3295, 2019.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "spans": [ + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "score": 1.0, + "content": "[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention:", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "spans": [ + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "score": 1.0, + "content": "Applications of Computer Vision, pages 3531–3539, 2021.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "score": 1.0, + "content": "An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "spans": [ + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "score": 1.0, + "content": "arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "spans": [ + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "score": 1.0, + "content": "recognition, pages 248–255. Ieee, 2009.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "score": 1.0, + "content": "[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "effectiveness of data in deep learning era. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "spans": [ + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "score": 1.0, + "content": "on computer vision, pages 843–852, 2017.", + "type": "text" + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "spans": [ + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text" + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "score": 1.0, + "content": "Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "score": 1.0, + "content": "[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance large-", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "score": 1.0, + "content": "scale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "spans": [ + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "score": 1.0, + "content": "preprint arXiv:2103.12731, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "score": 1.0, + "content": "[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "score": 1.0, + "content": "arXiv:2103.14030, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "score": 1.0, + "content": "[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou,", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "spans": [ + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "score": 1.0, + "content": "preprint arXiv:2104.01136, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "score": 1.0, + "content": "Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "score": 1.0, + "content": "[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transform-", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "score": 1.0, + "content": "ers. arXiv preprint arXiv:2106.04560, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "spans": [ + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 4510–4520, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "score": 1.0, + "content": "efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "score": 1.0, + "content": "[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position repre-", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "spans": [ + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1803.02155, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "score": 1.0, + "content": "[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "spans": [ + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "score": 1.0, + "content": "text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "are rnns: Fast autoregressive transformers with linear attention. In International Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "spans": [ + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "score": 1.0, + "content": "Machine Learning, pages 5156–5165. PMLR, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "score": 1.0, + "content": "[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane,", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "score": 1.0, + "content": "Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "score": 1.0, + "content": "attention with performers. arXiv preprint arXiv:2009.14794, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "score": 1.0, + "content": "Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909,", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "spans": [ + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings", + "type": "text", + "cross_page": true + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828,", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 44 + }, + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "spans": [ + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "score": 1.0, + "content": "arXiv:2012.12556, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan,", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "spans": [ + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "score": 1.0, + "content": "and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis", + "type": "text", + "cross_page": true + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text", + "cross_page": true + } + ], + "index": 49 + }, + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:1809.04281, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 50, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "spans": [ + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "score": 1.0, + "content": "arXiv:1901.02860, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "score": 1.0, + "content": "the lens of kernel. arXiv preprint arXiv:1908.11775, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "preprint arXiv:2102.08602, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "score": 1.0, + "content": "conference on computer vision and pattern recognition, pages 7132–7141, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "spans": [ + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "score": 1.0, + "content": "convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "spans": [ + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "spans": [ + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "score": 1.0, + "content": "empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "score": 1.0, + "content": "stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Re-", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. In Proceedings of the IEEE conference", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 2818–2826, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "score": 1.0, + "content": "[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:1711.05101, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "score": 1.0, + "content": "networks. In European conference on computer vision, pages 630–645. Springer, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "spans": [ + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "score": 1.0, + "content": "arXiv:1606.08415, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "score": 1.0, + "content": "sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236,", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + } + ], + "index": 26, + "bbox_fs": [ + 105, + 90, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 36, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "score": 1.0, + "content": "[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance large-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "score": 1.0, + "content": "scale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "spans": [ + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "score": 1.0, + "content": "preprint arXiv:2103.12731, 2021.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "score": 1.0, + "content": "[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "score": 1.0, + "content": "arXiv:2103.14030, 2021.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "score": 1.0, + "content": "[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "spans": [ + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "score": 1.0, + "content": "preprint arXiv:2104.01136, 2021.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "score": 1.0, + "content": "Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "score": 1.0, + "content": "[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transform-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "score": 1.0, + "content": "ers. arXiv preprint arXiv:2106.04560, 2021.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "spans": [ + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 4510–4520, 2018.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "score": 1.0, + "content": "efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "score": 1.0, + "content": "[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position repre-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "spans": [ + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1803.02155, 2018.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "score": 1.0, + "content": "[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "spans": [ + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "score": 1.0, + "content": "text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "are rnns: Fast autoregressive transformers with linear attention. In International Conference on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "spans": [ + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "score": 1.0, + "content": "Machine Learning, pages 5156–5165. PMLR, 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "score": 1.0, + "content": "[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "score": 1.0, + "content": "Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "score": 1.0, + "content": "attention with performers. arXiv preprint arXiv:2009.14794, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "score": 1.0, + "content": "Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "spans": [ + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "spans": [ + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "score": 1.0, + "content": "arXiv:2012.12556, 2020.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "spans": [ + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "score": 1.0, + "content": "and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:1809.04281, 2018.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 25 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 36, + 507, + 727 + ], + "lines": [], + "index": 25, + "bbox_fs": [ + 103, + 72, + 507, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 68, + 507, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "spans": [ + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "score": 1.0, + "content": "arXiv:1901.02860, 2019.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "score": 1.0, + "content": "the lens of kernel. arXiv preprint arXiv:1908.11775, 2019.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "preprint arXiv:2102.08602, 2021.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "score": 1.0, + "content": "conference on computer vision and pattern recognition, pages 7132–7141, 2018.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "spans": [ + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "score": 1.0, + "content": "convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "spans": [ + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "spans": [ + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "score": 1.0, + "content": "empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "score": 1.0, + "content": "stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Re-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. In Proceedings of the IEEE conference", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 2818–2826, 2016.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "score": 1.0, + "content": "[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:1711.05101, 2017.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "score": 1.0, + "content": "networks. In European conference on computer vision, pages 630–645. Springer, 2016.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "spans": [ + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "score": 1.0, + "content": "arXiv:1606.08415, 2016.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "score": 1.0, + "content": "sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 16.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 68, + 507, + 500 + ], + "lines": [], + "index": 16.5, + "bbox_fs": [ + 105, + 73, + 507, + 497 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_model.json b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3edf7db30115a1a834a0e42d78eb3820c55457d5 --- /dev/null +++ b/parse/train/JXAyJeYqUkZ/JXAyJeYqUkZ_model.json @@ -0,0 +1,13431 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 732, + 1303, + 732, + 1303, + 1214, + 398, + 1214 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1338, + 1404, + 1338, + 1404, + 1612, + 299, + 1612 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1626, + 1406, + 1626, + 1406, + 1931, + 298, + 1931 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 365, + 271, + 1337, + 271, + 1337, + 380, + 365, + 380 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 524, + 488, + 1177, + 488, + 1177, + 583, + 524, + 583 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 330, + 1955, + 1261, + 1955, + 1261, + 1984, + 330, + 1984 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 300, + 1269, + 530, + 1269, + 530, + 1307, + 300, + 1307 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1070, + 2033, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 788, + 660, + 912, + 660, + 912, + 697, + 788, + 697 + ], + "score": 0.892 + }, + { + "category_id": 13, + "poly": [ + 1038, + 1094, + 1128, + 1094, + 1128, + 1123, + 1038, + 1123 + ], + "score": 0.88, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 668, + 1064, + 744, + 1064, + 744, + 1093, + 668, + 1093 + ], + "score": 0.87, + "latex": "8 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1185, + 486, + 1185, + 486, + 1215, + 396, + 1215 + ], + "score": 0.85, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1155, + 442, + 1155, + 442, + 1183, + 396, + 1183 + ], + "score": 0.7, + "latex": "2 3 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 269.0, + 1340.0, + 269.0, + 1340.0, + 330.0, + 361.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 324.0, + 1035.0, + 324.0, + 1035.0, + 383.0, + 663.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1947.0, + 1267.0, + 1947.0, + 1267.0, + 1992.0, + 334.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 536.0, + 1266.0, + 536.0, + 1314.0, + 292.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 660.0, + 917.0, + 660.0, + 917.0, + 699.0, + 784.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 729.0, + 1304.0, + 729.0, + 1304.0, + 764.0, + 394.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 759.0, + 1306.0, + 759.0, + 1306.0, + 793.0, + 393.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 791.0, + 1306.0, + 791.0, + 1306.0, + 824.0, + 394.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 821.0, + 1305.0, + 821.0, + 1305.0, + 853.0, + 392.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 851.0, + 1307.0, + 851.0, + 1307.0, + 887.0, + 394.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 882.0, + 1307.0, + 882.0, + 1307.0, + 915.0, + 395.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 911.0, + 1305.0, + 911.0, + 1305.0, + 946.0, + 393.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 942.0, + 1304.0, + 942.0, + 1304.0, + 977.0, + 393.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 973.0, + 1306.0, + 973.0, + 1306.0, + 1008.0, + 392.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1002.0, + 1308.0, + 1002.0, + 1308.0, + 1038.0, + 394.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1035.0, + 1306.0, + 1035.0, + 1306.0, + 1068.0, + 394.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1063.0, + 667.0, + 1063.0, + 667.0, + 1098.0, + 393.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1063.0, + 1305.0, + 1063.0, + 1305.0, + 1098.0, + 745.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1093.0, + 1037.0, + 1093.0, + 1037.0, + 1129.0, + 393.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1093.0, + 1308.0, + 1093.0, + 1308.0, + 1129.0, + 1129.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1122.0, + 1305.0, + 1122.0, + 1305.0, + 1160.0, + 393.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1155.0, + 1306.0, + 1155.0, + 1306.0, + 1188.0, + 443.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1184.0, + 1273.0, + 1184.0, + 1273.0, + 1219.0, + 487.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1340.0, + 1404.0, + 1340.0, + 1404.0, + 1372.0, + 297.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 1406.0, + 1369.0, + 1406.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1431.0, + 1404.0, + 1431.0, + 1404.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1408.0, + 1459.0, + 1408.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1527.0, + 294.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1555.0, + 293.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1549.0, + 1406.0, + 1549.0, + 1406.0, + 1587.0, + 293.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1583.0, + 663.0, + 1583.0, + 663.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 1406.0, + 1624.0, + 1406.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1652.0, + 1408.0, + 1652.0, + 1408.0, + 1696.0, + 292.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1723.0, + 295.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1404.0, + 1718.0, + 1404.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 1406.0, + 1748.0, + 1406.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1777.0, + 1406.0, + 1777.0, + 1406.0, + 1814.0, + 292.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1844.0, + 295.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1838.0, + 1407.0, + 1838.0, + 1407.0, + 1876.0, + 292.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1870.0, + 1408.0, + 1870.0, + 1408.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1899.0, + 1404.0, + 1899.0, + 1404.0, + 1935.0, + 293.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 489.0, + 1162.0, + 489.0, + 1162.0, + 525.0, + 536.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 521.0, + 1020.0, + 521.0, + 1020.0, + 553.0, + 680.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 553.0, + 1181.0, + 553.0, + 1181.0, + 587.0, + 521.0, + 587.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 339, + 1404, + 339, + 1404, + 703, + 298, + 703 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 717, + 1405, + 717, + 1405, + 1054, + 297, + 1054 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1531, + 1404, + 1531, + 1404, + 1686, + 297, + 1686 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1699, + 1403, + 1699, + 1403, + 1821, + 297, + 1821 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 325, + 298, + 325 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1944, + 1400, + 1944, + 1400, + 2009, + 298, + 2009 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 568, + 1834, + 1127, + 1834, + 1127, + 1911, + 568, + 1911 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1470, + 841, + 1470, + 841, + 1504, + 300, + 1504 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 295, + 1190, + 1402, + 1190, + 1402, + 1253, + 295, + 1253 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 298, + 1112, + 442, + 1112, + 442, + 1149, + 298, + 1149 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1845, + 1399, + 1845, + 1399, + 1874, + 1366, + 1874 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 291, + 1385, + 1390, + 1385, + 1390, + 1420, + 291, + 1420 + ], + "score": 0.764 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 342, + 1266, + 1404, + 1266, + 1404, + 1372, + 342, + 1372 + ], + "score": 0.728 + }, + { + "category_id": 13, + "poly": [ + 375, + 1943, + 520, + 1943, + 520, + 1977, + 375, + 1977 + ], + "score": 0.92, + "latex": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1945, + 1218, + 1945, + 1218, + 1979, + 1165, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { L } ( i )" + }, + { + "category_id": 14, + "poly": [ + 568, + 1832, + 1127, + 1832, + 1127, + 1913, + 568, + 1913 + ], + "score": 0.91, + "latex": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ," + }, + { + "category_id": 13, + "poly": [ + 449, + 961, + 503, + 961, + 503, + 990, + 449, + 990 + ], + "score": 0.88, + "latex": "2 3 \\times" + }, + { + "category_id": 13, + "poly": [ + 297, + 931, + 388, + 931, + 388, + 960, + 297, + 960 + ], + "score": 0.87, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1239, + 992, + 1331, + 992, + 1331, + 1021, + 1239, + 1021 + ], + "score": 0.87, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1327, + 839, + 1403, + 839, + 1403, + 870, + 1327, + 870 + ], + "score": 0.86, + "latex": "8 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 812, + 1979, + 824, + 1979, + 824, + 2003, + 812, + 2003 + ], + "score": 0.81, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 488, + 1979, + 500, + 1979, + 500, + 2003, + 488, + 2003 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 945, + 1949, + 958, + 1949, + 958, + 1973, + 945, + 1973 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 365, + 1022, + 417, + 1022, + 417, + 1051, + 365, + 1051 + ], + "score": 0.67, + "latex": "1 . 5 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 619, + 1626, + 652, + 1626, + 652, + 1653, + 619, + 1653 + ], + "score": 0.56, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1626, + 964, + 1626, + 964, + 1653, + 932, + 1653 + ], + "score": 0.46, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1469.0, + 844.0, + 1469.0, + 844.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1107.0, + 447.0, + 1107.0, + 447.0, + 1156.0, + 291.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 371.0, + 1404.0, + 371.0, + 1404.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1405.0, + 399.0, + 1405.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 432.0, + 1405.0, + 432.0, + 1405.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1405.0, + 461.0, + 1405.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1406.0, + 492.0, + 1406.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1404.0, + 521.0, + 1404.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1404.0, + 552.0, + 1404.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 1406.0, + 584.0, + 1406.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 647.0, + 293.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 639.0, + 1405.0, + 639.0, + 1405.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 886.0, + 673.0, + 886.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 754.0, + 295.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 1407.0, + 809.0, + 1407.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 1326.0, + 838.0, + 1326.0, + 873.0, + 295.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 908.0, + 292.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 898.0, + 1406.0, + 898.0, + 1406.0, + 938.0, + 292.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 931.0, + 1403.0, + 931.0, + 1403.0, + 966.0, + 389.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 448.0, + 959.0, + 448.0, + 997.0, + 292.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 997.0, + 504.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1238.0, + 991.0, + 1238.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 991.0, + 1403.0, + 991.0, + 1403.0, + 1026.0, + 1332.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 364.0, + 1022.0, + 364.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1022.0, + 1025.0, + 1022.0, + 1025.0, + 1057.0, + 418.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1566.0, + 296.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1563.0, + 1404.0, + 1563.0, + 1404.0, + 1597.0, + 297.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1623.0, + 618.0, + 1623.0, + 618.0, + 1660.0, + 295.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1623.0, + 931.0, + 1623.0, + 931.0, + 1660.0, + 653.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1660.0, + 965.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1654.0, + 775.0, + 1654.0, + 775.0, + 1688.0, + 295.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1733.0, + 295.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 1405.0, + 1731.0, + 1405.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1796.0, + 292.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1789.0, + 358.0, + 1789.0, + 358.0, + 1825.0, + 291.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 202.0, + 1406.0, + 202.0, + 1406.0, + 237.0, + 293.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 233.0, + 1406.0, + 233.0, + 1406.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 295.0, + 589.0, + 295.0, + 589.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 374.0, + 1942.0, + 374.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1942.0, + 944.0, + 1942.0, + 944.0, + 1982.0, + 521.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1942.0, + 1164.0, + 1942.0, + 1164.0, + 1982.0, + 959.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1982.0, + 1219.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 487.0, + 1971.0, + 487.0, + 2014.0, + 293.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1971.0, + 811.0, + 1971.0, + 811.0, + 2014.0, + 501.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1971.0, + 1063.0, + 1971.0, + 1063.0, + 2014.0, + 825.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1224.0, + 297.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1079.0, + 1220.0, + 1079.0, + 1257.0, + 295.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1381.0, + 1389.0, + 1381.0, + 1389.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1266.0, + 1400.0, + 1266.0, + 1400.0, + 1302.0, + 361.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1307.0, + 1404.0, + 1307.0, + 1404.0, + 1345.0, + 359.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1341.0, + 508.0, + 1341.0, + 508.0, + 1372.0, + 392.0, + 1372.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 303, + 1348, + 1399, + 1348, + 1399, + 1471, + 303, + 1471 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 487, + 1157, + 1197, + 1157, + 1197, + 1312, + 487, + 1312 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1604, + 1405, + 1604, + 1405, + 1918, + 296, + 1918 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 432, + 1405, + 432, + 1405, + 525, + 298, + 525 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 566, + 286, + 1130, + 286, + 1130, + 412, + 566, + 412 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 291, + 201, + 1402, + 201, + 1402, + 266, + 291, + 266 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 310, + 1490, + 1343, + 1490, + 1343, + 1585, + 310, + 1585 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 297, + 1949, + 1402, + 1949, + 1402, + 2008, + 297, + 2008 + ], + "score": 0.937 + }, + { + "category_id": 6, + "poly": [ + 470, + 1124, + 1224, + 1124, + 1224, + 1154, + 470, + 1154 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 295, + 536, + 1406, + 536, + 1406, + 1072, + 295, + 1072 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1366, + 314, + 1400, + 314, + 1400, + 344, + 1366, + 344 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1521, + 1400, + 1521, + 1400, + 1552, + 1368, + 1552 + ], + "score": 0.797 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.689 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.352 + }, + { + "category_id": 14, + "poly": [ + 567, + 284, + 1130, + 284, + 1130, + 414, + 567, + 414 + ], + "score": 0.94, + "latex": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ," + }, + { + "category_id": 14, + "poly": [ + 309, + 1489, + 1362, + 1489, + 1362, + 1588, + 309, + 1588 + ], + "score": 0.92, + "latex": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } ." + }, + { + "category_id": 13, + "poly": [ + 1201, + 1668, + 1266, + 1668, + 1266, + 1705, + 1201, + 1705 + ], + "score": 0.92, + "latex": "x _ { i } ^ { \\top } x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1795, + 1005, + 1795, + 1005, + 1828, + 947, + 1828 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 1144, + 233, + 1230, + 233, + 1230, + 268, + 1144, + 268 + ], + "score": 0.92, + "latex": "( x _ { i } , x _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 609, + 570, + 659, + 570, + 659, + 603, + 609, + 603 + ], + "score": 0.91, + "latex": "A _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 805, + 698, + 862, + 698, + 862, + 731, + 805, + 731 + ], + "score": 0.91, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1638, + 1373, + 1638, + 1373, + 1671, + 1324, + 1671 + ], + "score": 0.91, + "latex": "A _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 660, + 1761, + 800, + 1761, + 800, + 1793, + 660, + 1793 + ], + "score": 0.91, + "latex": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }" + }, + { + "category_id": 13, + "poly": [ + 843, + 731, + 903, + 731, + 903, + 760, + 843, + 760 + ], + "score": 0.9, + "latex": "i - j" + }, + { + "category_id": 13, + "poly": [ + 805, + 1799, + 865, + 1799, + 865, + 1829, + 805, + 1829 + ], + "score": 0.89, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1607, + 1261, + 1607, + 1261, + 1638, + 1217, + 1638 + ], + "score": 0.89, + "latex": "y ^ { \\mathrm { p r e } }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1768, + 481, + 1768, + 481, + 1798, + 422, + 1798 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 703, + 1347, + 703, + 1347, + 732, + 1288, + 732 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 808, + 542, + 867, + 542, + 867, + 572, + 808, + 572 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1675, + 618, + 1675, + 618, + 1705, + 558, + 1705 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 371, + 434, + 393, + 434, + 393, + 463, + 371, + 463 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1799, + 608, + 1799, + 608, + 1822, + 585, + 1822 + ], + "score": 0.8, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 1321, + 732, + 1336, + 732, + 1336, + 760, + 1321, + 760 + ], + "score": 0.78, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1274, + 732, + 1288, + 732, + 1288, + 756, + 1274, + 756 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1986.0, + 327.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 1018.0, + 1976.0, + 1018.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1122.0, + 1227.0, + 1122.0, + 1227.0, + 1157.0, + 471.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1407.0, + 1346.0, + 1407.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1407.0, + 1377.0, + 1407.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1441.0, + 297.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1439.0, + 1220.0, + 1439.0, + 1220.0, + 1473.0, + 297.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1602.0, + 1216.0, + 1602.0, + 1216.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1602.0, + 1406.0, + 1602.0, + 1406.0, + 1641.0, + 1262.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1633.0, + 1323.0, + 1633.0, + 1323.0, + 1676.0, + 291.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1676.0, + 1374.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 557.0, + 1668.0, + 557.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1668.0, + 1200.0, + 1668.0, + 1200.0, + 1707.0, + 619.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1707.0, + 1267.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 1406.0, + 1731.0, + 1406.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1758.0, + 421.0, + 1758.0, + 421.0, + 1802.0, + 290.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1758.0, + 659.0, + 1758.0, + 659.0, + 1802.0, + 482.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1758.0, + 1410.0, + 1758.0, + 1410.0, + 1802.0, + 801.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 584.0, + 1789.0, + 584.0, + 1833.0, + 294.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1789.0, + 804.0, + 1789.0, + 804.0, + 1833.0, + 609.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1789.0, + 946.0, + 1789.0, + 946.0, + 1833.0, + 866.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1833.0, + 1006.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1826.0, + 1407.0, + 1826.0, + 1407.0, + 1858.0, + 296.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1885.0, + 1122.0, + 1885.0, + 1122.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 429.0, + 370.0, + 429.0, + 370.0, + 468.0, + 293.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 468.0, + 394.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 463.0, + 1405.0, + 463.0, + 1405.0, + 497.0, + 295.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 494.0, + 722.0, + 494.0, + 722.0, + 528.0, + 296.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 200.0, + 1404.0, + 200.0, + 1404.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 230.0, + 1143.0, + 230.0, + 1143.0, + 271.0, + 291.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 230.0, + 1256.0, + 230.0, + 1256.0, + 271.0, + 1231.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 534.0, + 807.0, + 534.0, + 807.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 534.0, + 1409.0, + 534.0, + 1409.0, + 575.0, + 868.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 569.0, + 608.0, + 569.0, + 608.0, + 604.0, + 317.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 604.0, + 660.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 634.0, + 317.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 629.0, + 1411.0, + 629.0, + 1411.0, + 666.0, + 316.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 660.0, + 1260.0, + 660.0, + 1260.0, + 695.0, + 317.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 804.0, + 695.0, + 804.0, + 736.0, + 295.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 695.0, + 1287.0, + 695.0, + 1287.0, + 736.0, + 863.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 695.0, + 1406.0, + 695.0, + 1406.0, + 736.0, + 1348.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 728.0, + 842.0, + 728.0, + 842.0, + 763.0, + 316.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 728.0, + 1273.0, + 728.0, + 1273.0, + 763.0, + 904.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 728.0, + 1320.0, + 728.0, + 1320.0, + 763.0, + 1289.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 728.0, + 1406.0, + 728.0, + 1406.0, + 763.0, + 1337.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 759.0, + 1404.0, + 759.0, + 1404.0, + 794.0, + 318.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 790.0, + 1403.0, + 790.0, + 1403.0, + 821.0, + 318.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 854.0, + 316.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 847.0, + 940.0, + 847.0, + 940.0, + 886.0, + 316.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 887.0, + 1406.0, + 887.0, + 1406.0, + 922.0, + 297.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 918.0, + 1407.0, + 918.0, + 1407.0, + 953.0, + 316.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 946.0, + 1406.0, + 946.0, + 1406.0, + 987.0, + 316.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1014.0, + 317.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1008.0, + 1409.0, + 1008.0, + 1409.0, + 1044.0, + 316.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1041.0, + 1143.0, + 1041.0, + 1143.0, + 1072.0, + 319.0, + 1072.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 338, + 1405, + 338, + 1405, + 462, + 297, + 462 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 695, + 1405, + 695, + 1405, + 878, + 297, + 878 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1747, + 1404, + 1747, + 1404, + 1871, + 298, + 1871 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 1429, + 1404, + 1429, + 1404, + 1734, + 297, + 1734 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 300, + 475, + 1405, + 475, + 1405, + 682, + 300, + 682 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 297, + 263, + 1402, + 263, + 1402, + 324, + 297, + 324 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 891, + 1401, + 891, + 1401, + 985, + 299, + 985 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 290, + 1883, + 1405, + 1883, + 1405, + 1946, + 290, + 1946 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 520, + 1972, + 1197, + 1972, + 1197, + 2009, + 520, + 2009 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 299, + 203, + 634, + 203, + 634, + 236, + 299, + 236 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 294, + 998, + 1405, + 998, + 1405, + 1416, + 294, + 1416 + ], + "score": 0.744 + }, + { + "category_id": 13, + "poly": [ + 470, + 1029, + 554, + 1029, + 554, + 1060, + 470, + 1060 + ], + "score": 0.87, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 1059, + 549, + 1081, + 549, + 1081, + 577, + 1059, + 577 + ], + "score": 0.82, + "latex": "\\mathcal { G }" + }, + { + "category_id": 14, + "poly": [ + 521, + 1973, + 1197, + 1973, + 1197, + 2009, + 521, + 2009 + ], + "score": 0.79, + "latex": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1779, + 756, + 1779, + 756, + 1809, + 655, + 1809 + ], + "score": 0.76, + "latex": "\\left( > 3 0 0 \\mathbf { M } \\right)" + }, + { + "category_id": 13, + "poly": [ + 829, + 1000, + 851, + 1000, + 851, + 1026, + 829, + 1026 + ], + "score": 0.72, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1378, + 548, + 1401, + 548, + 1401, + 575, + 1378, + 575 + ], + "score": 0.62, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 897, + 1132, + 931, + 1132, + 931, + 1160, + 897, + 1160 + ], + "score": 0.57, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 198.0, + 637.0, + 198.0, + 637.0, + 243.0, + 293.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 337.0, + 1410.0, + 337.0, + 1410.0, + 376.0, + 291.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 1405.0, + 368.0, + 1405.0, + 404.0, + 292.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 402.0, + 1405.0, + 402.0, + 1405.0, + 435.0, + 295.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 1157.0, + 430.0, + 1157.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1405.0, + 693.0, + 1405.0, + 731.0, + 294.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1406.0, + 726.0, + 1406.0, + 761.0, + 294.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 756.0, + 1405.0, + 756.0, + 1405.0, + 790.0, + 292.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 822.0, + 295.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 848.0, + 1303.0, + 848.0, + 1303.0, + 880.0, + 296.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 1404.0, + 1748.0, + 1404.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1776.0, + 654.0, + 1776.0, + 654.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1814.0, + 757.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1809.0, + 1405.0, + 1809.0, + 1405.0, + 1844.0, + 293.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1841.0, + 575.0, + 1841.0, + 575.0, + 1873.0, + 296.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1492.0, + 1402.0, + 1492.0, + 1402.0, + 1523.0, + 295.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1518.0, + 1406.0, + 1518.0, + 1406.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1590.0, + 291.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1617.0, + 294.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1647.0, + 292.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1641.0, + 1405.0, + 1641.0, + 1405.0, + 1675.0, + 292.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1708.0, + 291.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1704.0, + 725.0, + 1704.0, + 725.0, + 1736.0, + 296.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 475.0, + 1404.0, + 475.0, + 1404.0, + 509.0, + 299.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 505.0, + 884.0, + 505.0, + 884.0, + 539.0, + 352.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 545.0, + 1058.0, + 545.0, + 1058.0, + 582.0, + 299.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 545.0, + 1377.0, + 545.0, + 1377.0, + 582.0, + 1082.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 545.0, + 1406.0, + 545.0, + 1406.0, + 582.0, + 1402.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 579.0, + 714.0, + 579.0, + 714.0, + 611.0, + 348.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 618.0, + 1406.0, + 618.0, + 1406.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 647.0, + 928.0, + 647.0, + 928.0, + 685.0, + 350.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 596.0, + 294.0, + 596.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 1405.0, + 891.0, + 1405.0, + 928.0, + 294.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1405.0, + 923.0, + 1405.0, + 957.0, + 295.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 950.0, + 1405.0, + 950.0, + 1405.0, + 988.0, + 294.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1879.0, + 1408.0, + 1879.0, + 1408.0, + 1922.0, + 291.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1913.0, + 894.0, + 1913.0, + 894.0, + 1950.0, + 316.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 995.0, + 828.0, + 995.0, + 828.0, + 1033.0, + 292.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 995.0, + 1403.0, + 995.0, + 1403.0, + 1033.0, + 852.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1025.0, + 469.0, + 1025.0, + 469.0, + 1065.0, + 315.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1025.0, + 567.0, + 1025.0, + 567.0, + 1065.0, + 555.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1069.0, + 1407.0, + 1069.0, + 1407.0, + 1105.0, + 294.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1096.0, + 1406.0, + 1096.0, + 1406.0, + 1139.0, + 313.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1129.0, + 896.0, + 1129.0, + 896.0, + 1165.0, + 316.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1165.0, + 932.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1161.0, + 1031.0, + 1161.0, + 1031.0, + 1196.0, + 318.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1237.0, + 317.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1233.0, + 1406.0, + 1233.0, + 1406.0, + 1268.0, + 317.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1295.0, + 320.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1295.0, + 1406.0, + 1295.0, + 1406.0, + 1327.0, + 318.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1323.0, + 1405.0, + 1323.0, + 1405.0, + 1358.0, + 317.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1388.0, + 316.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1383.0, + 1170.0, + 1383.0, + 1170.0, + 1420.0, + 317.0, + 1420.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 512, + 1348, + 1178, + 1348, + 1178, + 1505, + 512, + 1505 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1708, + 1406, + 1708, + 1406, + 1955, + 297, + 1955 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 318, + 914, + 1404, + 914, + 1404, + 1160, + 318, + 1160 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1172, + 1404, + 1172, + 1404, + 1296, + 300, + 1296 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 303, + 202, + 1396, + 202, + 1396, + 518, + 303, + 518 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 317, + 657, + 1404, + 657, + 1404, + 782, + 317, + 782 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 1535, + 1404, + 1535, + 1404, + 1599, + 297, + 1599 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 300, + 786, + 1401, + 786, + 1401, + 848, + 300, + 848 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 522, + 862, + 1196, + 862, + 1196, + 899, + 522, + 899 + ], + "score": 0.934 + }, + { + "category_id": 4, + "poly": [ + 294, + 535, + 1403, + 535, + 1403, + 598, + 294, + 598 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 298, + 1639, + 549, + 1639, + 549, + 1678, + 298, + 1678 + ], + "score": 0.924 + }, + { + "category_id": 6, + "poly": [ + 652, + 1317, + 1045, + 1317, + 1045, + 1346, + 652, + 1346 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 327, + 1977, + 1286, + 1977, + 1286, + 2008, + 327, + 2008 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.735 + }, + { + "category_id": 13, + "poly": [ + 1200, + 946, + 1283, + 946, + 1283, + 977, + 1200, + 977 + ], + "score": 0.89, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 465, + 659, + 551, + 659, + 551, + 690, + 465, + 690 + ], + "score": 0.89, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1007, + 1400, + 1007, + 1400, + 1038, + 1316, + 1038 + ], + "score": 0.88, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 14, + "poly": [ + 523, + 863, + 1196, + 863, + 1196, + 898, + 523, + 898 + ], + "score": 0.82, + "latex": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1067, + 1132, + 1067, + 1132, + 1095, + 1077, + 1095 + ], + "score": 0.37, + "latex": "\\approx \\mathbf { C }" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 201.0, + 1179.0, + 201.0, + 1179.0, + 226.0, + 1101.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 231.0, + 340.0, + 231.0, + 340.0, + 253.0, + 305.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 224.0, + 836.0, + 224.0, + 836.0, + 274.0, + 796.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 244.0, + 892.0, + 244.0, + 892.0, + 268.0, + 854.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 224.0, + 1385.0, + 224.0, + 1385.0, + 274.0, + 1347.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 270.0, + 339.0, + 270.0, + 339.0, + 292.0, + 304.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 265.0, + 836.0, + 265.0, + 836.0, + 287.0, + 797.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 265.0, + 1386.0, + 265.0, + 1386.0, + 287.0, + 1348.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 279.0, + 837.0, + 279.0, + 837.0, + 302.0, + 797.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 279.0, + 1386.0, + 279.0, + 1386.0, + 302.0, + 1348.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 291.0, + 892.0, + 291.0, + 892.0, + 313.0, + 854.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 309.0, + 341.0, + 309.0, + 341.0, + 333.0, + 305.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 331.0, + 646.0, + 331.0, + 646.0, + 352.0, + 531.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 330.0, + 1201.0, + 330.0, + 1201.0, + 351.0, + 1074.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 372.0, + 340.0, + 372.0, + 340.0, + 395.0, + 305.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 364.0, + 891.0, + 364.0, + 891.0, + 386.0, + 856.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 392.0, + 892.0, + 392.0, + 892.0, + 416.0, + 854.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 412.0, + 340.0, + 412.0, + 340.0, + 435.0, + 305.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 422.0, + 893.0, + 422.0, + 893.0, + 446.0, + 854.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 444.0, + 822.0, + 444.0, + 822.0, + 469.0, + 323.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 446.0, + 932.0, + 446.0, + 932.0, + 469.0, + 899.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 448.0, + 980.0, + 448.0, + 980.0, + 468.0, + 950.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 446.0, + 1030.0, + 446.0, + 1030.0, + 469.0, + 997.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 448.0, + 1081.0, + 448.0, + 1081.0, + 467.0, + 1045.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 446.0, + 1132.0, + 446.0, + 1132.0, + 468.0, + 1093.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 448.0, + 1180.0, + 448.0, + 1180.0, + 467.0, + 1143.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 448.0, + 1230.0, + 448.0, + 1230.0, + 467.0, + 1191.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 448.0, + 1278.0, + 448.0, + 1278.0, + 467.0, + 1241.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 448.0, + 1328.0, + 448.0, + 1328.0, + 467.0, + 1289.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 448.0, + 1375.0, + 448.0, + 1375.0, + 467.0, + 1339.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 485.0, + 666.0, + 485.0, + 666.0, + 520.0, + 481.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 484.0, + 1170.0, + 484.0, + 1170.0, + 522.0, + 1079.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 203.5, + 626.0, + 203.5, + 626.0, + 225.5, + 552.0, + 225.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 233.0, + 955.0, + 233.0, + 955.0, + 259.5, + 915.0, + 259.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 535.0, + 1406.0, + 535.0, + 1406.0, + 570.0, + 296.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 1142.0, + 565.0, + 1142.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1637.0, + 552.0, + 1637.0, + 552.0, + 1682.0, + 291.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1311.0, + 1051.0, + 1311.0, + 1051.0, + 1353.0, + 647.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 1287.0, + 1973.0, + 1287.0, + 2012.0, + 332.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1707.0, + 1407.0, + 1707.0, + 1407.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1775.0, + 295.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1801.0, + 1407.0, + 1801.0, + 1407.0, + 1835.0, + 295.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1865.0, + 295.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1858.0, + 1407.0, + 1858.0, + 1407.0, + 1897.0, + 292.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1406.0, + 1892.0, + 1406.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1923.0, + 1010.0, + 1923.0, + 1010.0, + 1957.0, + 292.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 914.0, + 1405.0, + 914.0, + 1405.0, + 952.0, + 319.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 948.0, + 1199.0, + 948.0, + 1199.0, + 978.0, + 320.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 948.0, + 1403.0, + 948.0, + 1403.0, + 978.0, + 1284.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1009.0, + 319.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 998.0, + 1315.0, + 998.0, + 1315.0, + 1047.0, + 315.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 998.0, + 1407.0, + 998.0, + 1407.0, + 1047.0, + 1401.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1036.0, + 1406.0, + 1036.0, + 1406.0, + 1071.0, + 315.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1063.0, + 1076.0, + 1063.0, + 1076.0, + 1102.0, + 316.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1063.0, + 1407.0, + 1063.0, + 1407.0, + 1102.0, + 1133.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1097.0, + 1406.0, + 1097.0, + 1406.0, + 1133.0, + 316.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1127.0, + 1400.0, + 1127.0, + 1400.0, + 1163.0, + 317.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1170.0, + 1405.0, + 1170.0, + 1405.0, + 1208.0, + 293.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 1406.0, + 1202.0, + 1406.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1054.0, + 1264.0, + 1054.0, + 1300.0, + 295.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 656.0, + 464.0, + 656.0, + 464.0, + 695.0, + 317.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 656.0, + 1405.0, + 656.0, + 1405.0, + 695.0, + 552.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 687.0, + 1406.0, + 687.0, + 1406.0, + 725.0, + 315.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 752.0, + 318.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 750.0, + 861.0, + 750.0, + 861.0, + 785.0, + 317.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1536.0, + 1402.0, + 1536.0, + 1402.0, + 1568.0, + 296.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1566.0, + 1337.0, + 1566.0, + 1337.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1406.0, + 780.0, + 1406.0, + 821.0, + 295.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 811.0, + 828.0, + 811.0, + 828.0, + 854.0, + 315.0, + 854.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 508, + 1405, + 508, + 1405, + 812, + 297, + 812 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1405, + 202, + 1405, + 477, + 298, + 477 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1133, + 1405, + 1133, + 1405, + 1407, + 298, + 1407 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 844, + 1404, + 844, + 1404, + 1119, + 298, + 1119 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 1820, + 298, + 1820 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1853, + 1402, + 1853, + 1402, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1516, + 1401, + 1516, + 1401, + 1578, + 299, + 1578 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 299, + 1613, + 594, + 1613, + 594, + 1646, + 299, + 1646 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 298, + 1448, + 533, + 1448, + 533, + 1486, + 298, + 1486 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 819, + 691, + 915, + 691, + 915, + 724, + 819, + 724 + ], + "score": 0.93, + "latex": "f ( i - j )" + }, + { + "category_id": 13, + "poly": [ + 1004, + 599, + 1104, + 599, + 1104, + 633, + 1004, + 633 + ], + "score": 0.93, + "latex": "f ( i - j )" + }, + { + "category_id": 13, + "poly": [ + 370, + 599, + 546, + 599, + 546, + 634, + 370, + 634 + ], + "score": 0.93, + "latex": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )" + }, + { + "category_id": 13, + "poly": [ + 996, + 691, + 1054, + 691, + 1054, + 724, + 996, + 724 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1607.0, + 599.0, + 1607.0, + 599.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1443.0, + 537.0, + 1443.0, + 537.0, + 1494.0, + 289.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 543.0, + 295.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 535.0, + 1408.0, + 535.0, + 1408.0, + 577.0, + 291.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 1405.0, + 569.0, + 1405.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 599.0, + 369.0, + 599.0, + 369.0, + 633.0, + 292.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 599.0, + 1003.0, + 599.0, + 1003.0, + 633.0, + 547.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 633.0, + 1105.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 665.0, + 294.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 818.0, + 690.0, + 818.0, + 726.0, + 294.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 690.0, + 995.0, + 690.0, + 995.0, + 726.0, + 916.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 726.0, + 1055.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 785.0, + 296.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 783.0, + 1069.0, + 783.0, + 1069.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 204.0, + 1403.0, + 204.0, + 1403.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 1407.0, + 231.0, + 1407.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 295.0, + 1405.0, + 295.0, + 1405.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 324.0, + 1406.0, + 324.0, + 1406.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 355.0, + 1407.0, + 355.0, + 1407.0, + 388.0, + 296.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 420.0, + 293.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 416.0, + 1406.0, + 416.0, + 1406.0, + 449.0, + 296.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 446.0, + 757.0, + 446.0, + 757.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1135.0, + 1406.0, + 1135.0, + 1406.0, + 1167.0, + 296.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1230.0, + 295.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1263.0, + 292.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1406.0, + 1279.0, + 1406.0, + 1323.0, + 293.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1341.0, + 1410.0, + 1341.0, + 1410.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1375.0, + 1006.0, + 1375.0, + 1006.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 846.0, + 1405.0, + 846.0, + 1405.0, + 879.0, + 297.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 909.0, + 294.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 941.0, + 293.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1001.0, + 293.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 997.0, + 1404.0, + 997.0, + 1404.0, + 1030.0, + 296.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1061.0, + 293.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1090.0, + 1086.0, + 1090.0, + 1122.0, + 294.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1668.0, + 1408.0, + 1668.0, + 1408.0, + 1705.0, + 296.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1734.0, + 296.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1731.0, + 1408.0, + 1731.0, + 1408.0, + 1764.0, + 296.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1405.0, + 1761.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 424.0, + 1790.0, + 424.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1921.0, + 294.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1954.0, + 292.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1406.0, + 1945.0, + 1406.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1406.0, + 1975.0, + 1406.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1515.0, + 1405.0, + 1515.0, + 1405.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1547.0, + 1197.0, + 1547.0, + 1197.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 931, + 1406, + 931, + 1406, + 1207, + 297, + 1207 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 297, + 339, + 1406, + 339, + 1406, + 540, + 297, + 540 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
" + }, + { + "category_id": 1, + "poly": [ + 298, + 765, + 1405, + 765, + 1405, + 918, + 298, + 918 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 577, + 1406, + 577, + 1406, + 731, + 297, + 731 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1854, + 1404, + 1854, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 873, + 1326, + 1384, + 1326, + 1384, + 1728, + 873, + 1728 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 307, + 1323, + 816, + 1323, + 816, + 1729, + 307, + 1729 + ], + "score": 0.97 + }, + { + "category_id": 6, + "poly": [ + 294, + 215, + 1406, + 215, + 1406, + 337, + 294, + 337 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 860, + 1756, + 1398, + 1756, + 1398, + 1817, + 860, + 1817 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 295, + 1756, + 832, + 1756, + 832, + 1817, + 295, + 1817 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 298, + 1245, + 520, + 1245, + 520, + 1276, + 298, + 1276 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.732 + }, + { + "category_id": 13, + "poly": [ + 1023, + 1787, + 1111, + 1787, + 1111, + 1815, + 1023, + 1815 + ], + "score": 0.65, + "latex": "2 1 \\mathrm { K } \\Rightarrow" + }, + { + "category_id": 13, + "poly": [ + 662, + 1786, + 763, + 1786, + 763, + 1815, + 662, + 1815 + ], + "score": 0.64, + "latex": "2 2 4 \\mathbf { x } 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 760, + 1946, + 863, + 1946, + 863, + 1975, + 760, + 1975 + ], + "score": 0.51, + "latex": "2 2 4 \\mathbf { x } 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 477, + 504, + 519, + 504, + 519, + 531, + 477, + 531 + ], + "score": 0.37, + "latex": "^ 1 / 3 2" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1788, + 1110, + 1788, + 1110, + 1814, + 1075, + 1814 + ], + "score": 0.34, + "latex": "\\Rightarrow" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1323.0, + 918.0, + 1323.0, + 918.0, + 1345.0, + 885.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1342.0, + 1110.0, + 1342.0, + 1110.0, + 1363.0, + 929.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1341.0, + 1370.0, + 1341.0, + 1370.0, + 1364.0, + 1271.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1383.0, + 916.0, + 1383.0, + 916.0, + 1405.0, + 886.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1390.0, + 1338.0, + 1390.0, + 1338.0, + 1422.0, + 1301.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1417.0, + 898.0, + 1417.0, + 898.0, + 1608.0, + 869.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1419.0, + 1295.0, + 1419.0, + 1295.0, + 1427.0, + 1287.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1433.0, + 1041.0, + 1433.0, + 1041.0, + 1441.0, + 1032.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1435.0, + 1263.0, + 1435.0, + 1263.0, + 1443.0, + 1255.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1443.0, + 912.0, + 1443.0, + 912.0, + 1466.0, + 885.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1451.0, + 1235.0, + 1451.0, + 1235.0, + 1458.0, + 1222.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1456.0, + 1164.0, + 1456.0, + 1164.0, + 1479.0, + 1101.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1462.0, + 1104.0, + 1462.0, + 1104.0, + 1470.0, + 1095.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1482.0, + 1268.0, + 1482.0, + 1268.0, + 1502.0, + 1206.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1486.0, + 1208.0, + 1486.0, + 1208.0, + 1495.0, + 1199.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1504.0, + 912.0, + 1504.0, + 912.0, + 1524.0, + 887.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1515.0, + 1063.0, + 1515.0, + 1063.0, + 1546.0, + 998.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1537.0, + 1368.0, + 1537.0, + 1368.0, + 1555.0, + 1342.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1553.0, + 1356.0, + 1553.0, + 1356.0, + 1560.0, + 1348.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1563.0, + 912.0, + 1563.0, + 912.0, + 1586.0, + 886.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1578.0, + 982.0, + 1578.0, + 982.0, + 1587.0, + 974.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1624.0, + 915.0, + 1624.0, + 915.0, + 1647.0, + 886.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1658.0, + 968.0, + 1658.0, + 968.0, + 1666.0, + 961.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1667.0, + 968.0, + 1667.0, + 968.0, + 1682.0, + 956.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1686.0, + 912.0, + 1686.0, + 912.0, + 1705.0, + 887.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1696.0, + 942.0, + 1696.0, + 942.0, + 1714.0, + 926.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1694.0, + 1016.0, + 1694.0, + 1016.0, + 1716.0, + 989.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1693.0, + 1089.0, + 1693.0, + 1089.0, + 1717.0, + 1053.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1693.0, + 1157.0, + 1693.0, + 1157.0, + 1715.0, + 1123.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1693.0, + 1227.0, + 1693.0, + 1227.0, + 1717.0, + 1190.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1693.0, + 1295.0, + 1693.0, + 1295.0, + 1717.0, + 1258.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1693.0, + 1364.0, + 1693.0, + 1364.0, + 1717.0, + 1327.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1706.0, + 1202.0, + 1706.0, + 1202.0, + 1731.0, + 1091.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1333.0, + 759.0, + 1333.0, + 759.0, + 1356.0, + 689.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1362.0, + 547.0, + 1362.0, + 547.0, + 1382.0, + 478.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1379.0, + 349.0, + 1379.0, + 349.0, + 1401.0, + 321.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1402.0, + 602.0, + 1402.0, + 602.0, + 1423.0, + 565.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1415.0, + 332.0, + 1415.0, + 332.0, + 1606.0, + 304.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1416.0, + 465.0, + 1416.0, + 465.0, + 1436.0, + 397.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1428.0, + 598.0, + 1428.0, + 598.0, + 1451.0, + 508.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1447.0, + 348.0, + 1447.0, + 348.0, + 1471.0, + 322.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1451.0, + 558.0, + 1451.0, + 558.0, + 1470.0, + 496.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1470.0, + 586.0, + 1470.0, + 586.0, + 1492.0, + 527.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1470.0, + 740.0, + 1470.0, + 740.0, + 1492.0, + 687.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1516.0, + 346.0, + 1516.0, + 346.0, + 1536.0, + 323.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1532.0, + 416.0, + 1532.0, + 416.0, + 1552.0, + 351.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1503.0, + 454.0, + 1503.0, + 454.0, + 1546.0, + 432.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1526.0, + 493.0, + 1526.0, + 493.0, + 1544.0, + 463.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1519.0, + 590.0, + 1519.0, + 590.0, + 1537.0, + 554.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1548.0, + 446.0, + 1548.0, + 446.0, + 1556.0, + 439.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1542.0, + 478.0, + 1542.0, + 478.0, + 1554.0, + 466.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1549.0, + 548.0, + 1549.0, + 548.0, + 1554.0, + 543.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1582.0, + 347.0, + 1582.0, + 347.0, + 1605.0, + 321.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1645.0, + 419.0, + 1645.0, + 419.0, + 1653.0, + 411.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1650.0, + 349.0, + 1650.0, + 349.0, + 1673.0, + 321.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1668.0, + 411.0, + 1668.0, + 411.0, + 1677.0, + 403.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1696.0, + 372.0, + 1696.0, + 372.0, + 1714.0, + 356.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1695.0, + 427.0, + 1695.0, + 427.0, + 1715.0, + 411.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1694.0, + 489.0, + 1694.0, + 489.0, + 1716.0, + 461.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1695.0, + 543.0, + 1695.0, + 543.0, + 1715.0, + 518.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1693.0, + 600.0, + 1693.0, + 600.0, + 1716.0, + 572.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1693.0, + 656.0, + 1693.0, + 656.0, + 1716.0, + 628.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1693.0, + 711.0, + 1693.0, + 711.0, + 1717.0, + 684.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1693.0, + 766.0, + 1693.0, + 766.0, + 1717.0, + 739.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1693.0, + 821.0, + 1693.0, + 821.0, + 1716.0, + 794.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1707.0, + 628.0, + 1707.0, + 628.0, + 1732.0, + 526.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1522.5, + 476.0, + 1522.5, + 476.0, + 1533.5, + 442.0, + 1533.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1535.0, + 566.0, + 1535.0, + 566.0, + 1545.0, + 546.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 214.0, + 1404.0, + 214.0, + 1404.0, + 251.0, + 293.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 245.0, + 1404.0, + 245.0, + 1404.0, + 280.0, + 296.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 276.0, + 1404.0, + 276.0, + 1404.0, + 311.0, + 296.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 307.0, + 1039.0, + 307.0, + 1039.0, + 341.0, + 296.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1753.0, + 1400.0, + 1753.0, + 1400.0, + 1790.0, + 860.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1780.0, + 1022.0, + 1780.0, + 1022.0, + 1825.0, + 859.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1780.0, + 1359.0, + 1780.0, + 1359.0, + 1825.0, + 1112.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1753.0, + 834.0, + 1753.0, + 834.0, + 1791.0, + 295.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1784.0, + 661.0, + 1784.0, + 661.0, + 1820.0, + 297.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1784.0, + 773.0, + 1784.0, + 773.0, + 1820.0, + 764.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 524.0, + 1240.0, + 524.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 1000.0, + 292.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1404.0, + 989.0, + 1404.0, + 1030.0, + 294.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1019.0, + 1409.0, + 1019.0, + 1409.0, + 1063.0, + 291.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1053.0, + 1403.0, + 1053.0, + 1403.0, + 1086.0, + 296.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1121.0, + 292.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1113.0, + 1407.0, + 1113.0, + 1407.0, + 1153.0, + 292.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 967.0, + 1175.0, + 967.0, + 1211.0, + 295.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 834.0, + 293.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 820.0, + 1409.0, + 820.0, + 1409.0, + 865.0, + 292.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 1405.0, + 856.0, + 1405.0, + 893.0, + 295.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1402.0, + 884.0, + 1402.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 1404.0, + 579.0, + 1404.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1408.0, + 604.0, + 1408.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 637.0, + 1404.0, + 637.0, + 1404.0, + 673.0, + 294.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 663.0, + 1409.0, + 663.0, + 1409.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1037.0, + 698.0, + 1037.0, + 736.0, + 294.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1409.0, + 1853.0, + 1409.0, + 1890.0, + 294.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1917.0, + 296.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 759.0, + 1944.0, + 759.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1981.0, + 864.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 866.0, + 1977.0, + 866.0, + 2010.0, + 296.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 294, + 309, + 1435, + 309, + 1435, + 1420, + 294, + 1420 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1747, + 1404, + 1747, + 1404, + 1931, + 298, + 1931 + ], + "score": 0.978 + }, + { + "category_id": 6, + "poly": [ + 296, + 191, + 1408, + 191, + 1408, + 313, + 296, + 313 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1945, + 1398, + 1945, + 1398, + 2007, + 299, + 2007 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 298, + 1502, + 1407, + 1502, + 1407, + 1688, + 298, + 1688 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.802 + }, + { + "category_id": 6, + "poly": [ + 298, + 1502, + 1407, + 1502, + 1407, + 1688, + 298, + 1688 + ], + "score": 0.097 + }, + { + "category_id": 13, + "poly": [ + 536, + 1595, + 623, + 1595, + 623, + 1624, + 536, + 1624 + ], + "score": 0.89, + "latex": "8 8 . 5 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1565, + 1189, + 1565, + 1189, + 1594, + 1101, + 1594 + ], + "score": 0.88, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 668, + 1870, + 759, + 1870, + 759, + 1899, + 668, + 1899 + ], + "score": 0.87, + "latex": "8 9 . 7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1311, + 193, + 1403, + 193, + 1403, + 221, + 1311, + 221 + ], + "score": 0.83, + "latex": "2 1 \\mathtt { K } + 1 \\mathtt { K }" + }, + { + "category_id": 13, + "poly": [ + 786, + 1626, + 838, + 1626, + 838, + 1654, + 786, + 1654 + ], + "score": 0.82, + "latex": "2 . 2 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 383, + 1871, + 433, + 1871, + 433, + 1899, + 383, + 1899 + ], + "score": 0.82, + "latex": ". \\mathrm { F 4 + }" + }, + { + "category_id": 13, + "poly": [ + 980, + 1595, + 1034, + 1595, + 1034, + 1624, + 980, + 1624 + ], + "score": 0.76, + "latex": "2 . 3 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1596, + 1332, + 1596, + 1332, + 1624, + 1285, + 1624 + ], + "score": 0.76, + "latex": "2 3 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1810, + 694, + 1810, + 694, + 1838, + 646, + 1838 + ], + "score": 0.64, + "latex": "\\mathrm { F 4 + }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1977, + 970, + 1977, + 970, + 2004, + 938, + 2004 + ], + "score": 0.39, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 849, + 1810, + 883, + 1810, + 883, + 1837, + 849, + 1837 + ], + "score": 0.29, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 190.0, + 1310.0, + 190.0, + 1310.0, + 228.0, + 294.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 216.0, + 1406.0, + 216.0, + 1406.0, + 262.0, + 292.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 248.0, + 1406.0, + 248.0, + 1406.0, + 288.0, + 293.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 280.0, + 1084.0, + 280.0, + 1084.0, + 317.0, + 293.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2090.0, + 838.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1409.0, + 1501.0, + 1409.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1100.0, + 1563.0, + 1100.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1563.0, + 1409.0, + 1563.0, + 1409.0, + 1599.0, + 1190.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 535.0, + 1594.0, + 535.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1594.0, + 979.0, + 1594.0, + 979.0, + 1629.0, + 624.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1594.0, + 1284.0, + 1594.0, + 1284.0, + 1629.0, + 1035.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 1333.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 785.0, + 1624.0, + 785.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1659.0, + 839.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 834.0, + 1652.0, + 834.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1406.0, + 1749.0, + 1406.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1815.0, + 293.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 645.0, + 1802.0, + 645.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1802.0, + 848.0, + 1802.0, + 848.0, + 1848.0, + 695.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1848.0, + 884.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1836.0, + 1406.0, + 1836.0, + 1406.0, + 1876.0, + 293.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1867.0, + 382.0, + 1867.0, + 382.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1867.0, + 667.0, + 1867.0, + 667.0, + 1905.0, + 434.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1867.0, + 1408.0, + 1867.0, + 1408.0, + 1905.0, + 760.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1896.0, + 533.0, + 1896.0, + 533.0, + 1939.0, + 292.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 937.0, + 1977.0, + 937.0, + 2009.0, + 296.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1977.0, + 1404.0, + 1977.0, + 1404.0, + 2009.0, + 971.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1409.0, + 1501.0, + 1409.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1100.0, + 1563.0, + 1100.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1563.0, + 1409.0, + 1563.0, + 1409.0, + 1599.0, + 1190.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 535.0, + 1594.0, + 535.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1594.0, + 979.0, + 1594.0, + 979.0, + 1629.0, + 624.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1594.0, + 1284.0, + 1594.0, + 1284.0, + 1629.0, + 1035.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 1333.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 785.0, + 1624.0, + 785.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1659.0, + 839.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 834.0, + 1652.0, + 834.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 345, + 1421, + 345, + 1421, + 790, + 296, + 790 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
" + }, + { + "category_id": 5, + "poly": [ + 329, + 1316, + 1363, + 1316, + 1363, + 1523, + 329, + 1523 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
" + }, + { + "category_id": 5, + "poly": [ + 388, + 1592, + 1305, + 1592, + 1305, + 1823, + 388, + 1823 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1019, + 1405, + 1019, + 1405, + 1265, + 297, + 1265 + ], + "score": 0.977 + }, + { + "category_id": 6, + "poly": [ + 295, + 187, + 1408, + 187, + 1408, + 343, + 295, + 343 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1854, + 1407, + 1854, + 1407, + 2008, + 298, + 2008 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 973, + 990, + 973, + 990, + 1006, + 298, + 1006 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 918, + 561, + 918, + 561, + 951, + 298, + 951 + ], + "score": 0.914 + }, + { + "category_id": 6, + "poly": [ + 634, + 1285, + 1064, + 1285, + 1064, + 1314, + 634, + 1314 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 624, + 1560, + 1073, + 1560, + 1073, + 1590, + 624, + 1590 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 299, + 821, + 1402, + 821, + 1402, + 884, + 299, + 884 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.814 + }, + { + "category_id": 7, + "poly": [ + 299, + 821, + 1402, + 821, + 1402, + 884, + 299, + 884 + ], + "score": 0.201 + }, + { + "category_id": 13, + "poly": [ + 725, + 822, + 812, + 822, + 812, + 851, + 725, + 851 + ], + "score": 0.89, + "latex": "9 0 . 4 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 593, + 852, + 682, + 852, + 682, + 882, + 593, + 882 + ], + "score": 0.87, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 852, + 386, + 852, + 386, + 881, + 297, + 881 + ], + "score": 0.86, + "latex": "8 9 . 7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 925, + 822, + 977, + 822, + 977, + 851, + 925, + 851 + ], + "score": 0.74, + "latex": "1 . 5 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1480, + 876, + 1480, + 876, + 1512, + 810, + 1512 + ], + "score": 0.55, + "latex": "( 3 8 4 ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 827, + 1447, + 901, + 1447, + 901, + 1479, + 827, + 1479 + ], + "score": 0.31, + "latex": "( 2 2 4 ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 343, + 1481, + 378, + 1481, + 378, + 1508, + 343, + 1508 + ], + "score": 0.28, + "latex": "\\Rightarrow" + }, + { + "category_id": 13, + "poly": [ + 586, + 821, + 691, + 821, + 691, + 850, + 586, + 850 + ], + "score": 0.25, + "latex": "\\mathrm { V i T - G } / 1 4" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 186.0, + 1407.0, + 186.0, + 1407.0, + 220.0, + 297.0, + 220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 218.0, + 1405.0, + 218.0, + 1405.0, + 252.0, + 296.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 248.0, + 1406.0, + 248.0, + 1406.0, + 285.0, + 294.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1406.0, + 277.0, + 1406.0, + 314.0, + 294.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 308.0, + 1405.0, + 308.0, + 1405.0, + 345.0, + 296.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 564.0, + 914.0, + 564.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1280.0, + 1067.0, + 1280.0, + 1067.0, + 1319.0, + 630.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1556.0, + 1078.0, + 1556.0, + 1078.0, + 1594.0, + 620.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 585.0, + 821.0, + 585.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 821.0, + 724.0, + 821.0, + 724.0, + 856.0, + 692.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 821.0, + 924.0, + 821.0, + 924.0, + 856.0, + 813.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 856.0, + 978.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 851.0, + 592.0, + 851.0, + 592.0, + 887.0, + 387.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 851.0, + 1225.0, + 851.0, + 1225.0, + 887.0, + 683.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1017.0, + 1406.0, + 1017.0, + 1406.0, + 1056.0, + 292.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1081.0, + 1403.0, + 1081.0, + 1403.0, + 1114.0, + 295.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1406.0, + 1142.0, + 1406.0, + 1176.0, + 295.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1172.0, + 1406.0, + 1172.0, + 1406.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1006.0, + 1235.0, + 1006.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1409.0, + 1939.0, + 1409.0, + 1985.0, + 292.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1118.0, + 1975.0, + 1118.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 973.0, + 992.0, + 973.0, + 992.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 585.0, + 821.0, + 585.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 821.0, + 724.0, + 821.0, + 724.0, + 856.0, + 692.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 821.0, + 924.0, + 821.0, + 924.0, + 856.0, + 813.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 856.0, + 978.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 851.0, + 592.0, + 851.0, + 592.0, + 887.0, + 387.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 851.0, + 1225.0, + 851.0, + 1225.0, + 887.0, + 683.0, + 887.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 385, + 220, + 1308, + 220, + 1308, + 460, + 385, + 460 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
" + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1404, + 839, + 1404, + 1022, + 298, + 1022 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1133, + 1403, + 1133, + 1403, + 1286, + 298, + 1286 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 515, + 1402, + 515, + 1402, + 637, + 299, + 637 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 643, + 1404, + 643, + 1404, + 824, + 297, + 824 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 1300, + 1400, + 1300, + 1400, + 1393, + 298, + 1393 + ], + "score": 0.946 + }, + { + "category_id": 6, + "poly": [ + 542, + 189, + 1154, + 189, + 1154, + 219, + 542, + 219 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 1064, + 509, + 1064, + 509, + 1102, + 298, + 1102 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 836, + 2062, + 865, + 2062, + 865, + 2085, + 836, + 2085 + ], + "score": 0.844 + }, + { + "category_id": 13, + "poly": [ + 683, + 991, + 787, + 991, + 787, + 1020, + 683, + 1020 + ], + "score": 0.88, + "latex": "10 - 2 0 \\%" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 181.0, + 1158.0, + 181.0, + 1158.0, + 227.0, + 539.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1058.0, + 514.0, + 1058.0, + 514.0, + 1109.0, + 289.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 871.0, + 2058.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1406.0, + 869.0, + 1406.0, + 904.0, + 294.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 899.0, + 1406.0, + 899.0, + 1406.0, + 934.0, + 294.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 966.0, + 294.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 958.0, + 1405.0, + 958.0, + 1405.0, + 996.0, + 293.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 682.0, + 987.0, + 682.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 987.0, + 1372.0, + 987.0, + 1372.0, + 1027.0, + 788.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1199.0, + 293.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1224.0, + 1406.0, + 1224.0, + 1406.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 542.0, + 1256.0, + 542.0, + 1293.0, + 294.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 1407.0, + 512.0, + 1407.0, + 551.0, + 294.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 577.0, + 318.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 575.0, + 1407.0, + 575.0, + 1407.0, + 611.0, + 318.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 609.0, + 503.0, + 609.0, + 503.0, + 638.0, + 318.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 639.0, + 1406.0, + 639.0, + 1406.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 672.0, + 1407.0, + 672.0, + 1407.0, + 707.0, + 317.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 736.0, + 317.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 731.0, + 1406.0, + 731.0, + 1406.0, + 767.0, + 315.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 760.0, + 1407.0, + 760.0, + 1407.0, + 800.0, + 316.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 795.0, + 492.0, + 795.0, + 492.0, + 827.0, + 316.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 1406.0, + 1297.0, + 1406.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1362.0, + 863.0, + 1362.0, + 863.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 264, + 1411, + 264, + 1411, + 2012, + 296, + 2012 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 200, + 455, + 200, + 455, + 235, + 299, + 235 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.826 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 196.0, + 460.0, + 196.0, + 460.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 252.0, + 1406.0, + 252.0, + 1406.0, + 299.0, + 307.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 330.0, + 350.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 318.0, + 565.0, + 318.0, + 565.0, + 355.0, + 356.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 358.0, + 1408.0, + 358.0, + 1408.0, + 401.0, + 307.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 389.0, + 749.0, + 389.0, + 749.0, + 430.0, + 350.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 432.0, + 1406.0, + 432.0, + 1406.0, + 474.0, + 307.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 462.0, + 684.0, + 462.0, + 684.0, + 503.0, + 352.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 503.0, + 1408.0, + 503.0, + 1408.0, + 545.0, + 307.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 537.0, + 1408.0, + 537.0, + 1408.0, + 574.0, + 356.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 566.0, + 1406.0, + 566.0, + 1406.0, + 603.0, + 354.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 595.0, + 430.0, + 595.0, + 430.0, + 636.0, + 352.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 639.0, + 1406.0, + 639.0, + 1406.0, + 676.0, + 309.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 670.0, + 626.0, + 670.0, + 626.0, + 707.0, + 352.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 707.0, + 1406.0, + 707.0, + 1406.0, + 749.0, + 307.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 780.0, + 354.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 770.0, + 430.0, + 770.0, + 430.0, + 811.0, + 352.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 813.0, + 1408.0, + 813.0, + 1408.0, + 855.0, + 307.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 843.0, + 1408.0, + 843.0, + 1408.0, + 886.0, + 352.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 874.0, + 432.0, + 874.0, + 432.0, + 913.0, + 352.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 915.0, + 1410.0, + 915.0, + 1410.0, + 955.0, + 307.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 947.0, + 1406.0, + 947.0, + 1406.0, + 984.0, + 354.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 978.0, + 1011.0, + 978.0, + 1011.0, + 1015.0, + 354.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1019.0, + 1408.0, + 1019.0, + 1408.0, + 1061.0, + 307.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1048.0, + 1406.0, + 1048.0, + 1406.0, + 1092.0, + 352.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1080.0, + 567.0, + 1080.0, + 567.0, + 1117.0, + 354.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1408.0, + 1119.0, + 1408.0, + 1161.0, + 293.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1151.0, + 1406.0, + 1151.0, + 1406.0, + 1194.0, + 352.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1184.0, + 871.0, + 1184.0, + 871.0, + 1221.0, + 354.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 1408.0, + 1223.0, + 1408.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1252.0, + 1410.0, + 1252.0, + 1410.0, + 1296.0, + 352.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1284.0, + 432.0, + 1284.0, + 432.0, + 1325.0, + 352.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 1410.0, + 1327.0, + 1410.0, + 1367.0, + 292.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1398.0, + 352.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1388.0, + 1011.0, + 1388.0, + 1011.0, + 1427.0, + 348.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 1408.0, + 1429.0, + 1408.0, + 1469.0, + 292.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1458.0, + 1410.0, + 1458.0, + 1410.0, + 1502.0, + 352.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1488.0, + 1408.0, + 1488.0, + 1408.0, + 1533.0, + 350.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1523.0, + 643.0, + 1523.0, + 643.0, + 1560.0, + 352.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1560.0, + 1408.0, + 1560.0, + 1408.0, + 1604.0, + 292.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1590.0, + 1408.0, + 1590.0, + 1408.0, + 1635.0, + 351.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1623.0, + 810.0, + 1623.0, + 810.0, + 1663.0, + 350.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1406.0, + 1665.0, + 1406.0, + 1708.0, + 293.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1735.0, + 354.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1727.0, + 836.0, + 1727.0, + 836.0, + 1765.0, + 350.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 1406.0, + 1769.0, + 1406.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1841.0, + 350.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1829.0, + 741.0, + 1829.0, + 741.0, + 1869.0, + 348.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1873.0, + 1408.0, + 1873.0, + 1408.0, + 1910.0, + 295.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1900.0, + 1254.0, + 1900.0, + 1254.0, + 1943.0, + 352.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1985.0, + 293.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1973.0, + 1387.0, + 1973.0, + 1387.0, + 2016.0, + 352.0, + 2016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 294, + 102, + 1410, + 102, + 1410, + 2022, + 294, + 2022 + ], + "score": 0.779 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 201.0, + 1409.0, + 201.0, + 1409.0, + 241.0, + 293.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 241.0, + 1411.0, + 241.0, + 1411.0, + 290.0, + 288.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 277.0, + 1340.0, + 277.0, + 1340.0, + 317.0, + 352.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 351.0, + 1407.0, + 351.0, + 1407.0, + 391.0, + 352.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 380.0, + 740.0, + 380.0, + 740.0, + 418.0, + 347.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 422.0, + 1407.0, + 422.0, + 1407.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 452.0, + 1407.0, + 452.0, + 1407.0, + 494.0, + 350.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 488.0, + 643.0, + 488.0, + 643.0, + 521.0, + 354.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 528.0, + 1407.0, + 528.0, + 1407.0, + 570.0, + 290.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 559.0, + 1407.0, + 559.0, + 1407.0, + 597.0, + 352.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 603.0, + 1409.0, + 603.0, + 1409.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 637.0, + 1405.0, + 637.0, + 1405.0, + 671.0, + 354.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 664.0, + 742.0, + 664.0, + 742.0, + 702.0, + 349.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 1407.0, + 706.0, + 1407.0, + 746.0, + 293.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 738.0, + 1409.0, + 738.0, + 1409.0, + 778.0, + 352.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 770.0, + 812.0, + 770.0, + 812.0, + 810.0, + 352.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 812.0, + 1409.0, + 812.0, + 1409.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 843.0, + 858.0, + 843.0, + 858.0, + 883.0, + 352.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 889.0, + 1407.0, + 889.0, + 1407.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 917.0, + 1407.0, + 917.0, + 1407.0, + 957.0, + 352.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 948.0, + 1131.0, + 948.0, + 1131.0, + 984.0, + 349.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 993.0, + 1407.0, + 993.0, + 1407.0, + 1026.0, + 297.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 1407.0, + 1035.0, + 1407.0, + 1075.0, + 295.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1064.0, + 1392.0, + 1064.0, + 1392.0, + 1102.0, + 352.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1108.0, + 1407.0, + 1108.0, + 1407.0, + 1148.0, + 295.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1142.0, + 934.0, + 1142.0, + 934.0, + 1176.0, + 354.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 1409.0, + 1182.0, + 1409.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1216.0, + 1405.0, + 1216.0, + 1405.0, + 1249.0, + 358.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1243.0, + 1084.0, + 1243.0, + 1084.0, + 1281.0, + 350.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1287.0, + 1407.0, + 1287.0, + 1407.0, + 1327.0, + 295.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1354.0, + 354.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1348.0, + 943.0, + 1348.0, + 943.0, + 1388.0, + 352.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1409.0, + 1390.0, + 1409.0, + 1430.0, + 293.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1415.0, + 1409.0, + 1415.0, + 1409.0, + 1466.0, + 350.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1455.0, + 1105.0, + 1455.0, + 1105.0, + 1489.0, + 354.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1527.0, + 1409.0, + 1527.0, + 1409.0, + 1567.0, + 352.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1554.0, + 432.0, + 1554.0, + 432.0, + 1596.0, + 350.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1407.0, + 1601.0, + 1407.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1628.0, + 1407.0, + 1628.0, + 1407.0, + 1670.0, + 352.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1662.0, + 1407.0, + 1662.0, + 1407.0, + 1702.0, + 352.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1689.0, + 432.0, + 1689.0, + 432.0, + 1731.0, + 350.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1771.0, + 297.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1765.0, + 1405.0, + 1765.0, + 1405.0, + 1805.0, + 354.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1794.0, + 645.0, + 1794.0, + 645.0, + 1832.0, + 349.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1838.0, + 1409.0, + 1838.0, + 1409.0, + 1878.0, + 295.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1870.0, + 1409.0, + 1870.0, + 1409.0, + 1910.0, + 352.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1984.0, + 352.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1977.0, + 951.0, + 1977.0, + 951.0, + 2011.0, + 354.0, + 2011.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 191, + 1409, + 191, + 1409, + 1390, + 293, + 1390 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.823 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 870.0, + 2057.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1407.0, + 203.0, + 1407.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 271.0, + 353.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 265.0, + 641.0, + 265.0, + 641.0, + 295.0, + 357.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 303.0, + 1405.0, + 303.0, + 1405.0, + 343.0, + 293.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 334.0, + 1405.0, + 334.0, + 1405.0, + 371.0, + 354.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 366.0, + 1015.0, + 366.0, + 1015.0, + 399.0, + 353.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 406.0, + 1403.0, + 406.0, + 1403.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 439.0, + 735.0, + 439.0, + 735.0, + 471.0, + 353.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 479.0, + 1403.0, + 479.0, + 1403.0, + 513.0, + 296.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 512.0, + 1257.0, + 512.0, + 1257.0, + 544.0, + 354.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 548.0, + 1403.0, + 548.0, + 1403.0, + 586.0, + 297.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 579.0, + 1315.0, + 579.0, + 1315.0, + 617.0, + 352.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 661.0, + 292.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 655.0, + 1401.0, + 655.0, + 1401.0, + 685.0, + 356.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 681.0, + 1057.0, + 681.0, + 1057.0, + 717.0, + 353.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 724.0, + 1403.0, + 724.0, + 1403.0, + 758.0, + 297.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 754.0, + 1406.0, + 754.0, + 1406.0, + 792.0, + 354.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 784.0, + 1379.0, + 784.0, + 1379.0, + 822.0, + 356.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 857.0, + 1133.0, + 857.0, + 1133.0, + 891.0, + 353.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 934.0, + 297.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 929.0, + 1409.0, + 929.0, + 1409.0, + 966.0, + 354.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 999.0, + 1403.0, + 999.0, + 1403.0, + 1035.0, + 354.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1033.0, + 1129.0, + 1033.0, + 1129.0, + 1064.0, + 353.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 1405.0, + 1069.0, + 1405.0, + 1109.0, + 292.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1103.0, + 642.0, + 1103.0, + 642.0, + 1133.0, + 354.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1405.0, + 1142.0, + 1405.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1175.0, + 1331.0, + 1175.0, + 1331.0, + 1209.0, + 353.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1252.0, + 296.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1245.0, + 642.0, + 1245.0, + 642.0, + 1278.0, + 353.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1287.0, + 1406.0, + 1287.0, + 1406.0, + 1321.0, + 297.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1317.0, + 1409.0, + 1317.0, + 1409.0, + 1355.0, + 353.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1345.0, + 428.0, + 1345.0, + 428.0, + 1382.0, + 353.0, + 1382.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/LyjH88yV7F/LyjH88yV7F.md b/parse/train/LyjH88yV7F/LyjH88yV7F.md new file mode 100644 index 0000000000000000000000000000000000000000..7fc06187ff11e05fc5fb74cf7950bbf2265959da --- /dev/null +++ b/parse/train/LyjH88yV7F/LyjH88yV7F.md @@ -0,0 +1,215 @@ +# Learning Graph Models for Retrosynthesis Prediction + +Vignesh Ram Somnath1 + +Charlotte Bunne1 + +Connor W. Coley2 + +Andreas Krause1 Regina Barzilay3 + +1Department of Computer Science, ETH 2Department of Chemical Engineering, MIT 3Computer Science and Artificial Intelligence Lab, MIT 1{vsomnath, bunnec, krausea}@ethz.ch, 2ccoley@mit.edu, 3regina@csail.mit.edu + +# Abstract + +Retrosynthesis prediction is a fundamental problem in organic synthesis, where the task is to identify precursor molecules that can be used to synthesize a target molecule. A key consideration in building neural models for this task is aligning model design with strategies adopted by chemists. Building on this viewpoint, this paper introduces a graph-based approach that capitalizes on the idea that the graph topology of precursor molecules is largely unaltered during a chemical reaction. The model first predicts the set of graph edits transforming the target into incomplete molecules called synthons. Next, the model learns to expand synthons into complete molecules by attaching relevant leaving groups. This decomposition simplifies the architecture, making its predictions more interpretable, and also amenable to manual correction. Our model achieves a top-1 accuracy of $5 3 . 7 \%$ , outperforming previous template-free and semi-template-based methods. + +# 1 Introduction + +Retrosynthesis prediction, first formalized by E. J. Corey [Corey, 1991] is a fundamental problem in organic synthesis that attempts to identify a series of chemical transformations for synthesizing a target molecule. In the single-step formulation, the task is to identify a set of reactant molecules given a target. Beyond simple reactions, many practical tasks involving complex organic molecules are difficult even for expert chemists. As a result, substantial experimental exploration is needed to cover for deficiencies of analytical approaches. This has motivated interest in computer-assisted retrosynthesis [Corey and Wipke, 1969], with a recent surge in machine learning methods [Chen et al., 2019, Coley et al., 2017b, Dai et al., 2019, Zheng et al., 2019, Genheden et al., 2020]. + +Computationally, the main challenge is how to explore the combinatorial space of reactions that can yield the target molecule. Largely, previous methods for retrosynthesis prediction can be divided into template-based [Coley et al., 2017b, Dai et al., 2019, Segler and Waller, 2017] and template-free [Chen et al., 2019, Zheng et al., 2019] approaches. Template-based methods match a target molecule against a large set of templates, which are molecular subgraph patterns that highlight changes during a chemical reaction. Despite their interpretability, these methods fail to generalize to new reactions. Template-free methods bypass templates by learning a direct mapping from the SMILES [Weininger, 1988] representations of the product to reactants. Despite their greater generalization potential, these methods generate reactant SMILES character by character, increasing generation complexity. + +![](images/e988f2e4a9f13ae6fa41934806006c24c87183942b7fd7f824274aee3a6237f9.jpg) +Figure 1: Overview of Our Approach. a. Edit Prediction. We train a model to learn a distribution over possible graph edits. In this case, the correct edit corresponds to breaking the bond marked in red. Applying this edit produces two synthons. b. Synthon Completion. Another model is trained to pick candidate leaving groups (blue) for each synthon from a discrete vocabulary, which are then attached to produce the final reactants. + +Another important consideration in building retrosynthesis models is aligning model design with strategies adopted by expert chemists. These strategies are influenced by fundamental properties of chemical reactions, independent of complexity level: (i.) the product atoms are always a subset of the reactant atoms1, and (ii.) the molecular graph topology is largely unaltered from products to reactants. For example, in the standard retrosynthesis dataset, only $6 . 3 \%$ of the atoms in the product undergo any change in connectivity. + +This consideration has received more attention in recent semi-template-based methods [Shi et al., 2020, Yan et al., 2020], that generate reactants from a product in two stages: (i.) first identify intermediate molecules called synthons, (ii.) and then complete synthons into reactants by sequential generation of atoms or SMILES characters.. Our model GRAPHRETRO also uses a similar workflow. However, we avoid sequential generation for completing synthons by instead selecting subgraphs called leaving groups from a precomputed vocabulary. This vocabulary is constructed during preprocessing by extracting subgraphs that differ between a synthon and the corresponding reactant. The vocabulary has a small size (170 for USPTO-50k) indicating remarkable redundancy, while covering $9 9 . 7 \%$ of the test set. Operating at the level of these subgraphs greatly reduces the complexity of reactant generation, with improved empirical performance. This formulation also simplifies our architecture, and makes our predictions more transparent, interpretable and amenable to manual correction. + +The benchmark dataset for evaluating retrosynthesis models is USPTO-50k [Schneider et al., 2016], which consists of 50000 reactions across 10 reaction classes. The dataset contains an unexpected shortcut towards predicting the edit, in that the product atom with atom-mapping 1 is part of the edit in $7 5 \%$ of the cases, allowing predictions that depend on the position of the atom to overestimate performance. We canonicalize the product SMILES and remap the existing dataset, thereby removing the shortcut. On this remapped dataset, GRAPHRETRO achieves a top-1 accuracy of $5 3 . 7 \%$ when the reaction class is not known, outperforming both template-free and semi-template-based methods. + +# 2 Related Work + +Retrosynthesis Prediction Existing machine learning methods for retrosynthesis prediction can be divided into template-based, template-free and recent semi-template-based approaches. + +Template-Based: Templates are either hand-crafted by experts [Hartenfeller et al., 2011, Szymkuc´ et al., 2016], or extracted algorithmically from large databases Coley et al. [2017a], Law et al. [2009]. Exhaustively applying large template sets is expensive due to the involved subgraph matching procedure. Template-based methods therefore utilize different ways of prioritizing templates, by either learning a conditional distribution over the template set [Segler and Waller, 2017], ranking templates based on molecular similarities to precedent reactions [Coley et al., 2017b] or directly modelling the joint distribution of templates and reactants using logic variables [Dai et al., 2019]. Despite their interpretability, these methods fail to generalize outside their rule set. + +Template-Free: Template-free methods [Liu et al., 2017, Zheng et al., 2019, Chen et al., 2019] learn a direct transformation from products to reactants using architectures from neural machine translation and a string based representation of molecules called SMILES [Weininger, 1988]. Linearizing molecules as strings does not utilize the inherently rich chemical structure. In addition, the reactant SMILES are generated from scratch, character by character. Attempts have been made to improve validity by adding a syntax correcter [Zheng et al., 2019] and a mixture model to improve diversity of suggestions [Chen et al., 2019], but the performance remains worse than [Dai et al., 2019] on the standard retrosynthesis dataset. Sun et al. [2021] formulate retrosynthesis using energy-based models, with additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis) prediction. + +Semi-Template-Based: Our work is closely related to recently proposed semi-template-based methods [Shi et al., 2020, Yan et al., 2020], which first identify synthons and then expand synthons into reactants through sequential generation using either a graph generative model [Shi et al., 2020] or a Transformer [Yan et al., 2020]. To reduce the complexity of reactant generation, we instead complete synthons using subgraphs called leaving groups selected from a precomputed vocabulary. This allows us to view synthon completion as a classification problem instead of a generative one. We also utilize the dependency graph between possible edits, and update edit predictions using a message passing network (MPN) [Gilmer et al., 2017] on this graph. Both innovations together yield a $4 . 8 \%$ and $3 . 3 \%$ performance improvement respectively over previous semi-template-based methods. + +Reaction Center Identification The reaction center covers a small number of participating atoms involved in the reaction. Our work is also related to models that predict reaction outcomes by learning to rank atom pairs based on their likelihood to be in the reaction center [Coley et al., 2019, Jin et al., 2017]. The task of identifying the reaction center is related to the step of deriving the synthons in our formulation. Our work departs from [Coley et al., 2019, Jin et al., 2017] as we utilize the property that new bond formations occur rarely $( \sim 0 . 1 \% )$ from products to synthons, allowing us to predict a score only for existing bonds and atoms and reduce prediction complexity from $O ( N ^ { \bar { 2 } } )$ to $O ( N )$ . We also utilize the dependency graph between possible edits, and update edit predictions using a MPN on this graph. + +Utilizing Substructures Substructures have been utilized in various tasks from sentence generation by fusing phrases to molecule generation and optimization [Jin et al., 2018, 2020]. Our work is closely related to [Jin et al., 2020] which uses precomputed substructures as building blocks for property-conditioned molecule generation. However, instead of precomputing, synthons —analogous building blocks for reactants— are indirectly learnt during training. + +# 3 Model Design + +Our approach leverages the property that graph topology is largely unaltered from products to reactants. To achieve this, we first derive suitable building blocks from the product called synthons, and then complete them into valid reactants by adding specific functionalities called leaving groups. These derivations, called edits, are characterized by modifications to bonds or hydrogen counts on atoms. We first train a neural network to predict a score for possible edits (Section 3.1). The edit with the highest score is then applied to the product to obtain synthons. Since the number of unique leaving groups are small, we model leaving group selection as a classification problem over a precomputed vocabulary (Section 3.2). To produce candidate reactants, we attach the predicted leaving group to the corresponding synthon through chemically constrained rules. The overall process is outlined in Figure 1. Before describing the two modules, we introduce relevant preliminaries that set the background for the remainder of the paper. + +Retrosynthesis Prediction A retrosynthesis pair $R$ is described by a pair of molecular graphs $( \mathcal { G } _ { p } , \mathcal { G } _ { r } )$ , where $\mathcal { G } _ { p }$ are the products and $\mathcal { G } _ { r }$ the reactants. A molecular graph is described as $\mathcal { G } = \mathbf { \bar { \rho } } ( \mathcal { V } , \mathcal { E } )$ with atoms $\nu$ as nodes and bonds $\mathcal { E }$ as edges. Prior work has focused on the single product case, while reactants can have multiple connected components, i.e. $\mathcal { G } _ { r } = \{ \mathcal { G } _ { r _ { c } } \} _ { c = 1 } ^ { C }$ . Retrosynthesis pairs are atom-mapped so that each product atom has a unique corresponding reactant atom. The retrosynthesis task then, is to infer $\{ \mathcal { G } _ { r _ { c } } \} _ { c = 1 } ^ { C }$ given $\mathcal { G } _ { p }$ . + +Edits Edits consist of (i.) atom pairs $\left\{ \left( a _ { i } , a _ { j } \right) \right\}$ where the bond type changes from products to reactants, and (ii.) atoms $\left\{ { a } _ { i } \right\}$ where the number of hydrogens attached to the atom change from products to reactants. We denote the set of edits by $E$ . Since retrosynthesis pairs in the training set are atom-mapped, edits can be automatically identified by comparing the atoms and atom pairs in the product to their corresponding reactant counterparts. + +Synthons and Leaving Groups Applying edits $E$ to the product $\mathcal { G } _ { p }$ results in incomplete molecules called synthons. Synthons are analogous to rationales or building blocks, which are expanded into valid reactants by adding specific functionalities called leaving groups that are responsible for its reactivity. We denote synthons by $\mathcal { G } _ { s }$ and leaving groups by $\mathcal { G } _ { l }$ . We further assume that synthons and leaving groups have the same number of connected components as the reactants, i.e $\mathcal { G } _ { s } \doteq \{ \mathcal { G } _ { s _ { c } } \} _ { c = 1 } ^ { C }$ and $\mathcal { G } _ { l } = \{ \mathcal { G } _ { l _ { c } } ^ { \star } \} _ { c = 1 } ^ { C }$ . This assumption holds for $9 9 . 9 7 \%$ reactions in the training set. + +Formally, our model generates reactants by first predicting the set of edits $E$ that transform $\mathcal { G } _ { p }$ into $\mathcal { G } _ { s }$ , followed by predicting a leaving group $\mathcal { G } _ { l _ { c } }$ to attach to each synthon $\mathcal { G } _ { s _ { c } }$ . The model is defined as + +$$ +P ( \mathcal G _ { r } | \mathcal G _ { p } ) = \sum _ { E , \mathcal G _ { l } } P ( E | \mathcal G _ { p } ) P ( \mathcal G _ { l } | \mathcal G _ { p } , \mathcal G _ { s } ) , +$$ + +where $\mathcal { G } _ { s } , \mathcal { G } _ { r }$ are deterministic given $E , { \mathcal { G } } _ { l }$ , and $\mathcal { G } _ { p }$ . + +# 3.1 Edit Prediction + +For a given retrosynthesis pair $R = ( \mathcal G _ { p } , \mathcal G _ { r } )$ , we predict an edit score only for existing bonds and atoms, instead of every atom pair as in [Coley et al., 2019, Jin et al., 2017]. This choice is motivated by the low frequency $( \sim 0 . 1 \% )$ of new bond formations in the training set examples. Coupled with the sparsity of molecular graphs, this reduces the prediction complexity from $O ( N ^ { 2 } )$ to $O ( N )$ for a product with $N$ atoms. Our edit prediction model has variants tailored to single and multiple edit prediction. Since $9 5 \%$ of the training set consists of single edit examples, the remainder of this section describes the setup for single edit prediction. A detailed description of our multiple edit prediction model can be found in Appendix ??. + +Each bond $( u , v )$ in $\mathcal { G } _ { p }$ is associated with a label $y _ { u v k } \in \{ 0 , 1 \}$ indicating whether its bond type $k$ has changed from the products to reactants. Each atom $u$ is associated with a label $y _ { u } \in \{ 0 , \bar { 1 } \}$ indicating a change in hydrogen count. We predict edit scores using representations that are learnt using a graph encoder. + +Graph Encoder To obtain atom representations, we use a variant of the message passing network (MPN) described in [Gilmer et al., 2017]. Each atom $u$ has a feature vector $\mathbf { x } _ { u }$ indicating its atom type, degree and other properties. Each bond $( u , v )$ has a feature vector $\mathbf { x } _ { u v }$ indicating its aromaticity, bond type and ring membership. For simplicity, we denote the encoding process by $\mathrm { M P N } ( \cdot )$ and describe architectural details in Appendix ??. The MPN computes atom representations $\{ \mathbf { c } _ { u } | u \in \mathcal { G } \}$ via + +$$ +\{ \mathbf { c } _ { u } \} = \mathrm { M P N } ( \mathcal { G } , \{ \mathbf { x } _ { u } \} , \{ \mathbf { x } _ { u v } \} _ { v \in \mathcal { N } ( u ) } ) , +$$ + +where $\mathcal { N } ( u )$ denotes the neighbors of atom $u$ . The graph representation $\mathbf { c } _ { \mathcal { G } }$ is an aggregation of atom representations, i.e. $\mathbf { c } _ { \mathcal { G } } = \dot { \sum _ { { u } \in \mathcal { V } } } \mathbf { c } _ { u }$ . When $\mathcal { G }$ has connected components $\left\{ { \mathcal { G } } _ { i } \right\}$ , we get a set of graph representations $\left\{ \mathbf { c } _ { \mathcal { G } _ { i } } \right\}$ . For a bond $( u , v )$ , we define its representation $\mathbf { c } _ { u v } = ( \operatorname { A B S } ( \mathbf { c } _ { u } , \mathbf { c } _ { v } ) | | \mathbf { c } _ { u } + \mathbf { c } _ { v } )$ , where ABS denotes absolute difference and $| |$ refers to concatenation. This ensures our representations are permutation invariant. These representations are then used to predict atom and bond edit scores using corresponding neural networks, + +$$ +\begin{array} { r } { \boldsymbol { s } _ { u } = \mathbf { u _ { a } } ^ { T } \boldsymbol { \tau } ( \mathbf { W _ { a } } \mathbf { c } _ { u } + b ) \quad } \\ { \boldsymbol { s } _ { u v k } = \mathbf { u _ { k } } ^ { T } \boldsymbol { \tau } ( \mathbf { W _ { k } } \mathbf { c } _ { u v } + b _ { k } ) , } \end{array} +$$ + +where $\tau ( \cdot )$ is the ReLU activation function. + +Updating Bond Edit Scores Unlike a typical classification problem where the labels are independent, edits can have possible dependencies between each other. For example, bonds part of a stable system such as an aromatic ring have a greater tendency to remain unchanged (label 0). We attempt to leverage such dependencies to update initial edit scores. To this end, we build a graph with bonds $( u , v )$ as nodes, and introduce an edge between bonds sharing an atom. We use another $\mathrm { M P N } ( \cdot )$ on this graph to learn aggregated neighborhood messages $\mathbf { m } _ { u v }$ , and update the edit scores $s _ { u v k }$ in a manner similar to how LSTMs update representations, + +$$ +\begin{array} { r l } & { f _ { u v k } = \sigma ( \mathbf { W _ { k x } ^ { f } } \mathbf { x } _ { u v } + \mathbf { W _ { k m } ^ { f } } \mathbf { m } _ { u v } ) } \\ & { i _ { u v k } = \sigma ( \mathbf { W _ { k x } ^ { i } } \mathbf { x } _ { u v } + \mathbf { W _ { k m } ^ { i } } \mathbf { m } _ { u v } ) } \\ & { \tilde { m } _ { u v k } = \mathbf { u _ { m } } \tau ( \mathbf { W _ { k x } ^ { m } } \mathbf { x } _ { u v } + \mathbf { W _ { k m } ^ { m } } \mathbf { m } _ { u v } ) } \\ & { \tilde { s } _ { u v k } = f _ { u v k } \cdot s _ { u v k } + i _ { u v k } \cdot \tilde { m } _ { u v k } . } \end{array} +$$ + +Training We train by minimizing the cross-entropy loss over possible bond and atom edits + +$$ +\mathcal { L } _ { e } = - \sum _ { ( \mathcal { G } _ { p } , E ) } \left( \sum _ { ( ( u , v ) , k ) \in E } y _ { u v k } \mathrm { l o g } ( \widetilde s _ { u v k } ) + \sum _ { u \in E } y _ { u } \mathrm { l o g } ( s _ { u } ) \right) . +$$ + +The cross-entropy loss enforces the model to learn a distribution over possible edits instead of reasoning about each edit independently, as with the binary cross entropy loss used in [Jin et al., 2017, Coley et al., 2019]. + +# 3.2 Synthon Completion + +Synthons are completed into valid reactants by adding specific functionalities called leaving groups. This involves two complementary tasks: (i.) selecting the appropriate leaving group, and (ii.) attaching the leaving group to the synthon. As ground truth leaving groups are not directly provided, we extract the leaving groups and construct a vocabulary $\mathcal { X }$ of unique leaving groups during preprocessing. + +The vocabulary has a limited size ( $| \mathcal { X } | = 1 7 0$ for a standard dataset with 50, 000 examples, and 72000 synthons) indicating the redundancy of leaving groups used in accomplishing retrosynthetic transformations. This redundancy also allows us to formulate leaving group selection as a classification problem over $\mathcal { X }$ , while retaining the ability to generate diverse reactants using different combinations of leaving groups. + +Vocabulary Construction Before constructing the vocabulary, we align connected components of synthon and reactant graphs by comparing atom mapping overlaps. Using aligned pairs $\mathcal { G } _ { s _ { c } } =$ $( \gamma _ { s _ { c } } , \mathcal { E } _ { s _ { c } } )$ and $\mathcal { G } _ { r _ { c } } = ( \nu _ { r _ { c } } , \mathcal { E } _ { r _ { c } } )$ as input, the leaving group vocabulary $\mathcal { X }$ is constructed by extracting subgraphs $\mathcal { G } _ { l _ { c } } = ( \nu _ { l _ { c } } , \mathcal { E } _ { l _ { c } } )$ such that $\smash { \gamma _ { l _ { c } } = \gamma _ { r _ { c } } \setminus \gamma _ { s _ { c } } }$ . Atoms $\left\{ { a } _ { i } \right\}$ in the leaving groups that attach to synthons are marked with a special symbol. We also add three tokens to $\mathcal { X }$ namely START, which indicates the start of synthon completion, END, which indicates that there is no leaving group to add and PAD, which is used to handle variable numbers of synthon components in a minibatch. + +Leaving Group Selection For synthon component $c \leq C$ , where $C$ is the number of connected components in the synthon graph, we use three inputs for leaving group selection – the product representation $\mathbf { c } _ { \mathcal { G } _ { p } }$ , the synthon component representation $\mathbf { c } _ { \mathcal { G } _ { s _ { c } } }$ , and the leaving group representation for the previous synthon component, ${ \bf e } _ { l _ { c - 1 } }$ . The product and synthon representations are learnt using the $\mathrm { M P N } ( \cdot )$ . For each $x _ { i } \in { \mathcal { X } }$ , representations can be learnt by either training independent embedding vectors (ind) or by treating each $x _ { i }$ as a subgraph and using the $\mathrm { M P N } ( \cdot )$ (shared). In the shared setting, we use the same $\mathrm { M P N } ( \cdot )$ as the product and synthons. + +The leaving group probabilities are then computed by combining $\mathbf { c } _ { \mathcal { G } _ { p } } , \mathbf { c } _ { \mathcal { G } _ { s _ { c } } }$ and $\mathbf { e } _ { l _ { c - 1 } }$ via a single layer neural network and softmax function + +$$ +\hat { q } _ { l _ { c } } = \mathrm { s o f t m a x } \left( \mathbf { U } \tau \left( \mathbf { W } _ { 1 } \mathbf { c } _ { \mathcal { G } _ { p } } + \mathbf { W } _ { 2 } \mathbf { c } _ { \mathcal { G } _ { s _ { c } } } + \mathbf { W } _ { 3 } \mathbf { e } _ { l _ { \left( c - 1 \right) } } \right) \right) , +$$ + +where $\hat { q } _ { l _ { c } }$ is distribution learnt over $\mathcal { X }$ . Using the representation of the previous leaving group ${ \bf e } _ { l _ { c - 1 } }$ allows the model to understand combinations of leaving groups that generate the desired product from the reactants. We also include the product representation $\mathbf { c } _ { \mathcal { G } _ { p } }$ as the synthon graphs are derived from the product graph. + +Training For step $c$ , given the one hot encoding of the true leaving group $q _ { l _ { c } }$ , we minimize the cross-entropy loss + +$$ +\mathcal { L } _ { s } = \sum _ { c = 1 } ^ { C } \mathcal { L } ( \hat { q } _ { l _ { c } } , q _ { l _ { c } } ) . +$$ + +Training utilizes teacher-forcing [Williams and Zipser, 1989] so that the model makes predictions given correct histories. During inference, at every step, we use the representation of leaving group from the previous step with the highest predicted probability. + +Leaving Group Attachment Attaching leaving groups to synthons is a deterministic process and not learnt during training. The task involves identification of the type of bonds to add between attaching atoms in the leaving group (marked during vocabulary construction), and the atom(s) participating in the edit. These bonds can be inferred by applying the valency constraint, which determines the maximum number of neighbors for each atom. The attachment process does not modify any stereochemistry. Given synthons and leaving groups, the attachment process has a $100 \%$ accuracy. The detailed procedure is described in Appendix ??. + +# 3.3 Inference + +Inference is performed using beam search with a log-likelihood scoring function. For a beam width $n$ , we select $n$ edits with highest scores and apply them to the product to obtain $n$ synthons, where each synthon can consist of multiple connected components. The synthons form the nodes for beam search. Each node maintains a cumulative score by aggregating the log-likelihoods of the edit and predicted leaving groups. Leaving group inference starts with a connected component for each synthon, and selects $n$ leaving groups with highest log-likelihoods. From the $n ^ { 2 }$ possibilities, we select $n$ nodes with the highest cumulative scores. This process is repeated until all nodes have a leaving group predicted for each synthon component. + +# 4 Evaluation + +Evaluating retrosynthesis models is challenging as multiple sets of reactants can be generated from the same product. To deal with this, previous works [Coley et al., 2017b, Dai et al., 2019] evaluate the ability of the model to recover retrosynthetic strategies recorded in the dataset. + +Data We use the benchmark dataset USPTO-50k [Schneider et al., 2016] for all our experiments. The dataset contains 50, 000 atom-mapped reactions across 10 reaction classes. We use the same dataset version and splits as provided by [Dai et al., 2019]. The USPTO-50k dataset contains a shortcut in that the product atom with atom-mapping 1 is part of the edit in $\sim 7 5 \%$ of the cases. If the product SMILES is not canonicalized, predictions utilizing operations that depend on the position of the atom or bond will be able to use the shortcut, and overestimate performance. We canonicalize the product SMILES, and reassign atom-mappings to the reactant atoms based on the canonical ordering, which removes the shortcut. Details on the remapping procedure can be found in Appendix ??. + +Evaluation We use the top- $\mathbf { \nabla } \cdot n$ accuracy $( n = 1 , 3 , 5 , 1 0 )$ ) as our evaluation metric, defined as the fraction of examples where the recorded reactants are suggested by the model with rank $\leq n$ . Following prior work [Coley et al., 2017b, Zheng et al., 2019, Dai et al., 2019], we compute the accuracy by comparing the canonical SMILES of predicted reactants to the ground truth. Atom-mapping is excluded from this comparison, but stereochemistry, which describes the relative orientation of atoms in the molecule, is retained. The evaluation is carried out for two settings, with the reaction class being known or unknown. + +Table 1: Top- $n$ exact match accuracy. Best values within each section are highlighted in bold. + +
ModelTop-n Accuracy (%)
Reaction class knownReaction class unknown
1351013510
Template-Based
RETROSIM [Coley et al.,2017b]52.973.881.288.137.354.763.374.1
NEURALSYM [Segler and Waller,2017]55.376.081.485.144.465.372.478.9
GLN [Dai et ai., 2019]64.279.185.290.052.569.075.683.7
DUALTB [Sun et al.,2021]67.784.888.992.055.274.680.586.9
Template-Free
SCROP [Zheng et al.,2019]59.074.878.181.143.760.065.268.7
LV-TRANSFORMER [Chen et al.,2019]----40.565.172.879.4
DUALTF [Sun et al., 2021]65.781.984.785.953.670.774.677.0
Semi-Template-Based
G2Gs [Shi et al.,2020]61.081.386.088.748.967.672.575.5
RETROXPERT [Yan et al.,2020]62.175.878.580.950.461.162.363.4
GRAPHRETRO (ours)63.981.585.288.153.768.372.275.5
+ +Baselines For evaluating overall performance, we compare GRAPHRETRO to nine baselines — four template-based, three template-free, and two semi-template-based methods. These include: + +Template-Based: RETROSIM Coley et al. [2017b] ranks templates for a given target molecule by computing molecular similarities to precedent reactions. NEURALSYM [Segler and Waller, 2017] trains a model to rank templates given a target molecule. GLN [Dai et al., 2019] models the joint distribution of templates and reactants in a hierarchical fashion using logic variables. DUALTB [Sun et al., 2021] uses an energy-based model formulation for retrosynthesis, with additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis prediction). Inference is carried out using reactant candidates obtained by applying an extracted template set to the products. + +Template-Free: SCROP [Zheng et al., 2019], LV-TRANSFORMER [Chen et al., 2019] and DUALTF [Sun et al., 2021] use the Transformer architecture [Vaswani et al., 2017] to output reactant SMILES given a product SMILES. To improve the validity of their suggestions, SCROP include a second Transformer that functions as a syntax correcter. LV-TRANSFORMER uses a latent variable mixture model to improve diversity of suggestions. DUALTF utilizes additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis prediction). + +Semi-Template-Based: G2GS [Shi et al., 2020] and RETROXPERT [Yan et al., 2020] first identify synthons, and then expand the synthons into reactants by either sequential generation of atoms and bonds (G2Gs), or using the Transformer architecture (RETROXPERT). The training dataset for the Transformer in [Yan et al., 2020] is augmented with incorrectly predicted synthons with the goal of learning a correction mechanism. + +Results for NEURALSYM are taken from [Dai et al., 2019]. The authors in [Yan et al., 2020] report their performance being affected by the dataset leakage2. Thus, we use the most recent results from their website on the canonicalized dataset. For remaining baselines, we directly use the values reported in their paper. For the synthon completion module, we use the ind configuration given its better empirical performance. + +# 4.1 Overall Performance + +Reaction class unknown As shown in Table 1, when the reaction class is unknown, GRAPHRETRO outperforms G2GS by $4 . 8 \%$ and and RETROXPERT by $3 . 3 \%$ in top-1 accuracy. Performance improvements are also seen for larger $n$ , except for $n = 5$ . Barring DUALTB, the top-1 accuracy is also better than other template-free and template-based methods. For larger $n$ , one reason for lower top- $n$ accuracies than most template-based methods is that templates already contain combinations of leaving group patterns. In contrast, our model learns to discover these during training. A second hypothesis to this end is that simply adding log-likelihood scores from edit prediction and synthon completion models may be suboptimal and bias the beam search in the direction of the more dominating term. We leave it to future work to investigate scoring functions that rank the attachment. + +Reaction class known When the reaction class is known, GRAPHRETRO outperforms G2GS and RETROXPERT by a margin of $3 \%$ and $2 \%$ respectively in top-1 accuracy. GRAPHRETRO also outperforms all the template-free methods in top- $^ n$ accuracy. for GRAPHRETRO are also better than most template-based and template-free methods. When the reaction class is known, RETROSIM and GLN restrict template sets corresponding to the reaction class, thus improving performance. The increased edit prediction performance (Section 4.2) for GRAPHRETRO helps outweigh this factor, achieving comparable or better performance till $n = 5$ . + +# 4.2 Individual Module Performance + +To gain more insight into the working of GRAPHRETRO, we evaluate the top- $\boldsymbol { n }$ accuracy $\mathbf { \nabla } _ { n } =$ $1 , 2 , 3 , 5 )$ of edit prediction and synthon completion modules, along with corresponding ablation studies, with results shown in Table 2. + +Edit Prediction For the edit prediction module, we compare the true edit(s) to top- $\boldsymbol { n }$ edits predicted by the model. We also consider two ablation studies, one where we directly use the initial edit scores without updating them, and the other where we predict edits using atom-pairs instead of existing bonds and atoms. Both design choices lead to improvements in performance, as shown in Table 2. We hypothesize that the larger improvement compared to edit prediction using atom-pairs is due to the easier optimization procedure, with lesser imbalance between labels 1 and 0. + +Synthon Completion For evaluating the synthon completion module, we first apply the true edits to obtain synthons, and compare the true leaving groups to top- $\mathbf { \nabla } \cdot n$ leaving groups predicted by the model. We test the performance of both the ind and shared configurations. Both configurations perform similarly, and are able to identify $\sim 9 7 \%$ (close to its upper bound of $9 9 . 7 \%$ ) of the true leaving groups in its top-5 choices, when the reaction class is known. The top-1, 3 and 5 accuracies of the synthon completion for unknown reaction classes for G2Gs are $6 1 . 1 \%$ , $8 1 . 5 \%$ and $8 6 . 7 \%$ respectively, while ours are $7 5 . 6 \%$ , $9 2 . 5 \%$ and $9 6 . 1 \%$ , indicating a $10 \%$ performance improvement using a classification formulation over the generative one adopted by G2Gs. + +Table 2: Performance Study of edit prediction and synthon completion modules + +
SettingTop-n Accuracy (%)
Reaction class knownReaction class unknown
12351235
Edit Prediction84.692.293.794.570.885.189.592.7
- without edit score updates84.392.193.794.570.184.889.492.6
- predicting on atom pairs81.989.590.992.168.683.288.391.8
Synthon Completion (ind)77.489.594.297.675.687.492.596.1
Synthon Completion (shared)76.989.693.997.474.987.792.996.3
+ +# 4.3 Example Predictions + +In Figure 2, we visualize the model predictions and the ground truth for three cases. Figure 2a shows an example where the model identifies both the edits and leaving groups correctly. In Figure 2b, the correct edit is identified but the predicted leaving groups are incorrect. We hypothesize this is due to the fact that in the training set, leaving groups attaching to the carbonyl carbon $\scriptstyle ( \mathbf { C } = \mathbf { O } )$ are small (e.g. -OH, - $\mathrm { - N H _ { 2 } }$ , halides). The true leaving group in this example, however, is large. The model is unable to reason about this and predicts the small leaving group -I. In Figure 2c, the model identifies the edit and consequently the leaving group incorrectly. This highlights a limitation of our model. If the edit is predicted incorrectly, the model cannot suggest the true precursors. + +# 4.4 Limitations + +The simplified and interpretable construction of GRAPHRETRO comes with certain limitations. First, the overall performance of the model is limited by the performance of the edit prediction step. If the predicted edit is incorrect, the true reactants cannot be salvaged. This limitation is partly remedied by our model design, that allows for user intervention to correct the edit. Second, our method is reliant on atom-mapping for extracting edits and leaving groups. Extracting edits directly based on substructure matching currently suffer from false positives, and heuristics to correct for these result in correct edits in only ${ \sim } 9 0 \%$ of the cases. Third, our formulation assumes that we have as many synthons as reactants, which is violated in some reactions. We leave it to future work to extend the model to realize a single reactant from multiple synthons, and introduce more chemically meaningful edit correction mechanisms. + +![](images/9df65c90e84b75ac55b8dc08692726ee93cf492df4b05d29c79c8c792f98fccd.jpg) +Figure 2: Example Predictions. The true edit and incorrect edit (if any) are highlighted in green and red respectively. The true and predicted leaving groups are highlighted in blue. a. Correctly predicted example by the model. b. Correctly predicted edit but incorrectly predicted leaving groups. c. Incorrectly predicted edit and leaving group. + +# 5 Conclusion + +Previous methods for single-step retrosynthesis either restrict prediction to a template set, are insensitive to molecular graph structure or generate molecules from scratch. We address these shortcomings by introducing a graph-based semi-template-based model inspired by a chemist’s workflow, enhancing the interpretability of retrosynthesis models. Given a target molecule, we first identify synthetic building blocks (synthons) which are then realized into valid reactants, thus avoiding molecule generation from scratch. Our model outperforms previous semi-template-methods by significant margins on the benchmark dataset. Future work aims to extend the model to realize a single reactant from multiple synthons, and introduce more chemically meaningful components to improve the synergy between such tools for retrosynthesis prediction and a practitioner’s expertise. + +# Acknowledgements + +This research was supported by the Machine Learning for Pharmaceutical Discovery and Synthesis Consortium at MIT. V.R.S. was also supported by the Zeno Karl Schindler Foundation. C.B. was supported by the Swiss National Science Foundation under the National Center of Competence in Research (NCCR) Catalysis under grant agreement 51NF40 180544. We thank the Leonhard scientific computing cluster at ETH Zürich for providing computational resources. + +# References + +B. Chen, T. Shen, T. S. Jaakkola, and R. Barzilay. Learning to Make Generalizable and Diverse Predictions for Retrosynthesis. In Submission, 2019. +C. W. Coley, R. Barzilay, T. S. Jaakkola, W. H. Green, and K. F. Jensen. Prediction of Organic Reaction Outcomes Using Machine Learning. In ACS Central Science. ACS Publications, 2017a. +C. W. Coley, L. Rogers, W. H. Green, and K. F. Jensen. Computer-Assisted Retrosynthesis Based on Molecular Similarity. ACS Central Science, 3, 2017b. +C. W. Coley, W. Jin, L. Rogers, T. F. Jamison, T. S. Jaakkola, W. H. Green, R. Barzilay, and K. F. Jensen. A graph-convolutional neural network model for the prediction of chemical reactivity. Chemical Science, 10, 2019. +E. Corey and W. T. Wipke. Computer-assisted design of complex organic syntheses. Science, 166 (3902):178–192, 1969. +E. J. Corey. The Logic of Chemical Synthesis: Multistep Synthesis of Complex Carbogenic Molecules (Nobel Lecture). Angewandte Chemie International Edition, 30, 1991. +H. Dai, C. Li, C. Coley, B. Dai, and L. Song. Retrosynthesis Prediction with Conditional Graph Logic Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 32, 2019. +S. Genheden, A. Thakkar, V. Chadimová, J.-L. Reymond, O. Engkvist, and E. Bjerrum. Aizynthfinder: a fast, robust and flexible open-source software for retrosynthetic planning. Journal of cheminformatics, 12(1):1–9, 2020. +J. Gilmer, S. S. Schoenholz, P. F. Riley, O. Vinyals, and G. E. Dahl. Neural Message Passing for Quantum Chemistry. In International Conference on Machine Learning (ICML), volume 70, 2017. +M. Hartenfeller, M. Eberle, P. Meier, C. Nieto-Oberhuber, K.-H. Altmann, G. Schneider, E. Jacoby, and S. Renner. A Collection of Robust Organic Synthesis Reactions for In Silico Molecule Design. In Journal of Chemical Information and Modeling, volume 51. ACS Publications, 2011. +W. Jin, C. Coley, R. Barzilay, and T. Jaakkola. Predicting Organic Reaction Outcomes with WeisfeilerLehman Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 30, 2017. +W. Jin, R. Barzilay, and T. Jaakkola. Junction Tree Variational Autoencoder for Molecular Graph Generation. In International Conference on Machine Learning (ICML), volume 32, 2018. +W. Jin, R. Barzilay, and T. Jaakkola. Composing Molecules with Multiple Property Constraints. In International Conference on Machine Learning (ICML), 2020. +J. Law, Z. Zsoldos, A. Simon, D. Reid, Y. Liu, S. Y. Khew, A. P. Johnson, S. Major, R. A. Wade, and H. Y. Ando. Route Designer: A Retrosynthetic Analysis Tool Utilizing Automated Retrosynthetic Rule Generation. Journal of Chemical Information and Modeling, 49, 2009. +B. Liu, B. Ramsundar, P. Kawthekar, J. Shi, J. Gomes, Q. Luu Nguyen, S. Ho, J. Sloane, P. Wender, and V. Pande. Retrosynthetic Reaction Prediction Using Neural Sequence-to-Sequence Models. In ACS Central Science, volume 3. ACS Publications, 2017. +N. Schneider, N. Stiefl, and G. A. Landrum. What’s What: The (Nearly) Definitive Guide to Reaction Role Assignment. In Journal of Chemical Information and Modeling, volume 56. ACS Publications, 2016. +M. H. Segler and M. P. Waller. Neural-Symbolic Machine Learning for Retrosynthesis and Reaction Prediction. Chemistry–A European Journal, 23, 2017. +C. Shi, M. Xu, H. Guo, M. Zhang, and J. Tang. A graph to graphs framework for retrosynthesis prediction, 2020. +R. Sun, H. Dai, L. Li, S. Kearnes, and B. Dai. Energy-based view of retrosynthesis, 2021. URL https://openreview.net/forum?id $\equiv$ 0Hj3tFCSjUd. +S. Szymkuc, E. P. Gajewska, T. Klucznik, K. Molga, P. Dittwald, M. Startek, M. Bajczyk, and ´ B. A. Grzybowski. Computer-assisted synthetic planning: The end of the beginning. Angewandte Chemie International Edition, 55(20):5904–5937, 2016. +A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin. Attention is All You Need. In Advances in Neural Information Processing Systems (NeurIPS), volume 30, 2017. +D. Weininger. SMILES, a Chemical Language and Information System. Journal of Chemical Information and Computer Sciences, 28, 1988. +R. J. Williams and D. Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural Networks. In Neural Computation, volume 1. MIT Press, 1989. +C. Yan, Q. Ding, P. Zhao, S. Zheng, J. YANG, Y. Yu, and J. Huang. Retroxpert: Decompose retrosynthesis prediction like a chemist. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin, editors, Advances in Neural Information Processing Systems, volume 33, pages 11248–11258. Curran Associates, Inc., 2020. URL https://proceedings.neurips.cc/paper/2020/file/ 819f46e52c25763a55cc642422644317-Paper.pdf. +S. Zheng, J. Rao, Z. Zhang, J. Xu, and Y. Yang. Predicting Retrosynthetic Reactions using SelfCorrected Transformer Neural Networks. In Journal of Chemical Information and Modeling. ACS Publications, 2019. \ No newline at end of file diff --git a/parse/train/LyjH88yV7F/LyjH88yV7F_content_list.json b/parse/train/LyjH88yV7F/LyjH88yV7F_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..12a86b15c8e12b399048ebd3f6b76dfe757fc135 --- /dev/null +++ b/parse/train/LyjH88yV7F/LyjH88yV7F_content_list.json @@ -0,0 +1,1040 @@ +[ + { + "type": "text", + "text": "Learning Graph Models for Retrosynthesis Prediction ", + "text_level": 1, + "bbox": [ + 330, + 122, + 666, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vignesh Ram Somnath1 ", + "bbox": [ + 228, + 226, + 392, + 241 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Charlotte Bunne1 ", + "bbox": [ + 455, + 224, + 578, + 241 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Connor W. Coley2 ", + "bbox": [ + 642, + 224, + 769, + 241 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Andreas Krause1 Regina Barzilay3 ", + "bbox": [ + 369, + 261, + 629, + 276 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1Department of Computer Science, ETH 2Department of Chemical Engineering, MIT 3Computer Science and Artificial Intelligence Lab, MIT 1{vsomnath, bunnec, krausea}@ethz.ch, 2ccoley@mit.edu, 3regina@csail.mit.edu ", + "bbox": [ + 186, + 289, + 815, + 347 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 382, + 535, + 400 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Retrosynthesis prediction is a fundamental problem in organic synthesis, where the task is to identify precursor molecules that can be used to synthesize a target molecule. A key consideration in building neural models for this task is aligning model design with strategies adopted by chemists. Building on this viewpoint, this paper introduces a graph-based approach that capitalizes on the idea that the graph topology of precursor molecules is largely unaltered during a chemical reaction. The model first predicts the set of graph edits transforming the target into incomplete molecules called synthons. Next, the model learns to expand synthons into complete molecules by attaching relevant leaving groups. This decomposition simplifies the architecture, making its predictions more interpretable, and also amenable to manual correction. Our model achieves a top-1 accuracy of $5 3 . 7 \\%$ , outperforming previous template-free and semi-template-based methods. ", + "bbox": [ + 233, + 419, + 766, + 584 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 618, + 310, + 636 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Retrosynthesis prediction, first formalized by E. J. Corey [Corey, 1991] is a fundamental problem in organic synthesis that attempts to identify a series of chemical transformations for synthesizing a target molecule. In the single-step formulation, the task is to identify a set of reactant molecules given a target. Beyond simple reactions, many practical tasks involving complex organic molecules are difficult even for expert chemists. As a result, substantial experimental exploration is needed to cover for deficiencies of analytical approaches. This has motivated interest in computer-assisted retrosynthesis [Corey and Wipke, 1969], with a recent surge in machine learning methods [Chen et al., 2019, Coley et al., 2017b, Dai et al., 2019, Zheng et al., 2019, Genheden et al., 2020]. ", + "bbox": [ + 174, + 654, + 825, + 765 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Computationally, the main challenge is how to explore the combinatorial space of reactions that can yield the target molecule. Largely, previous methods for retrosynthesis prediction can be divided into template-based [Coley et al., 2017b, Dai et al., 2019, Segler and Waller, 2017] and template-free [Chen et al., 2019, Zheng et al., 2019] approaches. Template-based methods match a target molecule against a large set of templates, which are molecular subgraph patterns that highlight changes during a chemical reaction. Despite their interpretability, these methods fail to generalize to new reactions. Template-free methods bypass templates by learning a direct mapping from the SMILES [Weininger, 1988] representations of the product to reactants. Despite their greater generalization potential, these methods generate reactant SMILES character by character, increasing generation complexity. ", + "bbox": [ + 174, + 771, + 825, + 896 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/e988f2e4a9f13ae6fa41934806006c24c87183942b7fd7f824274aee3a6237f9.jpg", + "image_caption": [ + "Figure 1: Overview of Our Approach. a. Edit Prediction. We train a model to learn a distribution over possible graph edits. In this case, the correct edit corresponds to breaking the bond marked in red. Applying this edit produces two synthons. b. Synthon Completion. Another model is trained to pick candidate leaving groups (blue) for each synthon from a discrete vocabulary, which are then attached to produce the final reactants. " + ], + "image_footnote": [], + "bbox": [ + 174, + 103, + 812, + 292 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Another important consideration in building retrosynthesis models is aligning model design with strategies adopted by expert chemists. These strategies are influenced by fundamental properties of chemical reactions, independent of complexity level: (i.) the product atoms are always a subset of the reactant atoms1, and (ii.) the molecular graph topology is largely unaltered from products to reactants. For example, in the standard retrosynthesis dataset, only $6 . 3 \\%$ of the atoms in the product undergo any change in connectivity. ", + "bbox": [ + 174, + 404, + 825, + 488 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This consideration has received more attention in recent semi-template-based methods [Shi et al., 2020, Yan et al., 2020], that generate reactants from a product in two stages: (i.) first identify intermediate molecules called synthons, (ii.) and then complete synthons into reactants by sequential generation of atoms or SMILES characters.. Our model GRAPHRETRO also uses a similar workflow. However, we avoid sequential generation for completing synthons by instead selecting subgraphs called leaving groups from a precomputed vocabulary. This vocabulary is constructed during preprocessing by extracting subgraphs that differ between a synthon and the corresponding reactant. The vocabulary has a small size (170 for USPTO-50k) indicating remarkable redundancy, while covering $9 9 . 7 \\%$ of the test set. Operating at the level of these subgraphs greatly reduces the complexity of reactant generation, with improved empirical performance. This formulation also simplifies our architecture, and makes our predictions more transparent, interpretable and amenable to manual correction. ", + "bbox": [ + 174, + 494, + 825, + 646 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The benchmark dataset for evaluating retrosynthesis models is USPTO-50k [Schneider et al., 2016], which consists of 50000 reactions across 10 reaction classes. The dataset contains an unexpected shortcut towards predicting the edit, in that the product atom with atom-mapping 1 is part of the edit in $7 5 \\%$ of the cases, allowing predictions that depend on the position of the atom to overestimate performance. We canonicalize the product SMILES and remap the existing dataset, thereby removing the shortcut. On this remapped dataset, GRAPHRETRO achieves a top-1 accuracy of $5 3 . 7 \\%$ when the reaction class is not known, outperforming both template-free and semi-template-based methods. ", + "bbox": [ + 174, + 652, + 825, + 750 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 770, + 321, + 786 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Retrosynthesis Prediction Existing machine learning methods for retrosynthesis prediction can be divided into template-based, template-free and recent semi-template-based approaches. ", + "bbox": [ + 173, + 801, + 823, + 830 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Template-Based: Templates are either hand-crafted by experts [Hartenfeller et al., 2011, Szymkuc´ et al., 2016], or extracted algorithmically from large databases Coley et al. [2017a], Law et al. [2009]. Exhaustively applying large template sets is expensive due to the involved subgraph matching procedure. Template-based methods therefore utilize different ways of prioritizing templates, by either learning a conditional distribution over the template set [Segler and Waller, 2017], ranking templates based on molecular similarities to precedent reactions [Coley et al., 2017b] or directly modelling the joint distribution of templates and reactants using logic variables [Dai et al., 2019]. Despite their interpretability, these methods fail to generalize outside their rule set. ", + "bbox": [ + 181, + 843, + 825, + 886 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 197, + 92, + 825, + 174 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Template-Free: Template-free methods [Liu et al., 2017, Zheng et al., 2019, Chen et al., 2019] learn a direct transformation from products to reactants using architectures from neural machine translation and a string based representation of molecules called SMILES [Weininger, 1988]. Linearizing molecules as strings does not utilize the inherently rich chemical structure. In addition, the reactant SMILES are generated from scratch, character by character. Attempts have been made to improve validity by adding a syntax correcter [Zheng et al., 2019] and a mixture model to improve diversity of suggestions [Chen et al., 2019], but the performance remains worse than [Dai et al., 2019] on the standard retrosynthesis dataset. Sun et al. [2021] formulate retrosynthesis using energy-based models, with additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis) prediction. ", + "bbox": [ + 183, + 183, + 825, + 321 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Semi-Template-Based: Our work is closely related to recently proposed semi-template-based methods [Shi et al., 2020, Yan et al., 2020], which first identify synthons and then expand synthons into reactants through sequential generation using either a graph generative model [Shi et al., 2020] or a Transformer [Yan et al., 2020]. To reduce the complexity of reactant generation, we instead complete synthons using subgraphs called leaving groups selected from a precomputed vocabulary. This allows us to view synthon completion as a classification problem instead of a generative one. We also utilize the dependency graph between possible edits, and update edit predictions using a message passing network (MPN) [Gilmer et al., 2017] on this graph. Both innovations together yield a $4 . 8 \\%$ and $3 . 3 \\%$ performance improvement respectively over previous semi-template-based methods. ", + "bbox": [ + 183, + 330, + 825, + 468 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Reaction Center Identification The reaction center covers a small number of participating atoms involved in the reaction. Our work is also related to models that predict reaction outcomes by learning to rank atom pairs based on their likelihood to be in the reaction center [Coley et al., 2019, Jin et al., 2017]. The task of identifying the reaction center is related to the step of deriving the synthons in our formulation. Our work departs from [Coley et al., 2019, Jin et al., 2017] as we utilize the property that new bond formations occur rarely $( \\sim 0 . 1 \\% )$ from products to synthons, allowing us to predict a score only for existing bonds and atoms and reduce prediction complexity from $O ( N ^ { \\bar { 2 } } )$ to $O ( N )$ . We also utilize the dependency graph between possible edits, and update edit predictions using a MPN on this graph. ", + "bbox": [ + 174, + 487, + 825, + 613 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Utilizing Substructures Substructures have been utilized in various tasks from sentence generation by fusing phrases to molecule generation and optimization [Jin et al., 2018, 2020]. Our work is closely related to [Jin et al., 2020] which uses precomputed substructures as building blocks for property-conditioned molecule generation. However, instead of precomputing, synthons —analogous building blocks for reactants— are indirectly learnt during training. ", + "bbox": [ + 174, + 631, + 825, + 702 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Model Design ", + "text_level": 1, + "bbox": [ + 174, + 724, + 320, + 742 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our approach leverages the property that graph topology is largely unaltered from products to reactants. To achieve this, we first derive suitable building blocks from the product called synthons, and then complete them into valid reactants by adding specific functionalities called leaving groups. These derivations, called edits, are characterized by modifications to bonds or hydrogen counts on atoms. We first train a neural network to predict a score for possible edits (Section 3.1). The edit with the highest score is then applied to the product to obtain synthons. Since the number of unique leaving groups are small, we model leaving group selection as a classification problem over a precomputed vocabulary (Section 3.2). To produce candidate reactants, we attach the predicted leaving group to the corresponding synthon through chemically constrained rules. The overall process is outlined in Figure 1. Before describing the two modules, we introduce relevant preliminaries that set the background for the remainder of the paper. ", + "bbox": [ + 174, + 758, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Retrosynthesis Prediction A retrosynthesis pair $R$ is described by a pair of molecular graphs $( \\mathcal { G } _ { p } , \\mathcal { G } _ { r } )$ , where $\\mathcal { G } _ { p }$ are the products and $\\mathcal { G } _ { r }$ the reactants. A molecular graph is described as $\\mathcal { G } = \\mathbf { \\bar { \\rho } } ( \\mathcal { V } , \\mathcal { E } )$ with atoms $\\nu$ as nodes and bonds $\\mathcal { E }$ as edges. Prior work has focused on the single product case, while reactants can have multiple connected components, i.e. $\\mathcal { G } _ { r } = \\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }$ . Retrosynthesis pairs are atom-mapped so that each product atom has a unique corresponding reactant atom. The retrosynthesis task then, is to infer $\\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }$ given $\\mathcal { G } _ { p }$ . ", + "bbox": [ + 173, + 90, + 825, + 176 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Edits Edits consist of (i.) atom pairs $\\left\\{ \\left( a _ { i } , a _ { j } \\right) \\right\\}$ where the bond type changes from products to reactants, and (ii.) atoms $\\left\\{ { a } _ { i } \\right\\}$ where the number of hydrogens attached to the atom change from products to reactants. We denote the set of edits by $E$ . Since retrosynthesis pairs in the training set are atom-mapped, edits can be automatically identified by comparing the atoms and atom pairs in the product to their corresponding reactant counterparts. ", + "bbox": [ + 173, + 189, + 825, + 260 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Synthons and Leaving Groups Applying edits $E$ to the product $\\mathcal { G } _ { p }$ results in incomplete molecules called synthons. Synthons are analogous to rationales or building blocks, which are expanded into valid reactants by adding specific functionalities called leaving groups that are responsible for its reactivity. We denote synthons by $\\mathcal { G } _ { s }$ and leaving groups by $\\mathcal { G } _ { l }$ . We further assume that synthons and leaving groups have the same number of connected components as the reactants, i.e $\\mathcal { G } _ { s } \\doteq \\{ \\mathcal { G } _ { s _ { c } } \\} _ { c = 1 } ^ { C }$ and $\\mathcal { G } _ { l } = \\{ \\mathcal { G } _ { l _ { c } } ^ { \\star } \\} _ { c = 1 } ^ { C }$ . This assumption holds for $9 9 . 9 7 \\%$ reactions in the training set. ", + "bbox": [ + 173, + 275, + 825, + 359 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Formally, our model generates reactants by first predicting the set of edits $E$ that transform $\\mathcal { G } _ { p }$ into $\\mathcal { G } _ { s }$ , followed by predicting a leaving group $\\mathcal { G } _ { l _ { c } }$ to attach to each synthon $\\mathcal { G } _ { s _ { c } }$ . The model is defined as ", + "bbox": [ + 171, + 364, + 823, + 393 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e5989ffe48f40113cab8f00a06662537b577c1fdbf3a8f9d8153b9ad86f85418.jpg", + "text": "$$\nP ( \\mathcal G _ { r } | \\mathcal G _ { p } ) = \\sum _ { E , \\mathcal G _ { l } } P ( E | \\mathcal G _ { p } ) P ( \\mathcal G _ { l } | \\mathcal G _ { p } , \\mathcal G _ { s } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 364, + 407, + 632, + 443 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { G } _ { s } , \\mathcal { G } _ { r }$ are deterministic given $E , { \\mathcal { G } } _ { l }$ , and $\\mathcal { G } _ { p }$ . ", + "bbox": [ + 173, + 449, + 509, + 465 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 Edit Prediction ", + "text_level": 1, + "bbox": [ + 174, + 481, + 318, + 496 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For a given retrosynthesis pair $R = ( \\mathcal G _ { p } , \\mathcal G _ { r } )$ , we predict an edit score only for existing bonds and atoms, instead of every atom pair as in [Coley et al., 2019, Jin et al., 2017]. This choice is motivated by the low frequency $( \\sim 0 . 1 \\% )$ of new bond formations in the training set examples. Coupled with the sparsity of molecular graphs, this reduces the prediction complexity from $O ( N ^ { 2 } )$ to $O ( N )$ for a product with $N$ atoms. Our edit prediction model has variants tailored to single and multiple edit prediction. Since $9 5 \\%$ of the training set consists of single edit examples, the remainder of this section describes the setup for single edit prediction. A detailed description of our multiple edit prediction model can be found in Appendix ??. ", + "bbox": [ + 173, + 506, + 825, + 619 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Each bond $( u , v )$ in $\\mathcal { G } _ { p }$ is associated with a label $y _ { u v k } \\in \\{ 0 , 1 \\}$ indicating whether its bond type $k$ has changed from the products to reactants. Each atom $u$ is associated with a label $y _ { u } \\in \\{ 0 , \\bar { 1 } \\}$ indicating a change in hydrogen count. We predict edit scores using representations that are learnt using a graph encoder. ", + "bbox": [ + 173, + 625, + 825, + 681 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Graph Encoder To obtain atom representations, we use a variant of the message passing network (MPN) described in [Gilmer et al., 2017]. Each atom $u$ has a feature vector $\\mathbf { x } _ { u }$ indicating its atom type, degree and other properties. Each bond $( u , v )$ has a feature vector $\\mathbf { x } _ { u v }$ indicating its aromaticity, bond type and ring membership. For simplicity, we denote the encoding process by $\\mathrm { M P N } ( \\cdot )$ and describe architectural details in Appendix ??. The MPN computes atom representations $\\{ \\mathbf { c } _ { u } | u \\in \\mathcal { G } \\}$ via ", + "bbox": [ + 173, + 695, + 825, + 779 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b517ef315352815d369d32f3af958c21a2ae42d976e66bdc837220e4bb39c388.jpg", + "text": "$$\n\\{ \\mathbf { c } _ { u } \\} = \\mathrm { M P N } ( \\mathcal { G } , \\{ \\mathbf { x } _ { u } \\} , \\{ \\mathbf { x } _ { u v } \\} _ { v \\in \\mathcal { N } ( u ) } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 367, + 794, + 629, + 813 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { N } ( u )$ denotes the neighbors of atom $u$ . The graph representation $\\mathbf { c } _ { \\mathcal { G } }$ is an aggregation of atom representations, i.e. $\\mathbf { c } _ { \\mathcal { G } } = \\dot { \\sum _ { { u } \\in \\mathcal { V } } } \\mathbf { c } _ { u }$ . When $\\mathcal { G }$ has connected components $\\left\\{ { \\mathcal { G } } _ { i } \\right\\}$ , we get a set of graph representations $\\left\\{ \\mathbf { c } _ { \\mathcal { G } _ { i } } \\right\\}$ . For a bond $( u , v )$ , we define its representation $\\mathbf { c } _ { u v } = ( \\operatorname { A B S } ( \\mathbf { c } _ { u } , \\mathbf { c } _ { v } ) | | \\mathbf { c } _ { u } + \\mathbf { c } _ { v } )$ , where ABS denotes absolute difference and $| |$ refers to concatenation. This ensures our representations are permutation invariant. These representations are then used to predict atom and bond edit scores using corresponding neural networks, ", + "bbox": [ + 174, + 825, + 825, + 911 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/43a6f38c88896496f6b8c1e00b965fa739609189983ee4e111bdef371168642c.jpg", + "text": "$$\n\\begin{array} { r } { \\boldsymbol { s } _ { u } = \\mathbf { u _ { a } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { a } } \\mathbf { c } _ { u } + b ) \\quad } \\\\ { \\boldsymbol { s } _ { u v k } = \\mathbf { u _ { k } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { k } } \\mathbf { c } _ { u v } + b _ { k } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 400, + 87, + 596, + 131 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\tau ( \\cdot )$ is the ReLU activation function. ", + "bbox": [ + 176, + 142, + 457, + 157 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Updating Bond Edit Scores Unlike a typical classification problem where the labels are independent, edits can have possible dependencies between each other. For example, bonds part of a stable system such as an aromatic ring have a greater tendency to remain unchanged (label 0). We attempt to leverage such dependencies to update initial edit scores. To this end, we build a graph with bonds $( u , v )$ as nodes, and introduce an edge between bonds sharing an atom. We use another $\\mathrm { M P N } ( \\cdot )$ on this graph to learn aggregated neighborhood messages $\\mathbf { m } _ { u v }$ , and update the edit scores $s _ { u v k }$ in a manner similar to how LSTMs update representations, ", + "bbox": [ + 173, + 172, + 825, + 270 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/190ca6c12e9d0551c6c507ca3bb0a358e64c6db98378f96a20d19207a9bfc801.jpg", + "text": "$$\n\\begin{array} { r l } & { f _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { f } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { f } } \\mathbf { m } _ { u v } ) } \\\\ & { i _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { i } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { i } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { m } _ { u v k } = \\mathbf { u _ { m } } \\tau ( \\mathbf { W _ { k x } ^ { m } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { m } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { s } _ { u v k } = f _ { u v k } \\cdot s _ { u v k } + i _ { u v k } \\cdot \\tilde { m } _ { u v k } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 369, + 284, + 629, + 362 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Training We train by minimizing the cross-entropy loss over possible bond and atom edits ", + "bbox": [ + 169, + 375, + 781, + 390 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d39b464af053c1ddc554cc80cf10fc8a8cf6434c8681b4503820a67f7447deed.jpg", + "text": "$$\n\\mathcal { L } _ { e } = - \\sum _ { ( \\mathcal { G } _ { p } , E ) } \\left( \\sum _ { ( ( u , v ) , k ) \\in E } y _ { u v k } \\mathrm { l o g } ( \\widetilde s _ { u v k } ) + \\sum _ { u \\in E } y _ { u } \\mathrm { l o g } ( s _ { u } ) \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 287, + 402, + 710, + 454 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The cross-entropy loss enforces the model to learn a distribution over possible edits instead of reasoning about each edit independently, as with the binary cross entropy loss used in [Jin et al., 2017, Coley et al., 2019]. ", + "bbox": [ + 174, + 467, + 825, + 510 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 Synthon Completion ", + "text_level": 1, + "bbox": [ + 174, + 526, + 356, + 542 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Synthons are completed into valid reactants by adding specific functionalities called leaving groups. This involves two complementary tasks: (i.) selecting the appropriate leaving group, and (ii.) attaching the leaving group to the synthon. As ground truth leaving groups are not directly provided, we extract the leaving groups and construct a vocabulary $\\mathcal { X }$ of unique leaving groups during preprocessing. ", + "bbox": [ + 173, + 553, + 825, + 609 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The vocabulary has a limited size ( $| \\mathcal { X } | = 1 7 0$ for a standard dataset with 50, 000 examples, and 72000 synthons) indicating the redundancy of leaving groups used in accomplishing retrosynthetic transformations. This redundancy also allows us to formulate leaving group selection as a classification problem over $\\mathcal { X }$ , while retaining the ability to generate diverse reactants using different combinations of leaving groups. ", + "bbox": [ + 174, + 614, + 825, + 685 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Vocabulary Construction Before constructing the vocabulary, we align connected components of synthon and reactant graphs by comparing atom mapping overlaps. Using aligned pairs $\\mathcal { G } _ { s _ { c } } =$ $( \\gamma _ { s _ { c } } , \\mathcal { E } _ { s _ { c } } )$ and $\\mathcal { G } _ { r _ { c } } = ( \\nu _ { r _ { c } } , \\mathcal { E } _ { r _ { c } } )$ as input, the leaving group vocabulary $\\mathcal { X }$ is constructed by extracting subgraphs $\\mathcal { G } _ { l _ { c } } = ( \\nu _ { l _ { c } } , \\mathcal { E } _ { l _ { c } } )$ such that $\\smash { \\gamma _ { l _ { c } } = \\gamma _ { r _ { c } } \\setminus \\gamma _ { s _ { c } } }$ . Atoms $\\left\\{ { a } _ { i } \\right\\}$ in the leaving groups that attach to synthons are marked with a special symbol. We also add three tokens to $\\mathcal { X }$ namely START, which indicates the start of synthon completion, END, which indicates that there is no leaving group to add and PAD, which is used to handle variable numbers of synthon components in a minibatch. ", + "bbox": [ + 173, + 700, + 825, + 799 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Leaving Group Selection For synthon component $c \\leq C$ , where $C$ is the number of connected components in the synthon graph, we use three inputs for leaving group selection – the product representation $\\mathbf { c } _ { \\mathcal { G } _ { p } }$ , the synthon component representation $\\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }$ , and the leaving group representation for the previous synthon component, ${ \\bf e } _ { l _ { c - 1 } }$ . The product and synthon representations are learnt using the $\\mathrm { M P N } ( \\cdot )$ . For each $x _ { i } \\in { \\mathcal { X } }$ , representations can be learnt by either training independent embedding vectors (ind) or by treating each $x _ { i }$ as a subgraph and using the $\\mathrm { M P N } ( \\cdot )$ (shared). In the shared setting, we use the same $\\mathrm { M P N } ( \\cdot )$ as the product and synthons. ", + "bbox": [ + 173, + 814, + 825, + 911 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The leaving group probabilities are then computed by combining $\\mathbf { c } _ { \\mathcal { G } _ { p } } , \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }$ and $\\mathbf { e } _ { l _ { c - 1 } }$ via a single layer neural network and softmax function ", + "bbox": [ + 173, + 90, + 823, + 119 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/d2fa89696df25b480905fd11b89872899b1206510d6da72f11724cb4e151b106.jpg", + "text": "$$\n\\hat { q } _ { l _ { c } } = \\mathrm { s o f t m a x } \\left( \\mathbf { U } \\tau \\left( \\mathbf { W } _ { 1 } \\mathbf { c } _ { \\mathcal { G } _ { p } } + \\mathbf { W } _ { 2 } \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } } + \\mathbf { W } _ { 3 } \\mathbf { e } _ { l _ { \\left( c - 1 \\right) } } \\right) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 305, + 131, + 691, + 151 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\hat { q } _ { l _ { c } }$ is distribution learnt over $\\mathcal { X }$ . Using the representation of the previous leaving group ${ \\bf e } _ { l _ { c - 1 } }$ allows the model to understand combinations of leaving groups that generate the desired product from the reactants. We also include the product representation $\\mathbf { c } _ { \\mathcal { G } _ { p } }$ as the synthon graphs are derived from the product graph. ", + "bbox": [ + 174, + 164, + 825, + 219 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Training For step $c$ , given the one hot encoding of the true leaving group $q _ { l _ { c } }$ , we minimize the cross-entropy loss ", + "bbox": [ + 173, + 233, + 823, + 263 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/c5878d96a04183a5e264e043e021073accc4e3106f900490a5939023894394b7.jpg", + "text": "$$\n\\mathcal { L } _ { s } = \\sum _ { c = 1 } ^ { C } \\mathcal { L } ( \\hat { q } _ { l _ { c } } , q _ { l _ { c } } ) .\n$$", + "text_format": "latex", + "bbox": [ + 428, + 275, + 570, + 319 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Training utilizes teacher-forcing [Williams and Zipser, 1989] so that the model makes predictions given correct histories. During inference, at every step, we use the representation of leaving group from the previous step with the highest predicted probability. ", + "bbox": [ + 174, + 330, + 823, + 372 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Leaving Group Attachment Attaching leaving groups to synthons is a deterministic process and not learnt during training. The task involves identification of the type of bonds to add between attaching atoms in the leaving group (marked during vocabulary construction), and the atom(s) participating in the edit. These bonds can be inferred by applying the valency constraint, which determines the maximum number of neighbors for each atom. The attachment process does not modify any stereochemistry. Given synthons and leaving groups, the attachment process has a $100 \\%$ accuracy. The detailed procedure is described in Appendix ??. ", + "bbox": [ + 173, + 387, + 825, + 484 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.3 Inference ", + "text_level": 1, + "bbox": [ + 174, + 501, + 279, + 515 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Inference is performed using beam search with a log-likelihood scoring function. For a beam width $n$ , we select $n$ edits with highest scores and apply them to the product to obtain $n$ synthons, where each synthon can consist of multiple connected components. The synthons form the nodes for beam search. Each node maintains a cumulative score by aggregating the log-likelihoods of the edit and predicted leaving groups. Leaving group inference starts with a connected component for each synthon, and selects $n$ leaving groups with highest log-likelihoods. From the $n ^ { 2 }$ possibilities, we select $n$ nodes with the highest cumulative scores. This process is repeated until all nodes have a leaving group predicted for each synthon component. ", + "bbox": [ + 174, + 525, + 826, + 637 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Evaluation ", + "text_level": 1, + "bbox": [ + 174, + 656, + 295, + 672 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluating retrosynthesis models is challenging as multiple sets of reactants can be generated from the same product. To deal with this, previous works [Coley et al., 2017b, Dai et al., 2019] evaluate the ability of the model to recover retrosynthetic strategies recorded in the dataset. ", + "bbox": [ + 174, + 686, + 825, + 728 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Data We use the benchmark dataset USPTO-50k [Schneider et al., 2016] for all our experiments. The dataset contains 50, 000 atom-mapped reactions across 10 reaction classes. We use the same dataset version and splits as provided by [Dai et al., 2019]. The USPTO-50k dataset contains a shortcut in that the product atom with atom-mapping 1 is part of the edit in $\\sim 7 5 \\%$ of the cases. If the product SMILES is not canonicalized, predictions utilizing operations that depend on the position of the atom or bond will be able to use the shortcut, and overestimate performance. We canonicalize the product SMILES, and reassign atom-mappings to the reactant atoms based on the canonical ordering, which removes the shortcut. Details on the remapping procedure can be found in Appendix ??. ", + "bbox": [ + 174, + 742, + 825, + 854 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluation We use the top- $\\mathbf { \\nabla } \\cdot n$ accuracy $( n = 1 , 3 , 5 , 1 0 )$ ) as our evaluation metric, defined as the fraction of examples where the recorded reactants are suggested by the model with rank $\\leq n$ . Following prior work [Coley et al., 2017b, Zheng et al., 2019, Dai et al., 2019], we compute the accuracy by comparing the canonical SMILES of predicted reactants to the ground truth. Atom-mapping is excluded from this comparison, but stereochemistry, which describes the relative orientation of atoms in the molecule, is retained. The evaluation is carried out for two settings, with the reaction class being known or unknown. ", + "bbox": [ + 176, + 869, + 825, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/b50491b8ada14574c6239d28c43d14386b5d359906cdb5f2c186422249a03113.jpg", + "table_caption": [ + "Table 1: Top- $n$ exact match accuracy. Best values within each section are highlighted in bold. " + ], + "table_footnote": [], + "table_body": "
ModelTop-n Accuracy (%)
Reaction class knownReaction class unknown
1351013510
Template-Based
RETROSIM [Coley et al.,2017b]52.973.881.288.137.354.763.374.1
NEURALSYM [Segler and Waller,2017]55.376.081.485.144.465.372.478.9
GLN [Dai et ai., 2019]64.279.185.290.052.569.075.683.7
DUALTB [Sun et al.,2021]67.784.888.992.055.274.680.586.9
Template-Free
SCROP [Zheng et al.,2019]59.074.878.181.143.760.065.268.7
LV-TRANSFORMER [Chen et al.,2019]----40.565.172.879.4
DUALTF [Sun et al., 2021]65.781.984.785.953.670.774.677.0
Semi-Template-Based
G2Gs [Shi et al.,2020]61.081.386.088.748.967.672.575.5
RETROXPERT [Yan et al.,2020]62.175.878.580.950.461.162.363.4
GRAPHRETRO (ours)63.981.585.288.153.768.372.275.5
", + "bbox": [ + 171, + 116, + 826, + 366 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 392, + 825, + 448 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Baselines For evaluating overall performance, we compare GRAPHRETRO to nine baselines — four template-based, three template-free, and two semi-template-based methods. These include: ", + "bbox": [ + 174, + 465, + 825, + 494 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Template-Based: RETROSIM Coley et al. [2017b] ranks templates for a given target molecule by computing molecular similarities to precedent reactions. NEURALSYM [Segler and Waller, 2017] trains a model to rank templates given a target molecule. GLN [Dai et al., 2019] models the joint distribution of templates and reactants in a hierarchical fashion using logic variables. DUALTB [Sun et al., 2021] uses an energy-based model formulation for retrosynthesis, with additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis prediction). Inference is carried out using reactant candidates obtained by applying an extracted template set to the products. ", + "bbox": [ + 181, + 507, + 825, + 619 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Template-Free: SCROP [Zheng et al., 2019], LV-TRANSFORMER [Chen et al., 2019] and DUALTF [Sun et al., 2021] use the Transformer architecture [Vaswani et al., 2017] to output reactant SMILES given a product SMILES. To improve the validity of their suggestions, SCROP include a second Transformer that functions as a syntax correcter. LV-TRANSFORMER uses a latent variable mixture model to improve diversity of suggestions. DUALTF utilizes additional parameterizations and loss terms to enforce the duality between forward (reaction prediction) and backward (retrosynthesis prediction). ", + "bbox": [ + 183, + 626, + 825, + 722 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Semi-Template-Based: G2GS [Shi et al., 2020] and RETROXPERT [Yan et al., 2020] first identify synthons, and then expand the synthons into reactants by either sequential generation of atoms and bonds (G2Gs), or using the Transformer architecture (RETROXPERT). The training dataset for the Transformer in [Yan et al., 2020] is augmented with incorrectly predicted synthons with the goal of learning a correction mechanism. ", + "bbox": [ + 183, + 729, + 825, + 799 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Results for NEURALSYM are taken from [Dai et al., 2019]. The authors in [Yan et al., 2020] report their performance being affected by the dataset leakage2. Thus, we use the most recent results from their website on the canonicalized dataset. For remaining baselines, we directly use the values reported in their paper. For the synthon completion module, we use the ind configuration given its better empirical performance. ", + "bbox": [ + 176, + 813, + 823, + 882 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 Overall Performance ", + "text_level": 1, + "bbox": [ + 174, + 90, + 357, + 106 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Reaction class unknown As shown in Table 1, when the reaction class is unknown, GRAPHRETRO outperforms G2GS by $4 . 8 \\%$ and and RETROXPERT by $3 . 3 \\%$ in top-1 accuracy. Performance improvements are also seen for larger $n$ , except for $n = 5$ . Barring DUALTB, the top-1 accuracy is also better than other template-free and template-based methods. For larger $n$ , one reason for lower top- $n$ accuracies than most template-based methods is that templates already contain combinations of leaving group patterns. In contrast, our model learns to discover these during training. A second hypothesis to this end is that simply adding log-likelihood scores from edit prediction and synthon completion models may be suboptimal and bias the beam search in the direction of the more dominating term. We leave it to future work to investigate scoring functions that rank the attachment. ", + "bbox": [ + 173, + 121, + 825, + 246 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Reaction class known When the reaction class is known, GRAPHRETRO outperforms G2GS and RETROXPERT by a margin of $3 \\%$ and $2 \\%$ respectively in top-1 accuracy. GRAPHRETRO also outperforms all the template-free methods in top- $^ n$ accuracy. for GRAPHRETRO are also better than most template-based and template-free methods. When the reaction class is known, RETROSIM and GLN restrict template sets corresponding to the reaction class, thus improving performance. The increased edit prediction performance (Section 4.2) for GRAPHRETRO helps outweigh this factor, achieving comparable or better performance till $n = 5$ . ", + "bbox": [ + 174, + 271, + 825, + 368 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 Individual Module Performance ", + "text_level": 1, + "bbox": [ + 174, + 396, + 436, + 411 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To gain more insight into the working of GRAPHRETRO, we evaluate the top- $\\boldsymbol { n }$ accuracy $\\mathbf { \\nabla } _ { n } =$ $1 , 2 , 3 , 5 )$ of edit prediction and synthon completion modules, along with corresponding ablation studies, with results shown in Table 2. ", + "bbox": [ + 174, + 426, + 825, + 468 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Edit Prediction For the edit prediction module, we compare the true edit(s) to top- $\\boldsymbol { n }$ edits predicted by the model. We also consider two ablation studies, one where we directly use the initial edit scores without updating them, and the other where we predict edits using atom-pairs instead of existing bonds and atoms. Both design choices lead to improvements in performance, as shown in Table 2. We hypothesize that the larger improvement compared to edit prediction using atom-pairs is due to the easier optimization procedure, with lesser imbalance between labels 1 and 0. ", + "bbox": [ + 173, + 493, + 825, + 577 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Synthon Completion For evaluating the synthon completion module, we first apply the true edits to obtain synthons, and compare the true leaving groups to top- $\\mathbf { \\nabla } \\cdot n$ leaving groups predicted by the model. We test the performance of both the ind and shared configurations. Both configurations perform similarly, and are able to identify $\\sim 9 7 \\%$ (close to its upper bound of $9 9 . 7 \\%$ ) of the true leaving groups in its top-5 choices, when the reaction class is known. The top-1, 3 and 5 accuracies of the synthon completion for unknown reaction classes for G2Gs are $6 1 . 1 \\%$ , $8 1 . 5 \\%$ and $8 6 . 7 \\%$ respectively, while ours are $7 5 . 6 \\%$ , $9 2 . 5 \\%$ and $9 6 . 1 \\%$ , indicating a $10 \\%$ performance improvement using a classification formulation over the generative one adopted by G2Gs. ", + "bbox": [ + 173, + 603, + 825, + 714 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/a7464e4972dde4bef7b44f291b1851eda3f6ff349da317bc359b2a73e891edfc.jpg", + "table_caption": [ + "Table 2: Performance Study of edit prediction and synthon completion modules " + ], + "table_footnote": [], + "table_body": "
SettingTop-n Accuracy (%)
Reaction class knownReaction class unknown
12351235
Edit Prediction84.692.293.794.570.885.189.592.7
- without edit score updates84.392.193.794.570.184.889.492.6
- predicting on atom pairs81.989.590.992.168.683.288.391.8
Synthon Completion (ind)77.489.594.297.675.687.492.596.1
Synthon Completion (shared)76.989.693.997.474.987.792.996.3
", + "bbox": [ + 173, + 767, + 826, + 909 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.3 Example Predictions ", + "text_level": 1, + "bbox": [ + 174, + 92, + 356, + 106 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In Figure 2, we visualize the model predictions and the ground truth for three cases. Figure 2a shows an example where the model identifies both the edits and leaving groups correctly. In Figure 2b, the correct edit is identified but the predicted leaving groups are incorrect. We hypothesize this is due to the fact that in the training set, leaving groups attaching to the carbonyl carbon $\\scriptstyle ( \\mathbf { C } = \\mathbf { O } )$ are small (e.g. -OH, - $\\mathrm { - N H _ { 2 } }$ , halides). The true leaving group in this example, however, is large. The model is unable to reason about this and predicts the small leaving group -I. In Figure 2c, the model identifies the edit and consequently the leaving group incorrectly. This highlights a limitation of our model. If the edit is predicted incorrectly, the model cannot suggest the true precursors. ", + "bbox": [ + 173, + 116, + 825, + 228 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.4 Limitations ", + "text_level": 1, + "bbox": [ + 174, + 243, + 294, + 258 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The simplified and interpretable construction of GRAPHRETRO comes with certain limitations. First, the overall performance of the model is limited by the performance of the edit prediction step. If the predicted edit is incorrect, the true reactants cannot be salvaged. This limitation is partly remedied by our model design, that allows for user intervention to correct the edit. Second, our method is reliant on atom-mapping for extracting edits and leaving groups. Extracting edits directly based on substructure matching currently suffer from false positives, and heuristics to correct for these result in correct edits in only ${ \\sim } 9 0 \\%$ of the cases. Third, our formulation assumes that we have as many synthons as reactants, which is violated in some reactions. We leave it to future work to extend the model to realize a single reactant from multiple synthons, and introduce more chemically meaningful edit correction mechanisms. ", + "bbox": [ + 173, + 268, + 825, + 407 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/9df65c90e84b75ac55b8dc08692726ee93cf492df4b05d29c79c8c792f98fccd.jpg", + "image_caption": [ + "Figure 2: Example Predictions. The true edit and incorrect edit (if any) are highlighted in green and red respectively. The true and predicted leaving groups are highlighted in blue. a. Correctly predicted example by the model. b. Correctly predicted edit but incorrectly predicted leaving groups. c. Incorrectly predicted edit and leaving group. " + ], + "image_footnote": [], + "bbox": [ + 267, + 417, + 710, + 743 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 838, + 299, + 856 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Previous methods for single-step retrosynthesis either restrict prediction to a template set, are insensitive to molecular graph structure or generate molecules from scratch. We address these shortcomings by introducing a graph-based semi-template-based model inspired by a chemist’s workflow, enhancing the interpretability of retrosynthesis models. Given a target molecule, we first identify synthetic building blocks (synthons) which are then realized into valid reactants, thus avoiding molecule generation from scratch. Our model outperforms previous semi-template-methods by significant margins on the benchmark dataset. Future work aims to extend the model to realize a single reactant from multiple synthons, and introduce more chemically meaningful components to improve the synergy between such tools for retrosynthesis prediction and a practitioner’s expertise. ", + "bbox": [ + 174, + 869, + 825, + 911 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 92, + 825, + 174 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgements ", + "text_level": 1, + "bbox": [ + 176, + 194, + 338, + 210 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This research was supported by the Machine Learning for Pharmaceutical Discovery and Synthesis Consortium at MIT. V.R.S. was also supported by the Zeno Karl Schindler Foundation. C.B. was supported by the Swiss National Science Foundation under the National Center of Competence in Research (NCCR) Catalysis under grant agreement 51NF40 180544. We thank the Leonhard scientific computing cluster at ETH Zürich for providing computational resources. ", + "bbox": [ + 174, + 224, + 825, + 295 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 314, + 266, + 330 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "B. Chen, T. Shen, T. S. Jaakkola, and R. Barzilay. Learning to Make Generalizable and Diverse Predictions for Retrosynthesis. In Submission, 2019. \nC. W. Coley, R. Barzilay, T. S. Jaakkola, W. H. Green, and K. F. Jensen. Prediction of Organic Reaction Outcomes Using Machine Learning. In ACS Central Science. ACS Publications, 2017a. \nC. W. Coley, L. Rogers, W. H. Green, and K. F. Jensen. Computer-Assisted Retrosynthesis Based on Molecular Similarity. ACS Central Science, 3, 2017b. \nC. W. Coley, W. Jin, L. Rogers, T. F. Jamison, T. S. Jaakkola, W. H. Green, R. Barzilay, and K. F. Jensen. A graph-convolutional neural network model for the prediction of chemical reactivity. Chemical Science, 10, 2019. \nE. Corey and W. T. Wipke. Computer-assisted design of complex organic syntheses. Science, 166 (3902):178–192, 1969. \nE. J. Corey. The Logic of Chemical Synthesis: Multistep Synthesis of Complex Carbogenic Molecules (Nobel Lecture). Angewandte Chemie International Edition, 30, 1991. \nH. Dai, C. Li, C. Coley, B. Dai, and L. Song. Retrosynthesis Prediction with Conditional Graph Logic Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 32, 2019. \nS. Genheden, A. Thakkar, V. Chadimová, J.-L. Reymond, O. Engkvist, and E. Bjerrum. Aizynthfinder: a fast, robust and flexible open-source software for retrosynthetic planning. Journal of cheminformatics, 12(1):1–9, 2020. \nJ. Gilmer, S. S. Schoenholz, P. F. Riley, O. Vinyals, and G. E. Dahl. Neural Message Passing for Quantum Chemistry. In International Conference on Machine Learning (ICML), volume 70, 2017. \nM. Hartenfeller, M. Eberle, P. Meier, C. Nieto-Oberhuber, K.-H. Altmann, G. Schneider, E. Jacoby, and S. Renner. A Collection of Robust Organic Synthesis Reactions for In Silico Molecule Design. In Journal of Chemical Information and Modeling, volume 51. ACS Publications, 2011. \nW. Jin, C. Coley, R. Barzilay, and T. Jaakkola. Predicting Organic Reaction Outcomes with WeisfeilerLehman Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 30, 2017. \nW. Jin, R. Barzilay, and T. Jaakkola. Junction Tree Variational Autoencoder for Molecular Graph Generation. In International Conference on Machine Learning (ICML), volume 32, 2018. \nW. Jin, R. Barzilay, and T. Jaakkola. Composing Molecules with Multiple Property Constraints. In International Conference on Machine Learning (ICML), 2020. \nJ. Law, Z. Zsoldos, A. Simon, D. Reid, Y. Liu, S. Y. Khew, A. P. Johnson, S. Major, R. A. Wade, and H. Y. Ando. Route Designer: A Retrosynthetic Analysis Tool Utilizing Automated Retrosynthetic Rule Generation. Journal of Chemical Information and Modeling, 49, 2009. \nB. Liu, B. Ramsundar, P. Kawthekar, J. Shi, J. Gomes, Q. Luu Nguyen, S. Ho, J. Sloane, P. Wender, and V. Pande. Retrosynthetic Reaction Prediction Using Neural Sequence-to-Sequence Models. In ACS Central Science, volume 3. ACS Publications, 2017. \nN. Schneider, N. Stiefl, and G. A. Landrum. What’s What: The (Nearly) Definitive Guide to Reaction Role Assignment. In Journal of Chemical Information and Modeling, volume 56. ACS Publications, 2016. \nM. H. Segler and M. P. Waller. Neural-Symbolic Machine Learning for Retrosynthesis and Reaction Prediction. Chemistry–A European Journal, 23, 2017. \nC. Shi, M. Xu, H. Guo, M. Zhang, and J. Tang. A graph to graphs framework for retrosynthesis prediction, 2020. \nR. Sun, H. Dai, L. Li, S. Kearnes, and B. Dai. Energy-based view of retrosynthesis, 2021. URL https://openreview.net/forum?id $\\equiv$ 0Hj3tFCSjUd. \nS. Szymkuc, E. P. Gajewska, T. Klucznik, K. Molga, P. Dittwald, M. Startek, M. Bajczyk, and ´ B. A. Grzybowski. Computer-assisted synthetic planning: The end of the beginning. Angewandte Chemie International Edition, 55(20):5904–5937, 2016. \nA. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin. Attention is All You Need. In Advances in Neural Information Processing Systems (NeurIPS), volume 30, 2017. \nD. Weininger. SMILES, a Chemical Language and Information System. Journal of Chemical Information and Computer Sciences, 28, 1988. \nR. J. Williams and D. Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural Networks. In Neural Computation, volume 1. MIT Press, 1989. \nC. Yan, Q. Ding, P. Zhao, S. Zheng, J. YANG, Y. Yu, and J. Huang. Retroxpert: Decompose retrosynthesis prediction like a chemist. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin, editors, Advances in Neural Information Processing Systems, volume 33, pages 11248–11258. Curran Associates, Inc., 2020. URL https://proceedings.neurips.cc/paper/2020/file/ 819f46e52c25763a55cc642422644317-Paper.pdf. \nS. Zheng, J. Rao, Z. Zhang, J. Xu, and Y. Yang. Predicting Retrosynthetic Reactions using SelfCorrected Transformer Neural Networks. In Journal of Chemical Information and Modeling. ACS Publications, 2019. ", + "bbox": [ + 171, + 329, + 828, + 896 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 83, + 826, + 665 + ], + "page_idx": 10 + } +] \ No newline at end of file diff --git a/parse/train/LyjH88yV7F/LyjH88yV7F_middle.json b/parse/train/LyjH88yV7F/LyjH88yV7F_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5d370ae7a9424e1b9b23aec8b0c92cd3d77a03bc --- /dev/null +++ b/parse/train/LyjH88yV7F/LyjH88yV7F_middle.json @@ -0,0 +1,29296 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 202, + 97, + 408, + 137 + ], + "lines": [ + { + "bbox": [ + 200, + 96, + 412, + 119 + ], + "spans": [ + { + "bbox": [ + 200, + 96, + 412, + 119 + ], + "score": 1.0, + "content": "Learning Graph Models for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 209, + 117, + 402, + 137 + ], + "spans": [ + { + "bbox": [ + 209, + 117, + 402, + 137 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 140, + 179, + 240, + 191 + ], + "lines": [ + { + "bbox": [ + 138, + 178, + 242, + 192 + ], + "spans": [ + { + "bbox": [ + 138, + 178, + 242, + 192 + ], + "score": 1.0, + "content": "Vignesh Ram Somnath1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 279, + 178, + 354, + 191 + ], + "lines": [ + { + "bbox": [ + 278, + 178, + 356, + 192 + ], + "spans": [ + { + "bbox": [ + 278, + 178, + 356, + 192 + ], + "score": 1.0, + "content": "Charlotte Bunne1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 393, + 178, + 471, + 191 + ], + "lines": [ + { + "bbox": [ + 391, + 177, + 473, + 193 + ], + "spans": [ + { + "bbox": [ + 391, + 177, + 473, + 193 + ], + "score": 1.0, + "content": "Connor W. Coley2", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 226, + 207, + 385, + 219 + ], + "lines": [ + { + "bbox": [ + 223, + 203, + 387, + 223 + ], + "spans": [ + { + "bbox": [ + 223, + 203, + 387, + 223 + ], + "score": 1.0, + "content": "Andreas Krause1 Regina Barzilay3", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 114, + 229, + 499, + 275 + ], + "lines": [ + { + "bbox": [ + 223, + 228, + 389, + 242 + ], + "spans": [ + { + "bbox": [ + 223, + 228, + 389, + 242 + ], + "score": 1.0, + "content": "1Department of Computer Science, ETH", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 214, + 239, + 397, + 255 + ], + "spans": [ + { + "bbox": [ + 214, + 239, + 397, + 255 + ], + "score": 1.0, + "content": "2Department of Chemical Engineering, MIT", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 192, + 251, + 419, + 266 + ], + "spans": [ + { + "bbox": [ + 192, + 251, + 419, + 266 + ], + "score": 1.0, + "content": "3Computer Science and Artificial Intelligence Lab, MIT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 112, + 262, + 499, + 277 + ], + "spans": [ + { + "bbox": [ + 112, + 262, + 499, + 277 + ], + "score": 1.0, + "content": "1{vsomnath, bunnec, krausea}@ethz.ch, 2ccoley@mit.edu, 3regina@csail.mit.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 283, + 303, + 328, + 317 + ], + "lines": [ + { + "bbox": [ + 282, + 303, + 330, + 317 + ], + "spans": [ + { + "bbox": [ + 282, + 303, + 330, + 317 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 332, + 469, + 463 + ], + "lines": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "Retrosynthesis prediction is a fundamental problem in organic synthesis, where", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "the task is to identify precursor molecules that can be used to synthesize a target", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 352, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 470, + 367 + ], + "score": 1.0, + "content": "molecule. A key consideration in building neural models for this task is aligning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 365, + 470, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 470, + 377 + ], + "score": 1.0, + "content": "model design with strategies adopted by chemists. Building on this viewpoint,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 376, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 470, + 388 + ], + "score": 1.0, + "content": "this paper introduces a graph-based approach that capitalizes on the idea that the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 387, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 469, + 398 + ], + "score": 1.0, + "content": "graph topology of precursor molecules is largely unaltered during a chemical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 397, + 469, + 410 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 469, + 410 + ], + "score": 1.0, + "content": "reaction. The model first predicts the set of graph edits transforming the target into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 409, + 469, + 420 + ], + "spans": [ + { + "bbox": [ + 142, + 409, + 469, + 420 + ], + "score": 1.0, + "content": "incomplete molecules called synthons. Next, the model learns to expand synthons", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "score": 1.0, + "content": "into complete molecules by attaching relevant leaving groups. This decomposition", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 430, + 469, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 430, + 469, + 442 + ], + "score": 1.0, + "content": "simplifies the architecture, making its predictions more interpretable, and also", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 441, + 470, + 453 + ], + "spans": [ + { + "bbox": [ + 142, + 441, + 439, + 453 + ], + "score": 1.0, + "content": "amenable to manual correction. Our model achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 439, + 441, + 466, + 452 + ], + "score": 0.85, + "content": "5 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 441, + 470, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 452, + 435, + 464 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 435, + 464 + ], + "score": 1.0, + "content": "outperforming previous template-free and semi-template-based methods.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 490, + 190, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 192, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 192, + 506 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "Retrosynthesis prediction, first formalized by E. J. Corey [Corey, 1991] is a fundamental problem", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 528, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 543 + ], + "score": 1.0, + "content": "in organic synthesis that attempts to identify a series of chemical transformations for synthesizing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "a target molecule. In the single-step formulation, the task is to identify a set of reactant molecules", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "given a target. Beyond simple reactions, many practical tasks involving complex organic molecules", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "are difficult even for expert chemists. As a result, substantial experimental exploration is needed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 585 + ], + "score": 1.0, + "content": "to cover for deficiencies of analytical approaches. This has motivated interest in computer-assisted", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "retrosynthesis [Corey and Wipke, 1969], with a recent surge in machine learning methods [Chen", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 475, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 475, + 607 + ], + "score": 1.0, + "content": "et al., 2019, Coley et al., 2017b, Dai et al., 2019, Zheng et al., 2019, Genheden et al., 2020].", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Computationally, the main challenge is how to explore the combinatorial space of reactions that can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "yield the target molecule. Largely, previous methods for retrosynthesis prediction can be divided into", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "template-based [Coley et al., 2017b, Dai et al., 2019, Segler and Waller, 2017] and template-free", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "[Chen et al., 2019, Zheng et al., 2019] approaches. Template-based methods match a target molecule", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "against a large set of templates, which are molecular subgraph patterns that highlight changes during", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "a chemical reaction. Despite their interpretability, these methods fail to generalize to new reactions.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 675, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 507, + 690 + ], + "score": 1.0, + "content": "Template-free methods bypass templates by learning a direct mapping from the SMILES [Weininger,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "1988] representations of the product to reactants. Despite their greater generalization potential, these", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 480, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 480, + 712 + ], + "score": 1.0, + "content": "methods generate reactant SMILES character by character, increasing generation complexity.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 731, + 384, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 202, + 97, + 408, + 137 + ], + "lines": [ + { + "bbox": [ + 200, + 96, + 412, + 119 + ], + "spans": [ + { + "bbox": [ + 200, + 96, + 412, + 119 + ], + "score": 1.0, + "content": "Learning Graph Models for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 209, + 117, + 402, + 137 + ], + "spans": [ + { + "bbox": [ + 209, + 117, + 402, + 137 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 140, + 179, + 240, + 191 + ], + "lines": [ + { + "bbox": [ + 138, + 178, + 242, + 192 + ], + "spans": [ + { + "bbox": [ + 138, + 178, + 242, + 192 + ], + "score": 1.0, + "content": "Vignesh Ram Somnath1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 138, + 178, + 242, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 279, + 178, + 354, + 191 + ], + "lines": [ + { + "bbox": [ + 278, + 178, + 356, + 192 + ], + "spans": [ + { + "bbox": [ + 278, + 178, + 356, + 192 + ], + "score": 1.0, + "content": "Charlotte Bunne1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 278, + 178, + 356, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 393, + 178, + 471, + 191 + ], + "lines": [ + { + "bbox": [ + 391, + 177, + 473, + 193 + ], + "spans": [ + { + "bbox": [ + 391, + 177, + 473, + 193 + ], + "score": 1.0, + "content": "Connor W. Coley2", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 391, + 177, + 473, + 193 + ] + }, + { + "type": "text", + "bbox": [ + 226, + 207, + 385, + 219 + ], + "lines": [ + { + "bbox": [ + 223, + 203, + 387, + 223 + ], + "spans": [ + { + "bbox": [ + 223, + 203, + 387, + 223 + ], + "score": 1.0, + "content": "Andreas Krause1 Regina Barzilay3", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 223, + 203, + 387, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 114, + 229, + 499, + 275 + ], + "lines": [ + { + "bbox": [ + 223, + 228, + 389, + 242 + ], + "spans": [ + { + "bbox": [ + 223, + 228, + 389, + 242 + ], + "score": 1.0, + "content": "1Department of Computer Science, ETH", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 214, + 239, + 397, + 255 + ], + "spans": [ + { + "bbox": [ + 214, + 239, + 397, + 255 + ], + "score": 1.0, + "content": "2Department of Chemical Engineering, MIT", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 192, + 251, + 419, + 266 + ], + "spans": [ + { + "bbox": [ + 192, + 251, + 419, + 266 + ], + "score": 1.0, + "content": "3Computer Science and Artificial Intelligence Lab, MIT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 112, + 262, + 499, + 277 + ], + "spans": [ + { + "bbox": [ + 112, + 262, + 499, + 277 + ], + "score": 1.0, + "content": "1{vsomnath, bunnec, krausea}@ethz.ch, 2ccoley@mit.edu, 3regina@csail.mit.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 112, + 228, + 499, + 277 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 303, + 328, + 317 + ], + "lines": [ + { + "bbox": [ + 282, + 303, + 330, + 317 + ], + "spans": [ + { + "bbox": [ + 282, + 303, + 330, + 317 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 332, + 469, + 463 + ], + "lines": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "Retrosynthesis prediction is a fundamental problem in organic synthesis, where", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "the task is to identify precursor molecules that can be used to synthesize a target", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 352, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 470, + 367 + ], + "score": 1.0, + "content": "molecule. A key consideration in building neural models for this task is aligning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 365, + 470, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 470, + 377 + ], + "score": 1.0, + "content": "model design with strategies adopted by chemists. Building on this viewpoint,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 376, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 470, + 388 + ], + "score": 1.0, + "content": "this paper introduces a graph-based approach that capitalizes on the idea that the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 387, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 469, + 398 + ], + "score": 1.0, + "content": "graph topology of precursor molecules is largely unaltered during a chemical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 397, + 469, + 410 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 469, + 410 + ], + "score": 1.0, + "content": "reaction. The model first predicts the set of graph edits transforming the target into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 409, + 469, + 420 + ], + "spans": [ + { + "bbox": [ + 142, + 409, + 469, + 420 + ], + "score": 1.0, + "content": "incomplete molecules called synthons. Next, the model learns to expand synthons", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "score": 1.0, + "content": "into complete molecules by attaching relevant leaving groups. This decomposition", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 430, + 469, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 430, + 469, + 442 + ], + "score": 1.0, + "content": "simplifies the architecture, making its predictions more interpretable, and also", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 441, + 470, + 453 + ], + "spans": [ + { + "bbox": [ + 142, + 441, + 439, + 453 + ], + "score": 1.0, + "content": "amenable to manual correction. Our model achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 439, + 441, + 466, + 452 + ], + "score": 0.85, + "content": "5 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 441, + 470, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 452, + 435, + 464 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 435, + 464 + ], + "score": 1.0, + "content": "outperforming previous template-free and semi-template-based methods.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5, + "bbox_fs": [ + 141, + 333, + 470, + 464 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 490, + 190, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 192, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 192, + 506 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "Retrosynthesis prediction, first formalized by E. J. Corey [Corey, 1991] is a fundamental problem", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 528, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 543 + ], + "score": 1.0, + "content": "in organic synthesis that attempts to identify a series of chemical transformations for synthesizing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "a target molecule. In the single-step formulation, the task is to identify a set of reactant molecules", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "given a target. Beyond simple reactions, many practical tasks involving complex organic molecules", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "are difficult even for expert chemists. As a result, substantial experimental exploration is needed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 585 + ], + "score": 1.0, + "content": "to cover for deficiencies of analytical approaches. This has motivated interest in computer-assisted", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "retrosynthesis [Corey and Wipke, 1969], with a recent surge in machine learning methods [Chen", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 475, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 475, + 607 + ], + "score": 1.0, + "content": "et al., 2019, Coley et al., 2017b, Dai et al., 2019, Zheng et al., 2019, Genheden et al., 2020].", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 518, + 506, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Computationally, the main challenge is how to explore the combinatorial space of reactions that can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "yield the target molecule. Largely, previous methods for retrosynthesis prediction can be divided into", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "template-based [Coley et al., 2017b, Dai et al., 2019, Segler and Waller, 2017] and template-free", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "[Chen et al., 2019, Zheng et al., 2019] approaches. Template-based methods match a target molecule", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "against a large set of templates, which are molecular subgraph patterns that highlight changes during", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "a chemical reaction. Despite their interpretability, these methods fail to generalize to new reactions.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 675, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 507, + 690 + ], + "score": 1.0, + "content": "Template-free methods bypass templates by learning a direct mapping from the SMILES [Weininger,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "1988] representations of the product to reactants. Despite their greater generalization potential, these", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 480, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 480, + 712 + ], + "score": 1.0, + "content": "methods generate reactant SMILES character by character, increasing generation complexity.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 610, + 507, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 497, + 232 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 497, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 497, + 232 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 497, + 232 + ], + "score": 0.971, + "type": "image", + "image_path": "e988f2e4a9f13ae6fa41934806006c24c87183942b7fd7f824274aee3a6237f9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 497, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 132.0, + 497, + 182.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 182.0, + 497, + 232.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "score": 1.0, + "content": "Figure 1: Overview of Our Approach. a. Edit Prediction. We train a model to learn a distribution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "over possible graph edits. In this case, the correct edit corresponds to breaking the bond marked in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "red. Applying this edit produces two synthons. b. Synthon Completion. Another model is trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "to pick candidate leaving groups (blue) for each synthon from a discrete vocabulary, which are then", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 288, + 262, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 262, + 299 + ], + "score": 1.0, + "content": "attached to produce the final reactants.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "Another important consideration in building retrosynthesis models is aligning model design with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "score": 1.0, + "content": "strategies adopted by expert chemists. These strategies are influenced by fundamental properties of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "chemical reactions, independent of complexity level: (i.) the product atoms are always a subset of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 353, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 507, + 366 + ], + "score": 1.0, + "content": "reactant atoms1, and (ii.) the molecular graph topology is largely unaltered from products to reactants.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 335, + 378 + ], + "score": 1.0, + "content": "For example, in the standard retrosynthesis dataset, only", + "type": "text" + }, + { + "bbox": [ + 335, + 365, + 358, + 375 + ], + "score": 0.86, + "content": "6 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "of the atoms in the product undergo", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 376, + 217, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 217, + 389 + ], + "score": 1.0, + "content": "any change in connectivity.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "This consideration has received more attention in recent semi-template-based methods [Shi et al., 2020,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Yan et al., 2020], that generate reactants from a product in two stages: (i.) first identify intermediate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "molecules called synthons, (ii.) and then complete synthons into reactants by sequential generation of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "atoms or SMILES characters.. Our model GRAPHRETRO also uses a similar workflow. However, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 434, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 449 + ], + "score": 1.0, + "content": "avoid sequential generation for completing synthons by instead selecting subgraphs called leaving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "groups from a precomputed vocabulary. This vocabulary is constructed during preprocessing by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "extracting subgraphs that differ between a synthon and the corresponding reactant. The vocabulary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 465, + 481 + ], + "score": 1.0, + "content": "has a small size (170 for USPTO-50k) indicating remarkable redundancy, while covering", + "type": "text" + }, + { + "bbox": [ + 466, + 468, + 493, + 479 + ], + "score": 0.86, + "content": "9 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "the test set. Operating at the level of these subgraphs greatly reduces the complexity of reactant", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "generation, with improved empirical performance. This formulation also simplifies our architecture,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 502, + 483, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 483, + 513 + ], + "score": 1.0, + "content": "and makes our predictions more transparent, interpretable and amenable to manual correction.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "The benchmark dataset for evaluating retrosynthesis models is USPTO-50k [Schneider et al., 2016],", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "which consists of 50000 reactions across 10 reaction classes. The dataset contains an unexpected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "shortcut towards predicting the edit, in that the product atom with atom-mapping 1 is part of the edit", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 117, + 563 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 117, + 550, + 137, + 561 + ], + "score": 0.88, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "of the cases, allowing predictions that depend on the position of the atom to overestimate", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 560, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 575 + ], + "score": 1.0, + "content": "performance. We canonicalize the product SMILES and remap the existing dataset, thereby removing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 438, + 584 + ], + "score": 1.0, + "content": "the shortcut. On this remapped dataset, GRAPHRETRO achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 439, + 572, + 466, + 582 + ], + "score": 0.87, + "content": "5 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "when the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 583, + 496, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 496, + 595 + ], + "score": 1.0, + "content": "reaction class is not known, outperforming both template-free and semi-template-based methods.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 610, + 197, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 198, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 198, + 625 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 504, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 649 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction Existing machine learning methods for retrosynthesis prediction can", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 647, + 467, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 467, + 659 + ], + "score": 1.0, + "content": "be divided into template-based, template-free and recent semi-template-based approaches.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 111, + 668, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 111, + 668, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 111, + 668, + 506, + 681 + ], + "score": 1.0, + "content": "Template-Based: Templates are either hand-crafted by experts [Hartenfeller et al., 2011, Szymkuc´", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 120, + 679, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 120, + 679, + 506, + 691 + ], + "score": 1.0, + "content": "et al., 2016], or extracted algorithmically from large databases Coley et al. [2017a], Law et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 120, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 120, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "[2009]. Exhaustively applying large template sets is expensive due to the involved subgraph", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 121, + 712, + 193, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 195, + 725 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 195, + 725 + ], + "score": 1.0, + "content": "1ignoring impurities", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 70, + 178, + 80 + ], + "lines": [ + { + "bbox": [ + 105, + 69, + 179, + 81 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 179, + 81 + ], + "score": 1.0, + "content": "a Edit Prediction", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 497, + 232 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 497, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 497, + 232 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 497, + 232 + ], + "score": 0.971, + "type": "image", + "image_path": "e988f2e4a9f13ae6fa41934806006c24c87183942b7fd7f824274aee3a6237f9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 497, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 132.0, + 497, + 182.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 182.0, + 497, + 232.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "score": 1.0, + "content": "Figure 1: Overview of Our Approach. a. Edit Prediction. We train a model to learn a distribution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "over possible graph edits. In this case, the correct edit corresponds to breaking the bond marked in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "red. Applying this edit produces two synthons. b. Synthon Completion. Another model is trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "to pick candidate leaving groups (blue) for each synthon from a discrete vocabulary, which are then", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 288, + 262, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 262, + 299 + ], + "score": 1.0, + "content": "attached to produce the final reactants.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "Another important consideration in building retrosynthesis models is aligning model design with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "score": 1.0, + "content": "strategies adopted by expert chemists. These strategies are influenced by fundamental properties of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "chemical reactions, independent of complexity level: (i.) the product atoms are always a subset of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 353, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 507, + 366 + ], + "score": 1.0, + "content": "reactant atoms1, and (ii.) the molecular graph topology is largely unaltered from products to reactants.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 335, + 378 + ], + "score": 1.0, + "content": "For example, in the standard retrosynthesis dataset, only", + "type": "text" + }, + { + "bbox": [ + 335, + 365, + 358, + 375 + ], + "score": 0.86, + "content": "6 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "of the atoms in the product undergo", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 376, + 217, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 217, + 389 + ], + "score": 1.0, + "content": "any change in connectivity.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 321, + 507, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "This consideration has received more attention in recent semi-template-based methods [Shi et al., 2020,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Yan et al., 2020], that generate reactants from a product in two stages: (i.) first identify intermediate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "molecules called synthons, (ii.) and then complete synthons into reactants by sequential generation of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "atoms or SMILES characters.. Our model GRAPHRETRO also uses a similar workflow. However, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 434, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 449 + ], + "score": 1.0, + "content": "avoid sequential generation for completing synthons by instead selecting subgraphs called leaving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "groups from a precomputed vocabulary. This vocabulary is constructed during preprocessing by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "extracting subgraphs that differ between a synthon and the corresponding reactant. The vocabulary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 465, + 481 + ], + "score": 1.0, + "content": "has a small size (170 for USPTO-50k) indicating remarkable redundancy, while covering", + "type": "text" + }, + { + "bbox": [ + 466, + 468, + 493, + 479 + ], + "score": 0.86, + "content": "9 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "the test set. Operating at the level of these subgraphs greatly reduces the complexity of reactant", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "generation, with improved empirical performance. This formulation also simplifies our architecture,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 502, + 483, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 483, + 513 + ], + "score": 1.0, + "content": "and makes our predictions more transparent, interpretable and amenable to manual correction.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 391, + 507, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "The benchmark dataset for evaluating retrosynthesis models is USPTO-50k [Schneider et al., 2016],", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "which consists of 50000 reactions across 10 reaction classes. The dataset contains an unexpected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "shortcut towards predicting the edit, in that the product atom with atom-mapping 1 is part of the edit", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 117, + 563 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 117, + 550, + 137, + 561 + ], + "score": 0.88, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "of the cases, allowing predictions that depend on the position of the atom to overestimate", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 560, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 575 + ], + "score": 1.0, + "content": "performance. We canonicalize the product SMILES and remap the existing dataset, thereby removing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 438, + 584 + ], + "score": 1.0, + "content": "the shortcut. On this remapped dataset, GRAPHRETRO achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 439, + 572, + 466, + 582 + ], + "score": 0.87, + "content": "5 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "when the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 583, + 496, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 496, + 595 + ], + "score": 1.0, + "content": "reaction class is not known, outperforming both template-free and semi-template-based methods.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 517, + 506, + 595 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 610, + 197, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 198, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 198, + 625 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 504, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 649 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction Existing machine learning methods for retrosynthesis prediction can", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 647, + 467, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 467, + 659 + ], + "score": 1.0, + "content": "be divided into template-based, template-free and recent semi-template-based approaches.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 634, + 505, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 668, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 111, + 668, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 111, + 668, + 506, + 681 + ], + "score": 1.0, + "content": "Template-Based: Templates are either hand-crafted by experts [Hartenfeller et al., 2011, Szymkuc´", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 120, + 679, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 120, + 679, + 506, + 691 + ], + "score": 1.0, + "content": "et al., 2016], or extracted algorithmically from large databases Coley et al. [2017a], Law et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 120, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 120, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "[2009]. Exhaustively applying large template sets is expensive due to the involved subgraph", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 119, + 71, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 119, + 71, + 506, + 87 + ], + "score": 1.0, + "content": "matching procedure. Template-based methods therefore utilize different ways of prioritizing", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 120, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 120, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "templates, by either learning a conditional distribution over the template set [Segler and Waller,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 119, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 119, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "2017], ranking templates based on molecular similarities to precedent reactions [Coley et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 120, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 120, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "2017b] or directly modelling the joint distribution of templates and reactants using logic variables", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 120, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 120, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "[Dai et al., 2019]. Despite their interpretability, these methods fail to generalize outside their rule", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 120, + 128, + 138, + 140 + ], + "spans": [ + { + "bbox": [ + 120, + 128, + 138, + 140 + ], + "score": 1.0, + "content": "set.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 36, + "bbox_fs": [ + 111, + 668, + 506, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 121, + 73, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 119, + 71, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 119, + 71, + 506, + 87 + ], + "score": 1.0, + "content": "matching procedure. Template-based methods therefore utilize different ways of prioritizing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 120, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 120, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "templates, by either learning a conditional distribution over the template set [Segler and Waller,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 119, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 119, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "2017], ranking templates based on molecular similarities to precedent reactions [Coley et al.,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 120, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 120, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "2017b] or directly modelling the joint distribution of templates and reactants using logic variables", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 120, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 120, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "[Dai et al., 2019]. Despite their interpretability, these methods fail to generalize outside their rule", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 120, + 128, + 138, + 140 + ], + "spans": [ + { + "bbox": [ + 120, + 128, + 138, + 140 + ], + "score": 1.0, + "content": "set.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 112, + 145, + 505, + 255 + ], + "lines": [ + { + "bbox": [ + 111, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "Template-Free: Template-free methods [Liu et al., 2017, Zheng et al., 2019, Chen et al., 2019]", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 120, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 120, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "learn a direct transformation from products to reactants using architectures from neural machine", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 120, + 167, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 120, + 167, + 507, + 180 + ], + "score": 1.0, + "content": "translation and a string based representation of molecules called SMILES [Weininger, 1988].", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 120, + 178, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 120, + 178, + 506, + 190 + ], + "score": 1.0, + "content": "Linearizing molecules as strings does not utilize the inherently rich chemical structure. In addition,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 120, + 189, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 120, + 189, + 506, + 202 + ], + "score": 1.0, + "content": "the reactant SMILES are generated from scratch, character by character. Attempts have been", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 120, + 200, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 120, + 200, + 506, + 213 + ], + "score": 1.0, + "content": "made to improve validity by adding a syntax correcter [Zheng et al., 2019] and a mixture model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 120, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 120, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "to improve diversity of suggestions [Chen et al., 2019], but the performance remains worse than", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 120, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 120, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "[Dai et al., 2019] on the standard retrosynthesis dataset. Sun et al. [2021] formulate retrosynthesis", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 120, + 233, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 120, + 233, + 506, + 245 + ], + "score": 1.0, + "content": "using energy-based models, with additional parameterizations and loss terms to enforce the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 120, + 242, + 473, + 257 + ], + "spans": [ + { + "bbox": [ + 120, + 242, + 473, + 257 + ], + "score": 1.0, + "content": "duality between forward (reaction prediction) and backward (retrosynthesis) prediction.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 112, + 262, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 110, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 110, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "Semi-Template-Based: Our work is closely related to recently proposed semi-template-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 121, + 273, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 121, + 273, + 505, + 284 + ], + "score": 1.0, + "content": "methods [Shi et al., 2020, Yan et al., 2020], which first identify synthons and then expand", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 120, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 120, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "synthons into reactants through sequential generation using either a graph generative model [Shi", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 120, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 120, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "et al., 2020] or a Transformer [Yan et al., 2020]. To reduce the complexity of reactant generation,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 119, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 119, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "we instead complete synthons using subgraphs called leaving groups selected from a precomputed", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 120, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 120, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "vocabulary. This allows us to view synthon completion as a classification problem instead of a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 119, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 119, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "generative one. We also utilize the dependency graph between possible edits, and update edit", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 120, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 120, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "predictions using a message passing network (MPN) [Gilmer et al., 2017] on this graph. Both", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 120, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 120, + 348, + 232, + 362 + ], + "score": 1.0, + "content": "innovations together yield a", + "type": "text" + }, + { + "bbox": [ + 232, + 349, + 254, + 360 + ], + "score": 0.88, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 348, + 271, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 349, + 293, + 360 + ], + "score": 0.85, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "performance improvement respectively over previous", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 120, + 360, + 245, + 372 + ], + "spans": [ + { + "bbox": [ + 120, + 360, + 245, + 372 + ], + "score": 1.0, + "content": "semi-template-based methods.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 400 + ], + "score": 1.0, + "content": "Reaction Center Identification The reaction center covers a small number of participating atoms", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "involved in the reaction. Our work is also related to models that predict reaction outcomes by learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 407, + 507, + 422 + ], + "spans": [ + { + "bbox": [ + 104, + 407, + 507, + 422 + ], + "score": 1.0, + "content": "to rank atom pairs based on their likelihood to be in the reaction center [Coley et al., 2019, Jin et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "2017]. The task of identifying the reaction center is related to the step of deriving the synthons in our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "formulation. Our work departs from [Coley et al., 2019, Jin et al., 2017] as we utilize the property", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 263, + 453 + ], + "score": 1.0, + "content": "that new bond formations occur rarely", + "type": "text" + }, + { + "bbox": [ + 263, + 442, + 297, + 452 + ], + "score": 0.89, + "content": "( \\sim 0 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 442, + 505, + 453 + ], + "score": 1.0, + "content": "from products to synthons, allowing us to predict a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 418, + 465 + ], + "score": 1.0, + "content": "score only for existing bonds and atoms and reduce prediction complexity from", + "type": "text" + }, + { + "bbox": [ + 418, + 452, + 448, + 464 + ], + "score": 0.92, + "content": "O ( N ^ { \\bar { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 451, + 460, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 460, + 452, + 485, + 464 + ], + "score": 0.91, + "content": "O ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 451, + 506, + 465 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "score": 1.0, + "content": "also utilize the dependency graph between possible edits, and update edit predictions using a MPN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 474, + 163, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 163, + 486 + ], + "score": 1.0, + "content": "on this graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Utilizing Substructures Substructures have been utilized in various tasks from sentence generation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "by fusing phrases to molecule generation and optimization [Jin et al., 2018, 2020]. Our work is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "closely related to [Jin et al., 2020] which uses precomputed substructures as building blocks for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "property-conditioned molecule generation. However, instead of precomputing, synthons —analogous", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 543, + 377, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 377, + 558 + ], + "score": 1.0, + "content": "building blocks for reactants— are indirectly learnt during training.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 196, + 588 + ], + "lines": [ + { + "bbox": [ + 104, + 571, + 198, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 571, + 198, + 592 + ], + "score": 1.0, + "content": "3 Model Design", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "Our approach leverages the property that graph topology is largely unaltered from products to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "score": 1.0, + "content": "reactants. To achieve this, we first derive suitable building blocks from the product called synthons,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 507, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 507, + 637 + ], + "score": 1.0, + "content": "and then complete them into valid reactants by adding specific functionalities called leaving groups.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "These derivations, called edits, are characterized by modifications to bonds or hydrogen counts on", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "atoms. We first train a neural network to predict a score for possible edits (Section 3.1). The edit with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "the highest score is then applied to the product to obtain synthons. Since the number of unique leaving", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "groups are small, we model leaving group selection as a classification problem over a precomputed", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "vocabulary (Section 3.2). To produce candidate reactants, we attach the predicted leaving group to", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "the corresponding synthon through chemically constrained rules. The overall process is outlined", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "in Figure 1. Before describing the two modules, we introduce relevant preliminaries that set the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 710, + 280, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 280, + 724 + ], + "score": 1.0, + "content": "background for the remainder of the paper.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 46 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 121, + 73, + 505, + 138 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 119, + 71, + 507, + 140 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 112, + 145, + 505, + 255 + ], + "lines": [ + { + "bbox": [ + 111, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "Template-Free: Template-free methods [Liu et al., 2017, Zheng et al., 2019, Chen et al., 2019]", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 120, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 120, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "learn a direct transformation from products to reactants using architectures from neural machine", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 120, + 167, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 120, + 167, + 507, + 180 + ], + "score": 1.0, + "content": "translation and a string based representation of molecules called SMILES [Weininger, 1988].", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 120, + 178, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 120, + 178, + 506, + 190 + ], + "score": 1.0, + "content": "Linearizing molecules as strings does not utilize the inherently rich chemical structure. In addition,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 120, + 189, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 120, + 189, + 506, + 202 + ], + "score": 1.0, + "content": "the reactant SMILES are generated from scratch, character by character. Attempts have been", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 120, + 200, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 120, + 200, + 506, + 213 + ], + "score": 1.0, + "content": "made to improve validity by adding a syntax correcter [Zheng et al., 2019] and a mixture model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 120, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 120, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "to improve diversity of suggestions [Chen et al., 2019], but the performance remains worse than", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 120, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 120, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "[Dai et al., 2019] on the standard retrosynthesis dataset. Sun et al. [2021] formulate retrosynthesis", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 120, + 233, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 120, + 233, + 506, + 245 + ], + "score": 1.0, + "content": "using energy-based models, with additional parameterizations and loss terms to enforce the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 120, + 242, + 473, + 257 + ], + "spans": [ + { + "bbox": [ + 120, + 242, + 473, + 257 + ], + "score": 1.0, + "content": "duality between forward (reaction prediction) and backward (retrosynthesis) prediction.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 111, + 145, + 507, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 112, + 262, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 110, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 110, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "Semi-Template-Based: Our work is closely related to recently proposed semi-template-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 121, + 273, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 121, + 273, + 505, + 284 + ], + "score": 1.0, + "content": "methods [Shi et al., 2020, Yan et al., 2020], which first identify synthons and then expand", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 120, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 120, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "synthons into reactants through sequential generation using either a graph generative model [Shi", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 120, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 120, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "et al., 2020] or a Transformer [Yan et al., 2020]. To reduce the complexity of reactant generation,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 119, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 119, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "we instead complete synthons using subgraphs called leaving groups selected from a precomputed", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 120, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 120, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "vocabulary. This allows us to view synthon completion as a classification problem instead of a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 119, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 119, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "generative one. We also utilize the dependency graph between possible edits, and update edit", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 120, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 120, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "predictions using a message passing network (MPN) [Gilmer et al., 2017] on this graph. Both", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 120, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 120, + 348, + 232, + 362 + ], + "score": 1.0, + "content": "innovations together yield a", + "type": "text" + }, + { + "bbox": [ + 232, + 349, + 254, + 360 + ], + "score": 0.88, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 348, + 271, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 349, + 293, + 360 + ], + "score": 0.85, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "performance improvement respectively over previous", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 120, + 360, + 245, + 372 + ], + "spans": [ + { + "bbox": [ + 120, + 360, + 245, + 372 + ], + "score": 1.0, + "content": "semi-template-based methods.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 110, + 261, + 506, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 400 + ], + "score": 1.0, + "content": "Reaction Center Identification The reaction center covers a small number of participating atoms", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "involved in the reaction. Our work is also related to models that predict reaction outcomes by learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 407, + 507, + 422 + ], + "spans": [ + { + "bbox": [ + 104, + 407, + 507, + 422 + ], + "score": 1.0, + "content": "to rank atom pairs based on their likelihood to be in the reaction center [Coley et al., 2019, Jin et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "2017]. The task of identifying the reaction center is related to the step of deriving the synthons in our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "formulation. Our work departs from [Coley et al., 2019, Jin et al., 2017] as we utilize the property", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 263, + 453 + ], + "score": 1.0, + "content": "that new bond formations occur rarely", + "type": "text" + }, + { + "bbox": [ + 263, + 442, + 297, + 452 + ], + "score": 0.89, + "content": "( \\sim 0 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 442, + 505, + 453 + ], + "score": 1.0, + "content": "from products to synthons, allowing us to predict a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 418, + 465 + ], + "score": 1.0, + "content": "score only for existing bonds and atoms and reduce prediction complexity from", + "type": "text" + }, + { + "bbox": [ + 418, + 452, + 448, + 464 + ], + "score": 0.92, + "content": "O ( N ^ { \\bar { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 451, + 460, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 460, + 452, + 485, + 464 + ], + "score": 0.91, + "content": "O ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 451, + 506, + 465 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "score": 1.0, + "content": "also utilize the dependency graph between possible edits, and update edit predictions using a MPN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 474, + 163, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 163, + 486 + ], + "score": 1.0, + "content": "on this graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 385, + 507, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Utilizing Substructures Substructures have been utilized in various tasks from sentence generation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "by fusing phrases to molecule generation and optimization [Jin et al., 2018, 2020]. Our work is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "closely related to [Jin et al., 2020] which uses precomputed substructures as building blocks for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "property-conditioned molecule generation. However, instead of precomputing, synthons —analogous", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 543, + 377, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 377, + 558 + ], + "score": 1.0, + "content": "building blocks for reactants— are indirectly learnt during training.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 500, + 506, + 558 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 196, + 588 + ], + "lines": [ + { + "bbox": [ + 104, + 571, + 198, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 571, + 198, + 592 + ], + "score": 1.0, + "content": "3 Model Design", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "Our approach leverages the property that graph topology is largely unaltered from products to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "score": 1.0, + "content": "reactants. To achieve this, we first derive suitable building blocks from the product called synthons,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 507, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 507, + 637 + ], + "score": 1.0, + "content": "and then complete them into valid reactants by adding specific functionalities called leaving groups.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "These derivations, called edits, are characterized by modifications to bonds or hydrogen counts on", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "atoms. We first train a neural network to predict a score for possible edits (Section 3.1). The edit with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "the highest score is then applied to the product to obtain synthons. Since the number of unique leaving", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "groups are small, we model leaving group selection as a classification problem over a precomputed", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "vocabulary (Section 3.2). To produce candidate reactants, we attach the predicted leaving group to", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "the corresponding synthon through chemically constrained rules. The overall process is outlined", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "in Figure 1. Before describing the two modules, we introduce relevant preliminaries that set the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 710, + 280, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 280, + 724 + ], + "score": 1.0, + "content": "background for the remainder of the paper.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 601, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 316, + 85 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction A retrosynthesis pair", + "type": "text" + }, + { + "bbox": [ + 316, + 73, + 325, + 83 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "is described by a pair of molecular graphs", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 139, + 96 + ], + "score": 0.92, + "content": "( \\mathcal { G } _ { p } , \\mathcal { G } _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 83, + 168, + 97 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 169, + 84, + 180, + 96 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 83, + 260, + 97 + ], + "score": 1.0, + "content": "are the products and", + "type": "text" + }, + { + "bbox": [ + 261, + 84, + 272, + 95 + ], + "score": 0.88, + "content": "\\mathcal { G } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 83, + 459, + 97 + ], + "score": 1.0, + "content": "the reactants. A molecular graph is described as", + "type": "text" + }, + { + "bbox": [ + 459, + 83, + 505, + 96 + ], + "score": 0.93, + "content": "\\mathcal { G } = \\mathbf { \\bar { \\rho } } ( \\mathcal { V } , \\mathcal { E } )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 151, + 106 + ], + "score": 1.0, + "content": "with atoms", + "type": "text" + }, + { + "bbox": [ + 151, + 95, + 160, + 104 + ], + "score": 0.79, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 95, + 237, + 106 + ], + "score": 1.0, + "content": "as nodes and bonds", + "type": "text" + }, + { + "bbox": [ + 238, + 95, + 245, + 104 + ], + "score": 0.82, + "content": "\\mathcal { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "as edges. Prior work has focused on the single product case, while", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 104, + 506, + 121 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 335, + 121 + ], + "score": 1.0, + "content": "reactants can have multiple connected components, i.e.", + "type": "text" + }, + { + "bbox": [ + 336, + 105, + 399, + 118 + ], + "score": 0.93, + "content": "\\mathcal { G } _ { r } = \\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 104, + 506, + 121 + ], + "score": 1.0, + "content": ". Retrosynthesis pairs are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "atom-mapped so that each product atom has a unique corresponding reactant atom. The retrosynthesis", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 123, + 269, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 188, + 142 + ], + "score": 1.0, + "content": "task then, is to infer", + "type": "text" + }, + { + "bbox": [ + 188, + 127, + 227, + 140 + ], + "score": 0.93, + "content": "\\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 123, + 252, + 142 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 253, + 127, + 264, + 140 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 123, + 269, + 142 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 267, + 164 + ], + "score": 1.0, + "content": "Edits Edits consist of (i.) atom pairs", + "type": "text" + }, + { + "bbox": [ + 267, + 151, + 308, + 163 + ], + "score": 0.94, + "content": "\\left\\{ \\left( a _ { i } , a _ { j } \\right) \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 149, + 506, + 164 + ], + "score": 1.0, + "content": "where the bond type changes from products to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 504, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 210, + 174 + ], + "score": 1.0, + "content": "reactants, and (ii.) atoms", + "type": "text" + }, + { + "bbox": [ + 211, + 162, + 230, + 174 + ], + "score": 0.93, + "content": "\\left\\{ { a } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 162, + 504, + 174 + ], + "score": 1.0, + "content": "where the number of hydrogens attached to the atom change from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 313, + 186 + ], + "score": 1.0, + "content": "products to reactants. We denote the set of edits by", + "type": "text" + }, + { + "bbox": [ + 314, + 173, + 323, + 183 + ], + "score": 0.8, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 172, + 506, + 186 + ], + "score": 1.0, + "content": ". Since retrosynthesis pairs in the training set", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "are atom-mapped, edits can be automatically identified by comparing the atoms and atom pairs in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 194, + 318, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 318, + 207 + ], + "score": 1.0, + "content": "product to their corresponding reactant counterparts.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 303, + 231 + ], + "score": 1.0, + "content": "Synthons and Leaving Groups Applying edits", + "type": "text" + }, + { + "bbox": [ + 303, + 219, + 312, + 228 + ], + "score": 0.84, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 218, + 368, + 231 + ], + "score": 1.0, + "content": "to the product", + "type": "text" + }, + { + "bbox": [ + 368, + 219, + 380, + 231 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "results in incomplete molecules", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "called synthons. Synthons are analogous to rationales or building blocks, which are expanded into", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 239, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 254 + ], + "score": 1.0, + "content": "valid reactants by adding specific functionalities called leaving groups that are responsible for its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 241, + 264 + ], + "score": 1.0, + "content": "reactivity. We denote synthons by", + "type": "text" + }, + { + "bbox": [ + 242, + 252, + 253, + 262 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 251, + 343, + 264 + ], + "score": 1.0, + "content": "and leaving groups by", + "type": "text" + }, + { + "bbox": [ + 344, + 252, + 353, + 262 + ], + "score": 0.86, + "content": "\\mathcal { G } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 251, + 505, + 264 + ], + "score": 1.0, + "content": ". We further assume that synthons and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 259, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 104, + 259, + 441, + 278 + ], + "score": 1.0, + "content": "leaving groups have the same number of connected components as the reactants, i.e", + "type": "text" + }, + { + "bbox": [ + 441, + 261, + 504, + 275 + ], + "score": 0.92, + "content": "\\mathcal { G } _ { s } \\doteq \\{ \\mathcal { G } _ { s _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 269, + 442, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 269, + 123, + 288 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 272, + 183, + 285 + ], + "score": 0.93, + "content": "\\mathcal { G } _ { l } = \\{ \\mathcal { G } _ { l _ { c } } ^ { \\star } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 269, + 294, + 288 + ], + "score": 1.0, + "content": ". This assumption holds for", + "type": "text" + }, + { + "bbox": [ + 294, + 273, + 326, + 284 + ], + "score": 0.86, + "content": "9 9 . 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 269, + 442, + 288 + ], + "score": 1.0, + "content": "reactions in the training set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 105, + 289, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 404, + 303 + ], + "score": 1.0, + "content": "Formally, our model generates reactants by first predicting the set of edits", + "type": "text" + }, + { + "bbox": [ + 405, + 290, + 414, + 299 + ], + "score": 0.83, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 288, + 474, + 303 + ], + "score": 1.0, + "content": "that transform", + "type": "text" + }, + { + "bbox": [ + 474, + 290, + 486, + 302 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 118, + 311 + ], + "score": 0.86, + "content": "\\mathcal { G } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 300, + 275, + 313 + ], + "score": 1.0, + "content": ", followed by predicting a leaving group", + "type": "text" + }, + { + "bbox": [ + 276, + 301, + 289, + 312 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 300, + 390, + 313 + ], + "score": 1.0, + "content": "to attach to each synthon", + "type": "text" + }, + { + "bbox": [ + 390, + 301, + 405, + 312 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { s _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 300, + 506, + 313 + ], + "score": 1.0, + "content": ". The model is defined as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 323, + 387, + 351 + ], + "lines": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "spans": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "score": 0.94, + "content": "P ( \\mathcal G _ { r } | \\mathcal G _ { p } ) = \\sum _ { E , \\mathcal G _ { l } } P ( E | \\mathcal G _ { p } ) P ( \\mathcal G _ { l } | \\mathcal G _ { p } , \\mathcal G _ { s } ) ,", + "type": "interline_equation", + "image_path": "e5989ffe48f40113cab8f00a06662537b577c1fdbf3a8f9d8153b9ad86f85418.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 312, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 312, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 133, + 371 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 357, + 159, + 368 + ], + "score": 0.92, + "content": "\\mathcal { G } _ { s } , \\mathcal { G } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 354, + 253, + 371 + ], + "score": 1.0, + "content": "are deterministic given", + "type": "text" + }, + { + "bbox": [ + 254, + 357, + 276, + 368 + ], + "score": 0.91, + "content": "E , { \\mathcal { G } } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 354, + 297, + 371 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 297, + 357, + 308, + 369 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 354, + 312, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 381, + 195, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 197, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 197, + 395 + ], + "score": 1.0, + "content": "3.1 Edit Prediction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 232, + 416 + ], + "score": 1.0, + "content": "For a given retrosynthesis pair", + "type": "text" + }, + { + "bbox": [ + 233, + 402, + 288, + 414 + ], + "score": 0.93, + "content": "R = ( \\mathcal G _ { p } , \\mathcal G _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 402, + 506, + 416 + ], + "score": 1.0, + "content": ", we predict an edit score only for existing bonds and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "atoms, instead of every atom pair as in [Coley et al., 2019, Jin et al., 2017]. This choice is motivated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 195, + 437 + ], + "score": 1.0, + "content": "by the low frequency", + "type": "text" + }, + { + "bbox": [ + 195, + 425, + 229, + 435 + ], + "score": 0.93, + "content": "( \\sim 0 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "of new bond formations in the training set examples. Coupled with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 415, + 448 + ], + "score": 1.0, + "content": "the sparsity of molecular graphs, this reduces the prediction complexity from", + "type": "text" + }, + { + "bbox": [ + 415, + 435, + 445, + 447 + ], + "score": 0.92, + "content": "O ( N ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 434, + 457, + 448 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 457, + 435, + 482, + 447 + ], + "score": 0.92, + "content": "O ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 434, + 507, + 448 + ], + "score": 1.0, + "content": "for a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 160, + 459 + ], + "score": 1.0, + "content": "product with", + "type": "text" + }, + { + "bbox": [ + 161, + 446, + 171, + 456 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "atoms. Our edit prediction model has variants tailored to single and multiple edit", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 181, + 469 + ], + "score": 1.0, + "content": "prediction. Since", + "type": "text" + }, + { + "bbox": [ + 181, + 457, + 201, + 468 + ], + "score": 0.87, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "of the training set consists of single edit examples, the remainder of this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "section describes the setup for single edit prediction. A detailed description of our multiple edit", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 479, + 297, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 297, + 491 + ], + "score": 1.0, + "content": "prediction model can be found in Appendix ??.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 153, + 508 + ], + "score": 1.0, + "content": "Each bond", + "type": "text" + }, + { + "bbox": [ + 154, + 495, + 177, + 507 + ], + "score": 0.91, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 494, + 190, + 508 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 190, + 495, + 202, + 507 + ], + "score": 0.88, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 494, + 309, + 508 + ], + "score": 1.0, + "content": "is associated with a label", + "type": "text" + }, + { + "bbox": [ + 309, + 495, + 368, + 507 + ], + "score": 0.93, + "content": "y _ { u v k } \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "indicating whether its bond type", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 114, + 516 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 506, + 342, + 518 + ], + "score": 1.0, + "content": "has changed from the products to reactants. Each atom", + "type": "text" + }, + { + "bbox": [ + 342, + 509, + 349, + 516 + ], + "score": 0.75, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 506, + 455, + 518 + ], + "score": 1.0, + "content": "is associated with a label", + "type": "text" + }, + { + "bbox": [ + 455, + 506, + 504, + 518 + ], + "score": 0.93, + "content": "y _ { u } \\in \\{ 0 , \\bar { 1 } \\}", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "indicating a change in hydrogen count. We predict edit scores using representations that are learnt", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 199, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 199, + 540 + ], + "score": 1.0, + "content": "using a graph encoder.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "Graph Encoder To obtain atom representations, we use a variant of the message passing network", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 323, + 575 + ], + "score": 1.0, + "content": "(MPN) described in [Gilmer et al., 2017]. Each atom", + "type": "text" + }, + { + "bbox": [ + 324, + 565, + 331, + 572 + ], + "score": 0.67, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 562, + 413, + 575 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 413, + 564, + 426, + 573 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "indicating its atom", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 284, + 587 + ], + "score": 1.0, + "content": "type, degree and other properties. Each bond", + "type": "text" + }, + { + "bbox": [ + 284, + 573, + 307, + 585 + ], + "score": 0.92, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 572, + 387, + 587 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 387, + 575, + 403, + 585 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { u v }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "indicating its aromaticity,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 451, + 597 + ], + "score": 1.0, + "content": "bond type and ring membership. For simplicity, we denote the encoding process by", + "type": "text" + }, + { + "bbox": [ + 451, + 584, + 486, + 596 + ], + "score": 0.58, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 594, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 455, + 609 + ], + "score": 1.0, + "content": "describe architectural details in Appendix ??. The MPN computes atom representations", + "type": "text" + }, + { + "bbox": [ + 456, + 595, + 504, + 607 + ], + "score": 0.91, + "content": "\\{ \\mathbf { c } _ { u } | u \\in \\mathcal { G } \\}", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 606, + 122, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 122, + 618 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 629, + 385, + 644 + ], + "lines": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "spans": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "score": 0.88, + "content": "\\{ \\mathbf { c } _ { u } \\} = \\mathrm { M P N } ( \\mathcal { G } , \\{ \\mathbf { x } _ { u } \\} , \\{ \\mathbf { x } _ { u v } \\} _ { v \\in \\mathcal { N } ( u ) } ) ,", + "type": "interline_equation", + "image_path": "b517ef315352815d369d32f3af958c21a2ae42d976e66bdc837220e4bb39c388.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 132, + 668 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 655, + 156, + 667 + ], + "score": 0.92, + "content": "\\mathcal { N } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 653, + 279, + 668 + ], + "score": 1.0, + "content": "denotes the neighbors of atom", + "type": "text" + }, + { + "bbox": [ + 279, + 658, + 285, + 664 + ], + "score": 0.7, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 653, + 390, + 668 + ], + "score": 1.0, + "content": ". The graph representation", + "type": "text" + }, + { + "bbox": [ + 390, + 657, + 402, + 667 + ], + "score": 0.87, + "content": "\\mathbf { c } _ { \\mathcal { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 653, + 505, + 668 + ], + "score": 1.0, + "content": "is an aggregation of atom", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 665, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 186, + 681 + ], + "score": 1.0, + "content": "representations, i.e.", + "type": "text" + }, + { + "bbox": [ + 186, + 666, + 250, + 679 + ], + "score": 0.92, + "content": "\\mathbf { c } _ { \\mathcal { G } } = \\dot { \\sum _ { { u } \\in \\mathcal { V } } } \\mathbf { c } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 665, + 280, + 681 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 280, + 667, + 288, + 677 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 665, + 397, + 681 + ], + "score": 1.0, + "content": "has connected components", + "type": "text" + }, + { + "bbox": [ + 397, + 666, + 417, + 678 + ], + "score": 0.91, + "content": "\\left\\{ { \\mathcal { G } } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 665, + 506, + 681 + ], + "score": 1.0, + "content": ", we get a set of graph", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 168, + 691 + ], + "score": 1.0, + "content": "representations", + "type": "text" + }, + { + "bbox": [ + 168, + 678, + 192, + 690 + ], + "score": 0.92, + "content": "\\left\\{ \\mathbf { c } _ { \\mathcal { G } _ { i } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 677, + 241, + 691 + ], + "score": 1.0, + "content": ". For a bond", + "type": "text" + }, + { + "bbox": [ + 241, + 678, + 265, + 690 + ], + "score": 0.9, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 677, + 377, + 691 + ], + "score": 1.0, + "content": ", we define its representation", + "type": "text" + }, + { + "bbox": [ + 378, + 678, + 502, + 690 + ], + "score": 0.9, + "content": "\\mathbf { c } _ { u v } = ( \\operatorname { A B S } ( \\mathbf { c } _ { u } , \\mathbf { c } _ { v } ) | | \\mathbf { c } _ { u } + \\mathbf { c } _ { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 677, + 506, + 691 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 277, + 702 + ], + "score": 1.0, + "content": "where ABS denotes absolute difference and", + "type": "text" + }, + { + "bbox": [ + 278, + 690, + 284, + 701 + ], + "score": 0.85, + "content": "| |", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "refers to concatenation. This ensures our representations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "are permutation invariant. These representations are then used to predict atom and bond edit scores", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 711, + 259, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 259, + 723 + ], + "score": 1.0, + "content": "using corresponding neural networks,", + "type": "text" + } + ], + "index": 46 + } + ], + "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": [ + 106, + 72, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 316, + 85 + ], + "score": 1.0, + "content": "Retrosynthesis Prediction A retrosynthesis pair", + "type": "text" + }, + { + "bbox": [ + 316, + 73, + 325, + 83 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "is described by a pair of molecular graphs", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 139, + 96 + ], + "score": 0.92, + "content": "( \\mathcal { G } _ { p } , \\mathcal { G } _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 83, + 168, + 97 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 169, + 84, + 180, + 96 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 83, + 260, + 97 + ], + "score": 1.0, + "content": "are the products and", + "type": "text" + }, + { + "bbox": [ + 261, + 84, + 272, + 95 + ], + "score": 0.88, + "content": "\\mathcal { G } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 83, + 459, + 97 + ], + "score": 1.0, + "content": "the reactants. A molecular graph is described as", + "type": "text" + }, + { + "bbox": [ + 459, + 83, + 505, + 96 + ], + "score": 0.93, + "content": "\\mathcal { G } = \\mathbf { \\bar { \\rho } } ( \\mathcal { V } , \\mathcal { E } )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 151, + 106 + ], + "score": 1.0, + "content": "with atoms", + "type": "text" + }, + { + "bbox": [ + 151, + 95, + 160, + 104 + ], + "score": 0.79, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 95, + 237, + 106 + ], + "score": 1.0, + "content": "as nodes and bonds", + "type": "text" + }, + { + "bbox": [ + 238, + 95, + 245, + 104 + ], + "score": 0.82, + "content": "\\mathcal { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "as edges. Prior work has focused on the single product case, while", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 104, + 506, + 121 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 335, + 121 + ], + "score": 1.0, + "content": "reactants can have multiple connected components, i.e.", + "type": "text" + }, + { + "bbox": [ + 336, + 105, + 399, + 118 + ], + "score": 0.93, + "content": "\\mathcal { G } _ { r } = \\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 104, + 506, + 121 + ], + "score": 1.0, + "content": ". Retrosynthesis pairs are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "atom-mapped so that each product atom has a unique corresponding reactant atom. The retrosynthesis", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 123, + 269, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 188, + 142 + ], + "score": 1.0, + "content": "task then, is to infer", + "type": "text" + }, + { + "bbox": [ + 188, + 127, + 227, + 140 + ], + "score": 0.93, + "content": "\\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 123, + 252, + 142 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 253, + 127, + 264, + 140 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 123, + 269, + 142 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 104, + 72, + 506, + 142 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 267, + 164 + ], + "score": 1.0, + "content": "Edits Edits consist of (i.) atom pairs", + "type": "text" + }, + { + "bbox": [ + 267, + 151, + 308, + 163 + ], + "score": 0.94, + "content": "\\left\\{ \\left( a _ { i } , a _ { j } \\right) \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 149, + 506, + 164 + ], + "score": 1.0, + "content": "where the bond type changes from products to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 504, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 210, + 174 + ], + "score": 1.0, + "content": "reactants, and (ii.) atoms", + "type": "text" + }, + { + "bbox": [ + 211, + 162, + 230, + 174 + ], + "score": 0.93, + "content": "\\left\\{ { a } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 162, + 504, + 174 + ], + "score": 1.0, + "content": "where the number of hydrogens attached to the atom change from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 313, + 186 + ], + "score": 1.0, + "content": "products to reactants. We denote the set of edits by", + "type": "text" + }, + { + "bbox": [ + 314, + 173, + 323, + 183 + ], + "score": 0.8, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 172, + 506, + 186 + ], + "score": 1.0, + "content": ". Since retrosynthesis pairs in the training set", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "are atom-mapped, edits can be automatically identified by comparing the atoms and atom pairs in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 194, + 318, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 318, + 207 + ], + "score": 1.0, + "content": "product to their corresponding reactant counterparts.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 149, + 506, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 303, + 231 + ], + "score": 1.0, + "content": "Synthons and Leaving Groups Applying edits", + "type": "text" + }, + { + "bbox": [ + 303, + 219, + 312, + 228 + ], + "score": 0.84, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 218, + 368, + 231 + ], + "score": 1.0, + "content": "to the product", + "type": "text" + }, + { + "bbox": [ + 368, + 219, + 380, + 231 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "results in incomplete molecules", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "called synthons. Synthons are analogous to rationales or building blocks, which are expanded into", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 239, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 254 + ], + "score": 1.0, + "content": "valid reactants by adding specific functionalities called leaving groups that are responsible for its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 241, + 264 + ], + "score": 1.0, + "content": "reactivity. We denote synthons by", + "type": "text" + }, + { + "bbox": [ + 242, + 252, + 253, + 262 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 251, + 343, + 264 + ], + "score": 1.0, + "content": "and leaving groups by", + "type": "text" + }, + { + "bbox": [ + 344, + 252, + 353, + 262 + ], + "score": 0.86, + "content": "\\mathcal { G } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 251, + 505, + 264 + ], + "score": 1.0, + "content": ". We further assume that synthons and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 259, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 104, + 259, + 441, + 278 + ], + "score": 1.0, + "content": "leaving groups have the same number of connected components as the reactants, i.e", + "type": "text" + }, + { + "bbox": [ + 441, + 261, + 504, + 275 + ], + "score": 0.92, + "content": "\\mathcal { G } _ { s } \\doteq \\{ \\mathcal { G } _ { s _ { c } } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 269, + 442, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 269, + 123, + 288 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 272, + 183, + 285 + ], + "score": 0.93, + "content": "\\mathcal { G } _ { l } = \\{ \\mathcal { G } _ { l _ { c } } ^ { \\star } \\} _ { c = 1 } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 269, + 294, + 288 + ], + "score": 1.0, + "content": ". This assumption holds for", + "type": "text" + }, + { + "bbox": [ + 294, + 273, + 326, + 284 + ], + "score": 0.86, + "content": "9 9 . 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 269, + 442, + 288 + ], + "score": 1.0, + "content": "reactions in the training set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 218, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 289, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 404, + 303 + ], + "score": 1.0, + "content": "Formally, our model generates reactants by first predicting the set of edits", + "type": "text" + }, + { + "bbox": [ + 405, + 290, + 414, + 299 + ], + "score": 0.83, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 288, + 474, + 303 + ], + "score": 1.0, + "content": "that transform", + "type": "text" + }, + { + "bbox": [ + 474, + 290, + 486, + 302 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 118, + 311 + ], + "score": 0.86, + "content": "\\mathcal { G } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 300, + 275, + 313 + ], + "score": 1.0, + "content": ", followed by predicting a leaving group", + "type": "text" + }, + { + "bbox": [ + 276, + 301, + 289, + 312 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 300, + 390, + 313 + ], + "score": 1.0, + "content": "to attach to each synthon", + "type": "text" + }, + { + "bbox": [ + 390, + 301, + 405, + 312 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { s _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 300, + 506, + 313 + ], + "score": 1.0, + "content": ". The model is defined as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 288, + 506, + 313 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 323, + 387, + 351 + ], + "lines": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "spans": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "score": 0.94, + "content": "P ( \\mathcal G _ { r } | \\mathcal G _ { p } ) = \\sum _ { E , \\mathcal G _ { l } } P ( E | \\mathcal G _ { p } ) P ( \\mathcal G _ { l } | \\mathcal G _ { p } , \\mathcal G _ { s } ) ,", + "type": "interline_equation", + "image_path": "e5989ffe48f40113cab8f00a06662537b577c1fdbf3a8f9d8153b9ad86f85418.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 223, + 323, + 387, + 351 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 312, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 312, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 133, + 371 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 357, + 159, + 368 + ], + "score": 0.92, + "content": "\\mathcal { G } _ { s } , \\mathcal { G } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 354, + 253, + 371 + ], + "score": 1.0, + "content": "are deterministic given", + "type": "text" + }, + { + "bbox": [ + 254, + 357, + 276, + 368 + ], + "score": 0.91, + "content": "E , { \\mathcal { G } } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 354, + 297, + 371 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 297, + 357, + 308, + 369 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 354, + 312, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 354, + 312, + 371 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 381, + 195, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 197, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 197, + 395 + ], + "score": 1.0, + "content": "3.1 Edit Prediction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 232, + 416 + ], + "score": 1.0, + "content": "For a given retrosynthesis pair", + "type": "text" + }, + { + "bbox": [ + 233, + 402, + 288, + 414 + ], + "score": 0.93, + "content": "R = ( \\mathcal G _ { p } , \\mathcal G _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 402, + 506, + 416 + ], + "score": 1.0, + "content": ", we predict an edit score only for existing bonds and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "atoms, instead of every atom pair as in [Coley et al., 2019, Jin et al., 2017]. This choice is motivated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 195, + 437 + ], + "score": 1.0, + "content": "by the low frequency", + "type": "text" + }, + { + "bbox": [ + 195, + 425, + 229, + 435 + ], + "score": 0.93, + "content": "( \\sim 0 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "of new bond formations in the training set examples. Coupled with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 415, + 448 + ], + "score": 1.0, + "content": "the sparsity of molecular graphs, this reduces the prediction complexity from", + "type": "text" + }, + { + "bbox": [ + 415, + 435, + 445, + 447 + ], + "score": 0.92, + "content": "O ( N ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 434, + 457, + 448 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 457, + 435, + 482, + 447 + ], + "score": 0.92, + "content": "O ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 434, + 507, + 448 + ], + "score": 1.0, + "content": "for a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 160, + 459 + ], + "score": 1.0, + "content": "product with", + "type": "text" + }, + { + "bbox": [ + 161, + 446, + 171, + 456 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "atoms. Our edit prediction model has variants tailored to single and multiple edit", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 181, + 469 + ], + "score": 1.0, + "content": "prediction. Since", + "type": "text" + }, + { + "bbox": [ + 181, + 457, + 201, + 468 + ], + "score": 0.87, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "of the training set consists of single edit examples, the remainder of this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "section describes the setup for single edit prediction. A detailed description of our multiple edit", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 479, + 297, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 297, + 491 + ], + "score": 1.0, + "content": "prediction model can be found in Appendix ??.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 402, + 507, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 153, + 508 + ], + "score": 1.0, + "content": "Each bond", + "type": "text" + }, + { + "bbox": [ + 154, + 495, + 177, + 507 + ], + "score": 0.91, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 494, + 190, + 508 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 190, + 495, + 202, + 507 + ], + "score": 0.88, + "content": "\\mathcal { G } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 494, + 309, + 508 + ], + "score": 1.0, + "content": "is associated with a label", + "type": "text" + }, + { + "bbox": [ + 309, + 495, + 368, + 507 + ], + "score": 0.93, + "content": "y _ { u v k } \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "indicating whether its bond type", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 114, + 516 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 506, + 342, + 518 + ], + "score": 1.0, + "content": "has changed from the products to reactants. Each atom", + "type": "text" + }, + { + "bbox": [ + 342, + 509, + 349, + 516 + ], + "score": 0.75, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 506, + 455, + 518 + ], + "score": 1.0, + "content": "is associated with a label", + "type": "text" + }, + { + "bbox": [ + 455, + 506, + 504, + 518 + ], + "score": 0.93, + "content": "y _ { u } \\in \\{ 0 , \\bar { 1 } \\}", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "indicating a change in hydrogen count. We predict edit scores using representations that are learnt", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 199, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 199, + 540 + ], + "score": 1.0, + "content": "using a graph encoder.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 494, + 506, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "Graph Encoder To obtain atom representations, we use a variant of the message passing network", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 323, + 575 + ], + "score": 1.0, + "content": "(MPN) described in [Gilmer et al., 2017]. Each atom", + "type": "text" + }, + { + "bbox": [ + 324, + 565, + 331, + 572 + ], + "score": 0.67, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 562, + 413, + 575 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 413, + 564, + 426, + 573 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "indicating its atom", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 284, + 587 + ], + "score": 1.0, + "content": "type, degree and other properties. Each bond", + "type": "text" + }, + { + "bbox": [ + 284, + 573, + 307, + 585 + ], + "score": 0.92, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 572, + 387, + 587 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 387, + 575, + 403, + 585 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { u v }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "indicating its aromaticity,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 451, + 597 + ], + "score": 1.0, + "content": "bond type and ring membership. For simplicity, we denote the encoding process by", + "type": "text" + }, + { + "bbox": [ + 451, + 584, + 486, + 596 + ], + "score": 0.58, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 594, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 455, + 609 + ], + "score": 1.0, + "content": "describe architectural details in Appendix ??. The MPN computes atom representations", + "type": "text" + }, + { + "bbox": [ + 456, + 595, + 504, + 607 + ], + "score": 0.91, + "content": "\\{ \\mathbf { c } _ { u } | u \\in \\mathcal { G } \\}", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 606, + 122, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 122, + 618 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 550, + 506, + 618 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 629, + 385, + 644 + ], + "lines": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "spans": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "score": 0.88, + "content": "\\{ \\mathbf { c } _ { u } \\} = \\mathrm { M P N } ( \\mathcal { G } , \\{ \\mathbf { x } _ { u } \\} , \\{ \\mathbf { x } _ { u v } \\} _ { v \\in \\mathcal { N } ( u ) } ) ,", + "type": "interline_equation", + "image_path": "b517ef315352815d369d32f3af958c21a2ae42d976e66bdc837220e4bb39c388.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 225, + 629, + 385, + 644 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 132, + 668 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 655, + 156, + 667 + ], + "score": 0.92, + "content": "\\mathcal { N } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 653, + 279, + 668 + ], + "score": 1.0, + "content": "denotes the neighbors of atom", + "type": "text" + }, + { + "bbox": [ + 279, + 658, + 285, + 664 + ], + "score": 0.7, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 653, + 390, + 668 + ], + "score": 1.0, + "content": ". The graph representation", + "type": "text" + }, + { + "bbox": [ + 390, + 657, + 402, + 667 + ], + "score": 0.87, + "content": "\\mathbf { c } _ { \\mathcal { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 653, + 505, + 668 + ], + "score": 1.0, + "content": "is an aggregation of atom", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 665, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 186, + 681 + ], + "score": 1.0, + "content": "representations, i.e.", + "type": "text" + }, + { + "bbox": [ + 186, + 666, + 250, + 679 + ], + "score": 0.92, + "content": "\\mathbf { c } _ { \\mathcal { G } } = \\dot { \\sum _ { { u } \\in \\mathcal { V } } } \\mathbf { c } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 665, + 280, + 681 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 280, + 667, + 288, + 677 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 665, + 397, + 681 + ], + "score": 1.0, + "content": "has connected components", + "type": "text" + }, + { + "bbox": [ + 397, + 666, + 417, + 678 + ], + "score": 0.91, + "content": "\\left\\{ { \\mathcal { G } } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 665, + 506, + 681 + ], + "score": 1.0, + "content": ", we get a set of graph", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 168, + 691 + ], + "score": 1.0, + "content": "representations", + "type": "text" + }, + { + "bbox": [ + 168, + 678, + 192, + 690 + ], + "score": 0.92, + "content": "\\left\\{ \\mathbf { c } _ { \\mathcal { G } _ { i } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 677, + 241, + 691 + ], + "score": 1.0, + "content": ". For a bond", + "type": "text" + }, + { + "bbox": [ + 241, + 678, + 265, + 690 + ], + "score": 0.9, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 677, + 377, + 691 + ], + "score": 1.0, + "content": ", we define its representation", + "type": "text" + }, + { + "bbox": [ + 378, + 678, + 502, + 690 + ], + "score": 0.9, + "content": "\\mathbf { c } _ { u v } = ( \\operatorname { A B S } ( \\mathbf { c } _ { u } , \\mathbf { c } _ { v } ) | | \\mathbf { c } _ { u } + \\mathbf { c } _ { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 677, + 506, + 691 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 277, + 702 + ], + "score": 1.0, + "content": "where ABS denotes absolute difference and", + "type": "text" + }, + { + "bbox": [ + 278, + 690, + 284, + 701 + ], + "score": 0.85, + "content": "| |", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "refers to concatenation. This ensures our representations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "are permutation invariant. These representations are then used to predict atom and bond edit scores", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 711, + 259, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 259, + 723 + ], + "score": 1.0, + "content": "using corresponding neural networks,", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 104, + 653, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 245, + 69, + 365, + 104 + ], + "lines": [ + { + "bbox": [ + 245, + 69, + 365, + 104 + ], + "spans": [ + { + "bbox": [ + 245, + 69, + 365, + 104 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\boldsymbol { s } _ { u } = \\mathbf { u _ { a } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { a } } \\mathbf { c } _ { u } + b ) \\quad } \\\\ { \\boldsymbol { s } _ { u v k } = \\mathbf { u _ { k } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { k } } \\mathbf { c } _ { u v } + b _ { k } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "43a6f38c88896496f6b8c1e00b965fa739609189983ee4e111bdef371168642c.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 245, + 69, + 365, + 86.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 245, + 86.5, + 365, + 104.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 280, + 125 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 281, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 133, + 126 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 113, + 150, + 125 + ], + "score": 0.91, + "content": "\\tau ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 112, + 281, + 126 + ], + "score": 1.0, + "content": "is the ReLU activation function.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "Updating Bond Edit Scores Unlike a typical classification problem where the labels are indepen-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "dent, edits can have possible dependencies between each other. For example, bonds part of a stable", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "system such as an aromatic ring have a greater tendency to remain unchanged (label 0). We attempt", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "to leverage such dependencies to update initial edit scores. To this end, we build a graph with bonds", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 129, + 193 + ], + "score": 0.91, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 181, + 456, + 194 + ], + "score": 1.0, + "content": "as nodes, and introduce an edge between bonds sharing an atom. We use another", + "type": "text" + }, + { + "bbox": [ + 456, + 181, + 491, + 193 + ], + "score": 0.43, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 331, + 205 + ], + "score": 1.0, + "content": "this graph to learn aggregated neighborhood messages", + "type": "text" + }, + { + "bbox": [ + 332, + 193, + 352, + 203 + ], + "score": 0.88, + "content": "\\mathbf { m } _ { u v }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 191, + 465, + 205 + ], + "score": 1.0, + "content": ", and update the edit scores", + "type": "text" + }, + { + "bbox": [ + 466, + 194, + 486, + 203 + ], + "score": 0.9, + "content": "s _ { u v k }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "in a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 202, + 326, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 326, + 216 + ], + "score": 1.0, + "content": "manner similar to how LSTMs update representations,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 225, + 385, + 287 + ], + "lines": [ + { + "bbox": [ + 226, + 225, + 385, + 287 + ], + "spans": [ + { + "bbox": [ + 226, + 225, + 385, + 287 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { f _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { f } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { f } } \\mathbf { m } _ { u v } ) } \\\\ & { i _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { i } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { i } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { m } _ { u v k } = \\mathbf { u _ { m } } \\tau ( \\mathbf { W _ { k x } ^ { m } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { m } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { s } _ { u v k } = f _ { u v k } \\cdot s _ { u v k } + i _ { u v k } \\cdot \\tilde { m } _ { u v k } . } \\end{array}", + "type": "interline_equation", + "image_path": "190ca6c12e9d0551c6c507ca3bb0a358e64c6db98378f96a20d19207a9bfc801.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 225, + 385, + 240.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 226, + 240.5, + 385, + 256.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 226, + 256.0, + 385, + 271.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 226, + 271.5, + 385, + 287.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 297, + 478, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 479, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 479, + 310 + ], + "score": 1.0, + "content": "Training We train by minimizing the cross-entropy loss over possible bond and atom edits", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 319, + 435, + 360 + ], + "lines": [ + { + "bbox": [ + 176, + 319, + 435, + 360 + ], + "spans": [ + { + "bbox": [ + 176, + 319, + 435, + 360 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { e } = - \\sum _ { ( \\mathcal { G } _ { p } , E ) } \\left( \\sum _ { ( ( u , v ) , k ) \\in E } y _ { u v k } \\mathrm { l o g } ( \\widetilde s _ { u v k } ) + \\sum _ { u \\in E } y _ { u } \\mathrm { l o g } ( s _ { u } ) \\right) .", + "type": "interline_equation", + "image_path": "d39b464af053c1ddc554cc80cf10fc8a8cf6434c8681b4503820a67f7447deed.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 176, + 319, + 435, + 332.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 176, + 332.6666666666667, + 435, + 346.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 176, + 346.33333333333337, + 435, + 360.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "The cross-entropy loss enforces the model to learn a distribution over possible edits instead of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "reasoning about each edit independently, as with the binary cross entropy loss used in [Jin et al., 2017,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 185, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 185, + 405 + ], + "score": 1.0, + "content": "Coley et al., 2019].", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 218, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 219, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 219, + 432 + ], + "score": 1.0, + "content": "3.2 Synthon Completion", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "Synthons are completed into valid reactants by adding specific functionalities called leaving groups.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "This involves two complementary tasks: (i.) selecting the appropriate leaving group, and (ii.) attaching", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "the leaving group to the synthon. As ground truth leaving groups are not directly provided, we extract", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 493, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 291, + 485 + ], + "score": 1.0, + "content": "the leaving groups and construct a vocabulary", + "type": "text" + }, + { + "bbox": [ + 292, + 472, + 302, + 481 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 471, + 493, + 485 + ], + "score": 1.0, + "content": "of unique leaving groups during preprocessing.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 252, + 500 + ], + "score": 1.0, + "content": "The vocabulary has a limited size (", + "type": "text" + }, + { + "bbox": [ + 252, + 487, + 297, + 500 + ], + "score": 0.89, + "content": "| \\mathcal { X } | = 1 7 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "for a standard dataset with 50, 000 examples, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "72000 synthons) indicating the redundancy of leaving groups used in accomplishing retrosynthetic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "transformations. This redundancy also allows us to formulate leaving group selection as a classi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 198, + 534 + ], + "score": 1.0, + "content": "fication problem over", + "type": "text" + }, + { + "bbox": [ + 198, + 521, + 208, + 530 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 520, + 506, + 534 + ], + "score": 1.0, + "content": ", while retaining the ability to generate diverse reactants using different", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 531, + 237, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 237, + 544 + ], + "score": 1.0, + "content": "combinations of leaving groups.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "Vocabulary Construction Before constructing the vocabulary, we align connected components", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 477, + 580 + ], + "score": 1.0, + "content": "of synthon and reactant graphs by comparing atom mapping overlaps. Using aligned pairs", + "type": "text" + }, + { + "bbox": [ + 478, + 567, + 505, + 578 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { s _ { c } } =", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 576, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 146, + 590 + ], + "score": 0.91, + "content": "( \\gamma _ { s _ { c } } , \\mathcal { E } _ { s _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 576, + 164, + 592 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 164, + 577, + 231, + 589 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { r _ { c } } = ( \\nu _ { r _ { c } } , \\mathcal { E } _ { r _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 576, + 384, + 592 + ], + "score": 1.0, + "content": "as input, the leaving group vocabulary", + "type": "text" + }, + { + "bbox": [ + 384, + 578, + 394, + 587 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 576, + 505, + 592 + ], + "score": 1.0, + "content": "is constructed by extracting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 150, + 602 + ], + "score": 1.0, + "content": "subgraphs", + "type": "text" + }, + { + "bbox": [ + 150, + 589, + 214, + 600 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { l _ { c } } = ( \\nu _ { l _ { c } } , \\mathcal { E } _ { l _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 588, + 254, + 602 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 254, + 588, + 318, + 600 + ], + "score": 0.92, + "content": "\\smash { \\gamma _ { l _ { c } } = \\gamma _ { r _ { c } } \\setminus \\gamma _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 588, + 353, + 602 + ], + "score": 1.0, + "content": ". Atoms", + "type": "text" + }, + { + "bbox": [ + 353, + 588, + 372, + 600 + ], + "score": 0.92, + "content": "\\left\\{ { a } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "in the leaving groups that attach", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 401, + 611 + ], + "score": 1.0, + "content": "to synthons are marked with a special symbol. We also add three tokens to", + "type": "text" + }, + { + "bbox": [ + 401, + 600, + 411, + 609 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "namely START, which", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "indicates the start of synthon completion, END, which indicates that there is no leaving group to add", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 621, + 471, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 471, + 633 + ], + "score": 1.0, + "content": "and PAD, which is used to handle variable numbers of synthon components in a minibatch.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 321, + 659 + ], + "score": 1.0, + "content": "Leaving Group Selection For synthon component", + "type": "text" + }, + { + "bbox": [ + 322, + 646, + 349, + 656 + ], + "score": 0.91, + "content": "c \\leq C", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 645, + 381, + 659 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 381, + 646, + 390, + 655 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "is the number of connected", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "components in the synthon graph, we use three inputs for leaving group selection – the product", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 667, + 164, + 682 + ], + "score": 1.0, + "content": "representation", + "type": "text" + }, + { + "bbox": [ + 164, + 669, + 180, + 680 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 667, + 336, + 682 + ], + "score": 1.0, + "content": ", the synthon component representation", + "type": "text" + }, + { + "bbox": [ + 336, + 669, + 355, + 680 + ], + "score": 0.91, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 667, + 506, + 682 + ], + "score": 1.0, + "content": ", and the leaving group representation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 262, + 693 + ], + "score": 1.0, + "content": "for the previous synthon component,", + "type": "text" + }, + { + "bbox": [ + 262, + 680, + 284, + 690 + ], + "score": 0.9, + "content": "{ \\bf e } _ { l _ { c - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 677, + 506, + 693 + ], + "score": 1.0, + "content": ". The product and synthon representations are learnt", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 146, + 701 + ], + "score": 1.0, + "content": "using the", + "type": "text" + }, + { + "bbox": [ + 146, + 689, + 181, + 701 + ], + "score": 0.59, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 689, + 224, + 701 + ], + "score": 1.0, + "content": ". For each", + "type": "text" + }, + { + "bbox": [ + 225, + 689, + 256, + 700 + ], + "score": 0.91, + "content": "x _ { i } \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 689, + 506, + 701 + ], + "score": 1.0, + "content": ", representations can be learnt by either training independent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 281, + 713 + ], + "score": 1.0, + "content": "embedding vectors (ind) or by treating each", + "type": "text" + }, + { + "bbox": [ + 281, + 702, + 292, + 711 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 699, + 404, + 713 + ], + "score": 1.0, + "content": "as a subgraph and using the", + "type": "text" + }, + { + "bbox": [ + 405, + 700, + 439, + 712 + ], + "score": 0.35, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "(shared). In the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 387, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 235, + 724 + ], + "score": 1.0, + "content": "shared setting, we use the same", + "type": "text" + }, + { + "bbox": [ + 235, + 711, + 270, + 723 + ], + "score": 0.66, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 710, + 387, + 724 + ], + "score": 1.0, + "content": "as the product and synthons.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 245, + 69, + 365, + 104 + ], + "lines": [ + { + "bbox": [ + 245, + 69, + 365, + 104 + ], + "spans": [ + { + "bbox": [ + 245, + 69, + 365, + 104 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\boldsymbol { s } _ { u } = \\mathbf { u _ { a } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { a } } \\mathbf { c } _ { u } + b ) \\quad } \\\\ { \\boldsymbol { s } _ { u v k } = \\mathbf { u _ { k } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { k } } \\mathbf { c } _ { u v } + b _ { k } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "43a6f38c88896496f6b8c1e00b965fa739609189983ee4e111bdef371168642c.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 245, + 69, + 365, + 86.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 245, + 86.5, + 365, + 104.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 280, + 125 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 281, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 133, + 126 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 113, + 150, + 125 + ], + "score": 0.91, + "content": "\\tau ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 112, + 281, + 126 + ], + "score": 1.0, + "content": "is the ReLU activation function.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 112, + 281, + 126 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "Updating Bond Edit Scores Unlike a typical classification problem where the labels are indepen-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "dent, edits can have possible dependencies between each other. For example, bonds part of a stable", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "system such as an aromatic ring have a greater tendency to remain unchanged (label 0). We attempt", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "to leverage such dependencies to update initial edit scores. To this end, we build a graph with bonds", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 129, + 193 + ], + "score": 0.91, + "content": "( u , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 181, + 456, + 194 + ], + "score": 1.0, + "content": "as nodes, and introduce an edge between bonds sharing an atom. We use another", + "type": "text" + }, + { + "bbox": [ + 456, + 181, + 491, + 193 + ], + "score": 0.43, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 331, + 205 + ], + "score": 1.0, + "content": "this graph to learn aggregated neighborhood messages", + "type": "text" + }, + { + "bbox": [ + 332, + 193, + 352, + 203 + ], + "score": 0.88, + "content": "\\mathbf { m } _ { u v }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 191, + 465, + 205 + ], + "score": 1.0, + "content": ", and update the edit scores", + "type": "text" + }, + { + "bbox": [ + 466, + 194, + 486, + 203 + ], + "score": 0.9, + "content": "s _ { u v k }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "in a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 202, + 326, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 326, + 216 + ], + "score": 1.0, + "content": "manner similar to how LSTMs update representations,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 136, + 506, + 216 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 225, + 385, + 287 + ], + "lines": [ + { + "bbox": [ + 226, + 225, + 385, + 287 + ], + "spans": [ + { + "bbox": [ + 226, + 225, + 385, + 287 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { f _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { f } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { f } } \\mathbf { m } _ { u v } ) } \\\\ & { i _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { i } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { i } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { m } _ { u v k } = \\mathbf { u _ { m } } \\tau ( \\mathbf { W _ { k x } ^ { m } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { m } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { s } _ { u v k } = f _ { u v k } \\cdot s _ { u v k } + i _ { u v k } \\cdot \\tilde { m } _ { u v k } . } \\end{array}", + "type": "interline_equation", + "image_path": "190ca6c12e9d0551c6c507ca3bb0a358e64c6db98378f96a20d19207a9bfc801.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 225, + 385, + 240.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 226, + 240.5, + 385, + 256.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 226, + 256.0, + 385, + 271.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 226, + 271.5, + 385, + 287.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 297, + 478, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 479, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 479, + 310 + ], + "score": 1.0, + "content": "Training We train by minimizing the cross-entropy loss over possible bond and atom edits", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 296, + 479, + 310 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 319, + 435, + 360 + ], + "lines": [ + { + "bbox": [ + 176, + 319, + 435, + 360 + ], + "spans": [ + { + "bbox": [ + 176, + 319, + 435, + 360 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { e } = - \\sum _ { ( \\mathcal { G } _ { p } , E ) } \\left( \\sum _ { ( ( u , v ) , k ) \\in E } y _ { u v k } \\mathrm { l o g } ( \\widetilde s _ { u v k } ) + \\sum _ { u \\in E } y _ { u } \\mathrm { l o g } ( s _ { u } ) \\right) .", + "type": "interline_equation", + "image_path": "d39b464af053c1ddc554cc80cf10fc8a8cf6434c8681b4503820a67f7447deed.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 176, + 319, + 435, + 332.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 176, + 332.6666666666667, + 435, + 346.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 176, + 346.33333333333337, + 435, + 360.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "The cross-entropy loss enforces the model to learn a distribution over possible edits instead of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "reasoning about each edit independently, as with the binary cross entropy loss used in [Jin et al., 2017,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 185, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 185, + 405 + ], + "score": 1.0, + "content": "Coley et al., 2019].", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 370, + 506, + 405 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 218, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 219, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 219, + 432 + ], + "score": 1.0, + "content": "3.2 Synthon Completion", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "Synthons are completed into valid reactants by adding specific functionalities called leaving groups.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "This involves two complementary tasks: (i.) selecting the appropriate leaving group, and (ii.) attaching", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "the leaving group to the synthon. As ground truth leaving groups are not directly provided, we extract", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 493, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 291, + 485 + ], + "score": 1.0, + "content": "the leaving groups and construct a vocabulary", + "type": "text" + }, + { + "bbox": [ + 292, + 472, + 302, + 481 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 471, + 493, + 485 + ], + "score": 1.0, + "content": "of unique leaving groups during preprocessing.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 438, + 506, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 252, + 500 + ], + "score": 1.0, + "content": "The vocabulary has a limited size (", + "type": "text" + }, + { + "bbox": [ + 252, + 487, + 297, + 500 + ], + "score": 0.89, + "content": "| \\mathcal { X } | = 1 7 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "for a standard dataset with 50, 000 examples, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "72000 synthons) indicating the redundancy of leaving groups used in accomplishing retrosynthetic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "transformations. This redundancy also allows us to formulate leaving group selection as a classi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 198, + 534 + ], + "score": 1.0, + "content": "fication problem over", + "type": "text" + }, + { + "bbox": [ + 198, + 521, + 208, + 530 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 520, + 506, + 534 + ], + "score": 1.0, + "content": ", while retaining the ability to generate diverse reactants using different", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 531, + 237, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 237, + 544 + ], + "score": 1.0, + "content": "combinations of leaving groups.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 487, + 506, + 544 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "Vocabulary Construction Before constructing the vocabulary, we align connected components", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 477, + 580 + ], + "score": 1.0, + "content": "of synthon and reactant graphs by comparing atom mapping overlaps. Using aligned pairs", + "type": "text" + }, + { + "bbox": [ + 478, + 567, + 505, + 578 + ], + "score": 0.9, + "content": "\\mathcal { G } _ { s _ { c } } =", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 576, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 146, + 590 + ], + "score": 0.91, + "content": "( \\gamma _ { s _ { c } } , \\mathcal { E } _ { s _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 576, + 164, + 592 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 164, + 577, + 231, + 589 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { r _ { c } } = ( \\nu _ { r _ { c } } , \\mathcal { E } _ { r _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 576, + 384, + 592 + ], + "score": 1.0, + "content": "as input, the leaving group vocabulary", + "type": "text" + }, + { + "bbox": [ + 384, + 578, + 394, + 587 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 576, + 505, + 592 + ], + "score": 1.0, + "content": "is constructed by extracting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 150, + 602 + ], + "score": 1.0, + "content": "subgraphs", + "type": "text" + }, + { + "bbox": [ + 150, + 589, + 214, + 600 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { l _ { c } } = ( \\nu _ { l _ { c } } , \\mathcal { E } _ { l _ { c } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 588, + 254, + 602 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 254, + 588, + 318, + 600 + ], + "score": 0.92, + "content": "\\smash { \\gamma _ { l _ { c } } = \\gamma _ { r _ { c } } \\setminus \\gamma _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 588, + 353, + 602 + ], + "score": 1.0, + "content": ". Atoms", + "type": "text" + }, + { + "bbox": [ + 353, + 588, + 372, + 600 + ], + "score": 0.92, + "content": "\\left\\{ { a } _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "in the leaving groups that attach", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 401, + 611 + ], + "score": 1.0, + "content": "to synthons are marked with a special symbol. We also add three tokens to", + "type": "text" + }, + { + "bbox": [ + 401, + 600, + 411, + 609 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "namely START, which", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "indicates the start of synthon completion, END, which indicates that there is no leaving group to add", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 621, + 471, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 471, + 633 + ], + "score": 1.0, + "content": "and PAD, which is used to handle variable numbers of synthon components in a minibatch.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 554, + 506, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 321, + 659 + ], + "score": 1.0, + "content": "Leaving Group Selection For synthon component", + "type": "text" + }, + { + "bbox": [ + 322, + 646, + 349, + 656 + ], + "score": 0.91, + "content": "c \\leq C", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 645, + 381, + 659 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 381, + 646, + 390, + 655 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "is the number of connected", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "components in the synthon graph, we use three inputs for leaving group selection – the product", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 667, + 164, + 682 + ], + "score": 1.0, + "content": "representation", + "type": "text" + }, + { + "bbox": [ + 164, + 669, + 180, + 680 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 667, + 336, + 682 + ], + "score": 1.0, + "content": ", the synthon component representation", + "type": "text" + }, + { + "bbox": [ + 336, + 669, + 355, + 680 + ], + "score": 0.91, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 667, + 506, + 682 + ], + "score": 1.0, + "content": ", and the leaving group representation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 262, + 693 + ], + "score": 1.0, + "content": "for the previous synthon component,", + "type": "text" + }, + { + "bbox": [ + 262, + 680, + 284, + 690 + ], + "score": 0.9, + "content": "{ \\bf e } _ { l _ { c - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 677, + 506, + 693 + ], + "score": 1.0, + "content": ". The product and synthon representations are learnt", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 146, + 701 + ], + "score": 1.0, + "content": "using the", + "type": "text" + }, + { + "bbox": [ + 146, + 689, + 181, + 701 + ], + "score": 0.59, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 689, + 224, + 701 + ], + "score": 1.0, + "content": ". For each", + "type": "text" + }, + { + "bbox": [ + 225, + 689, + 256, + 700 + ], + "score": 0.91, + "content": "x _ { i } \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 689, + 506, + 701 + ], + "score": 1.0, + "content": ", representations can be learnt by either training independent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 281, + 713 + ], + "score": 1.0, + "content": "embedding vectors (ind) or by treating each", + "type": "text" + }, + { + "bbox": [ + 281, + 702, + 292, + 711 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 699, + 404, + 713 + ], + "score": 1.0, + "content": "as a subgraph and using the", + "type": "text" + }, + { + "bbox": [ + 405, + 700, + 439, + 712 + ], + "score": 0.35, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "(shared). In the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 387, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 235, + 724 + ], + "score": 1.0, + "content": "shared setting, we use the same", + "type": "text" + }, + { + "bbox": [ + 235, + 711, + 270, + 723 + ], + "score": 0.66, + "content": "\\mathrm { M P N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 710, + 387, + 724 + ], + "score": 1.0, + "content": "as the product and synthons.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 645, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 70, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 70, + 374, + 87 + ], + "score": 1.0, + "content": "The leaving group probabilities are then computed by combining", + "type": "text" + }, + { + "bbox": [ + 375, + 74, + 413, + 86 + ], + "score": 0.73, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } } , \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 70, + 432, + 87 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 433, + 74, + 454, + 86 + ], + "score": 0.89, + "content": "\\mathbf { e } _ { l _ { c - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 70, + 506, + 87 + ], + "score": 1.0, + "content": "via a single", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 281, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 281, + 96 + ], + "score": 1.0, + "content": "layer neural network and softmax function", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 104, + 423, + 120 + ], + "lines": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "spans": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "score": 0.88, + "content": "\\hat { q } _ { l _ { c } } = \\mathrm { s o f t m a x } \\left( \\mathbf { U } \\tau \\left( \\mathbf { W } _ { 1 } \\mathbf { c } _ { \\mathcal { G } _ { p } } + \\mathbf { W } _ { 2 } \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } } + \\mathbf { W } _ { 3 } \\mathbf { e } _ { l _ { \\left( c - 1 \\right) } } \\right) \\right) ,", + "type": "interline_equation", + "image_path": "d2fa89696df25b480905fd11b89872899b1206510d6da72f11724cb4e151b106.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 130, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 104, + 127, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 133, + 147 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 145, + 142 + ], + "score": 0.89, + "content": "\\hat { q } _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 127, + 249, + 147 + ], + "score": 1.0, + "content": "is distribution learnt over", + "type": "text" + }, + { + "bbox": [ + 249, + 131, + 259, + 140 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 127, + 482, + 147 + ], + "score": 1.0, + "content": ". Using the representation of the previous leaving group", + "type": "text" + }, + { + "bbox": [ + 483, + 133, + 504, + 143 + ], + "score": 0.88, + "content": "{ \\bf e } _ { l _ { c - 1 } }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "allows the model to understand combinations of leaving groups that generate the desired product", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 354, + 165 + ], + "score": 1.0, + "content": "from the reactants. We also include the product representation", + "type": "text" + }, + { + "bbox": [ + 354, + 154, + 369, + 165 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "as the synthon graphs are derived", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 203, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 203, + 176 + ], + "score": 1.0, + "content": "from the product graph.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 189, + 199 + ], + "score": 1.0, + "content": "Training For step", + "type": "text" + }, + { + "bbox": [ + 190, + 189, + 195, + 196 + ], + "score": 0.58, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 184, + 417, + 199 + ], + "score": 1.0, + "content": ", given the one hot encoding of the true leaving group", + "type": "text" + }, + { + "bbox": [ + 417, + 188, + 429, + 198 + ], + "score": 0.86, + "content": "q _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 184, + 506, + 199 + ], + "score": 1.0, + "content": ", we minimize the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 198, + 182, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 182, + 209 + ], + "score": 1.0, + "content": "cross-entropy loss", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 218, + 349, + 253 + ], + "lines": [ + { + "bbox": [ + 262, + 218, + 349, + 253 + ], + "spans": [ + { + "bbox": [ + 262, + 218, + 349, + 253 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { s } = \\sum _ { c = 1 } ^ { C } \\mathcal { L } ( \\hat { q } _ { l _ { c } } , q _ { l _ { c } } ) .", + "type": "interline_equation", + "image_path": "c5878d96a04183a5e264e043e021073accc4e3106f900490a5939023894394b7.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 262, + 218, + 349, + 235.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 262, + 235.5, + 349, + 253.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "Training utilizes teacher-forcing [Williams and Zipser, 1989] so that the model makes predictions", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "given correct histories. During inference, at every step, we use the representation of leaving group", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 284, + 352, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 352, + 297 + ], + "score": 1.0, + "content": "from the previous step with the highest predicted probability.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "score": 1.0, + "content": "Leaving Group Attachment Attaching leaving groups to synthons is a deterministic process and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "score": 1.0, + "content": "not learnt during training. The task involves identification of the type of bonds to add between", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "attaching atoms in the leaving group (marked during vocabulary construction), and the atom(s)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "participating in the edit. These bonds can be inferred by applying the valency constraint, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "determines the maximum number of neighbors for each atom. The attachment process does not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 480, + 375 + ], + "score": 1.0, + "content": "modify any stereochemistry. Given synthons and leaving groups, the attachment process has a", + "type": "text" + }, + { + "bbox": [ + 480, + 362, + 505, + 372 + ], + "score": 0.85, + "content": "100 \\%", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 358, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 358, + 385 + ], + "score": 1.0, + "content": "accuracy. The detailed procedure is described in Appendix ??.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 397, + 171, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 173, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 173, + 410 + ], + "score": 1.0, + "content": "3.3 Inference", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 506, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 495, + 429 + ], + "score": 1.0, + "content": "Inference is performed using beam search with a log-likelihood scoring function. For a beam width", + "type": "text" + }, + { + "bbox": [ + 496, + 419, + 502, + 427 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 417, + 506, + 429 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 145, + 440 + ], + "score": 1.0, + "content": "we select", + "type": "text" + }, + { + "bbox": [ + 145, + 430, + 153, + 438 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 428, + 409, + 440 + ], + "score": 1.0, + "content": "edits with highest scores and apply them to the product to obtain", + "type": "text" + }, + { + "bbox": [ + 410, + 430, + 417, + 438 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "synthons, where each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "synthon can consist of multiple connected components. The synthons form the nodes for beam search.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "Each node maintains a cumulative score by aggregating the log-likelihoods of the edit and predicted", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "score": 1.0, + "content": "leaving groups. Leaving group inference starts with a connected component for each synthon, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 136, + 484 + ], + "score": 1.0, + "content": "selects", + "type": "text" + }, + { + "bbox": [ + 136, + 474, + 143, + 482 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 471, + 364, + 484 + ], + "score": 1.0, + "content": "leaving groups with highest log-likelihoods. From the", + "type": "text" + }, + { + "bbox": [ + 365, + 471, + 376, + 482 + ], + "score": 0.86, + "content": "n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 471, + 470, + 484 + ], + "score": 1.0, + "content": "possibilities, we select", + "type": "text" + }, + { + "bbox": [ + 470, + 474, + 478, + 482 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "nodes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "with the highest cumulative scores. This process is repeated until all nodes have a leaving group", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 494, + 263, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 263, + 506 + ], + "score": 1.0, + "content": "predicted for each synthon component.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 107, + 520, + 181, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 182, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 182, + 535 + ], + "score": 1.0, + "content": "4 Evaluation", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "Evaluating retrosynthesis models is challenging as multiple sets of reactants can be generated from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "the same product. To deal with this, previous works [Coley et al., 2017b, Dai et al., 2019] evaluate", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 438, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 438, + 579 + ], + "score": 1.0, + "content": "the ability of the model to recover retrosynthetic strategies recorded in the dataset.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "Data We use the benchmark dataset USPTO-50k [Schneider et al., 2016] for all our experiments.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "The dataset contains 50, 000 atom-mapped reactions across 10 reaction classes. We use the same", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 612, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 506, + 623 + ], + "score": 1.0, + "content": "dataset version and splits as provided by [Dai et al., 2019]. The USPTO-50k dataset contains a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 403, + 635 + ], + "score": 1.0, + "content": "shortcut in that the product atom with atom-mapping 1 is part of the edit in", + "type": "text" + }, + { + "bbox": [ + 404, + 622, + 429, + 633 + ], + "score": 0.89, + "content": "\\sim 7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "of the cases. If the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "product SMILES is not canonicalized, predictions utilizing operations that depend on the position of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "the atom or bond will be able to use the shortcut, and overestimate performance. We canonicalize the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 507, + 668 + ], + "score": 1.0, + "content": "product SMILES, and reassign atom-mappings to the reactant atoms based on the canonical ordering,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 487, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 487, + 678 + ], + "score": 1.0, + "content": "which removes the shortcut. Details on the remapping procedure can be found in Appendix ??.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 227, + 702 + ], + "score": 1.0, + "content": "Evaluation We use the top-", + "type": "text" + }, + { + "bbox": [ + 227, + 691, + 234, + 699 + ], + "score": 0.75, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "accuracy", + "type": "text" + }, + { + "bbox": [ + 277, + 689, + 338, + 700 + ], + "score": 0.76, + "content": "( n = 1 , 3 , 5 , 1 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 688, + 506, + 702 + ], + "score": 1.0, + "content": ") as our evaluation metric, defined as the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 700, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 451, + 713 + ], + "score": 1.0, + "content": "fraction of examples where the recorded reactants are suggested by the model with rank", + "type": "text" + }, + { + "bbox": [ + 451, + 700, + 469, + 711 + ], + "score": 0.87, + "content": "\\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 700, + 507, + 713 + ], + "score": 1.0, + "content": ". Follow-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 725 + ], + "score": 1.0, + "content": "ing prior work [Coley et al., 2017b, Zheng et al., 2019, Dai et al., 2019], we compute the accuracy", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 70, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 70, + 374, + 87 + ], + "score": 1.0, + "content": "The leaving group probabilities are then computed by combining", + "type": "text" + }, + { + "bbox": [ + 375, + 74, + 413, + 86 + ], + "score": 0.73, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } } , \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 70, + 432, + 87 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 433, + 74, + 454, + 86 + ], + "score": 0.89, + "content": "\\mathbf { e } _ { l _ { c - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 70, + 506, + 87 + ], + "score": 1.0, + "content": "via a single", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 281, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 281, + 96 + ], + "score": 1.0, + "content": "layer neural network and softmax function", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 70, + 506, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 104, + 423, + 120 + ], + "lines": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "spans": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "score": 0.88, + "content": "\\hat { q } _ { l _ { c } } = \\mathrm { s o f t m a x } \\left( \\mathbf { U } \\tau \\left( \\mathbf { W } _ { 1 } \\mathbf { c } _ { \\mathcal { G } _ { p } } + \\mathbf { W } _ { 2 } \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } } + \\mathbf { W } _ { 3 } \\mathbf { e } _ { l _ { \\left( c - 1 \\right) } } \\right) \\right) ,", + "type": "interline_equation", + "image_path": "d2fa89696df25b480905fd11b89872899b1206510d6da72f11724cb4e151b106.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 187, + 104, + 423, + 120 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 130, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 104, + 127, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 133, + 147 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 145, + 142 + ], + "score": 0.89, + "content": "\\hat { q } _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 127, + 249, + 147 + ], + "score": 1.0, + "content": "is distribution learnt over", + "type": "text" + }, + { + "bbox": [ + 249, + 131, + 259, + 140 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 127, + 482, + 147 + ], + "score": 1.0, + "content": ". Using the representation of the previous leaving group", + "type": "text" + }, + { + "bbox": [ + 483, + 133, + 504, + 143 + ], + "score": 0.88, + "content": "{ \\bf e } _ { l _ { c - 1 } }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "allows the model to understand combinations of leaving groups that generate the desired product", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 354, + 165 + ], + "score": 1.0, + "content": "from the reactants. We also include the product representation", + "type": "text" + }, + { + "bbox": [ + 354, + 154, + 369, + 165 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { \\mathcal { G } _ { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "as the synthon graphs are derived", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 203, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 203, + 176 + ], + "score": 1.0, + "content": "from the product graph.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 127, + 506, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 189, + 199 + ], + "score": 1.0, + "content": "Training For step", + "type": "text" + }, + { + "bbox": [ + 190, + 189, + 195, + 196 + ], + "score": 0.58, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 184, + 417, + 199 + ], + "score": 1.0, + "content": ", given the one hot encoding of the true leaving group", + "type": "text" + }, + { + "bbox": [ + 417, + 188, + 429, + 198 + ], + "score": 0.86, + "content": "q _ { l _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 184, + 506, + 199 + ], + "score": 1.0, + "content": ", we minimize the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 198, + 182, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 182, + 209 + ], + "score": 1.0, + "content": "cross-entropy loss", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 184, + 506, + 209 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 218, + 349, + 253 + ], + "lines": [ + { + "bbox": [ + 262, + 218, + 349, + 253 + ], + "spans": [ + { + "bbox": [ + 262, + 218, + 349, + 253 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { s } = \\sum _ { c = 1 } ^ { C } \\mathcal { L } ( \\hat { q } _ { l _ { c } } , q _ { l _ { c } } ) .", + "type": "interline_equation", + "image_path": "c5878d96a04183a5e264e043e021073accc4e3106f900490a5939023894394b7.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 262, + 218, + 349, + 235.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 262, + 235.5, + 349, + 253.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "Training utilizes teacher-forcing [Williams and Zipser, 1989] so that the model makes predictions", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "given correct histories. During inference, at every step, we use the representation of leaving group", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 284, + 352, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 352, + 297 + ], + "score": 1.0, + "content": "from the previous step with the highest predicted probability.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 262, + 506, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "score": 1.0, + "content": "Leaving Group Attachment Attaching leaving groups to synthons is a deterministic process and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "score": 1.0, + "content": "not learnt during training. The task involves identification of the type of bonds to add between", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "attaching atoms in the leaving group (marked during vocabulary construction), and the atom(s)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "participating in the edit. These bonds can be inferred by applying the valency constraint, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "determines the maximum number of neighbors for each atom. The attachment process does not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 480, + 375 + ], + "score": 1.0, + "content": "modify any stereochemistry. Given synthons and leaving groups, the attachment process has a", + "type": "text" + }, + { + "bbox": [ + 480, + 362, + 505, + 372 + ], + "score": 0.85, + "content": "100 \\%", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 358, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 358, + 385 + ], + "score": 1.0, + "content": "accuracy. The detailed procedure is described in Appendix ??.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 307, + 506, + 385 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 397, + 171, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 173, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 173, + 410 + ], + "score": 1.0, + "content": "3.3 Inference", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 506, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 495, + 429 + ], + "score": 1.0, + "content": "Inference is performed using beam search with a log-likelihood scoring function. For a beam width", + "type": "text" + }, + { + "bbox": [ + 496, + 419, + 502, + 427 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 417, + 506, + 429 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 145, + 440 + ], + "score": 1.0, + "content": "we select", + "type": "text" + }, + { + "bbox": [ + 145, + 430, + 153, + 438 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 428, + 409, + 440 + ], + "score": 1.0, + "content": "edits with highest scores and apply them to the product to obtain", + "type": "text" + }, + { + "bbox": [ + 410, + 430, + 417, + 438 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "synthons, where each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "synthon can consist of multiple connected components. The synthons form the nodes for beam search.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "Each node maintains a cumulative score by aggregating the log-likelihoods of the edit and predicted", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "score": 1.0, + "content": "leaving groups. Leaving group inference starts with a connected component for each synthon, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 136, + 484 + ], + "score": 1.0, + "content": "selects", + "type": "text" + }, + { + "bbox": [ + 136, + 474, + 143, + 482 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 471, + 364, + 484 + ], + "score": 1.0, + "content": "leaving groups with highest log-likelihoods. From the", + "type": "text" + }, + { + "bbox": [ + 365, + 471, + 376, + 482 + ], + "score": 0.86, + "content": "n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 471, + 470, + 484 + ], + "score": 1.0, + "content": "possibilities, we select", + "type": "text" + }, + { + "bbox": [ + 470, + 474, + 478, + 482 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "nodes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "with the highest cumulative scores. This process is repeated until all nodes have a leaving group", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 494, + 263, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 263, + 506 + ], + "score": 1.0, + "content": "predicted for each synthon component.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 417, + 506, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 520, + 181, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 182, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 182, + 535 + ], + "score": 1.0, + "content": "4 Evaluation", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "Evaluating retrosynthesis models is challenging as multiple sets of reactants can be generated from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "the same product. To deal with this, previous works [Coley et al., 2017b, Dai et al., 2019] evaluate", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 438, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 438, + 579 + ], + "score": 1.0, + "content": "the ability of the model to recover retrosynthetic strategies recorded in the dataset.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 545, + 505, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "Data We use the benchmark dataset USPTO-50k [Schneider et al., 2016] for all our experiments.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "The dataset contains 50, 000 atom-mapped reactions across 10 reaction classes. We use the same", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 612, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 506, + 623 + ], + "score": 1.0, + "content": "dataset version and splits as provided by [Dai et al., 2019]. The USPTO-50k dataset contains a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 403, + 635 + ], + "score": 1.0, + "content": "shortcut in that the product atom with atom-mapping 1 is part of the edit in", + "type": "text" + }, + { + "bbox": [ + 404, + 622, + 429, + 633 + ], + "score": 0.89, + "content": "\\sim 7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "of the cases. If the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "product SMILES is not canonicalized, predictions utilizing operations that depend on the position of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "the atom or bond will be able to use the shortcut, and overestimate performance. We canonicalize the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 507, + 668 + ], + "score": 1.0, + "content": "product SMILES, and reassign atom-mappings to the reactant atoms based on the canonical ordering,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 487, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 487, + 678 + ], + "score": 1.0, + "content": "which removes the shortcut. Details on the remapping procedure can be found in Appendix ??.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 588, + 507, + 678 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 227, + 702 + ], + "score": 1.0, + "content": "Evaluation We use the top-", + "type": "text" + }, + { + "bbox": [ + 227, + 691, + 234, + 699 + ], + "score": 0.75, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "accuracy", + "type": "text" + }, + { + "bbox": [ + 277, + 689, + 338, + 700 + ], + "score": 0.76, + "content": "( n = 1 , 3 , 5 , 1 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 688, + 506, + 702 + ], + "score": 1.0, + "content": ") as our evaluation metric, defined as the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 700, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 451, + 713 + ], + "score": 1.0, + "content": "fraction of examples where the recorded reactants are suggested by the model with rank", + "type": "text" + }, + { + "bbox": [ + 451, + 700, + 469, + 711 + ], + "score": 0.87, + "content": "\\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 700, + 507, + 713 + ], + "score": 1.0, + "content": ". Follow-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 725 + ], + "score": 1.0, + "content": "ing prior work [Coley et al., 2017b, Zheng et al., 2019, Dai et al., 2019], we compute the accuracy", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "by comparing the canonical SMILES of predicted reactants to the ground truth. Atom-mapping is", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "excluded from this comparison, but stereochemistry, which describes the relative orientation of atoms", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "in the molecule, is retained. The evaluation is carried out for two settings, with the reaction class", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 345, + 213, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 213, + 357 + ], + "score": 1.0, + "content": "being known or unknown.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 688, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 92, + 506, + 290 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 77, + 495, + 89 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 76, + 497, + 90 + ], + "spans": [ + { + "bbox": [ + 113, + 76, + 169, + 90 + ], + "score": 1.0, + "content": "Table 1: Top-", + "type": "text" + }, + { + "bbox": [ + 169, + 79, + 176, + 88 + ], + "score": 0.5, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 76, + 497, + 90 + ], + "score": 1.0, + "content": "exact match accuracy. Best values within each section are highlighted in bold.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 105, + 92, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 92, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 290 + ], + "score": 0.983, + "html": "
ModelTop-n Accuracy (%)
Reaction class knownReaction class unknown
1351013510
Template-Based
RETROSIM [Coley et al.,2017b]52.973.881.288.137.354.763.374.1
NEURALSYM [Segler and Waller,2017]55.376.081.485.144.465.372.478.9
GLN [Dai et ai., 2019]64.279.185.290.052.569.075.683.7
DUALTB [Sun et al.,2021]67.784.888.992.055.274.680.586.9
Template-Free
SCROP [Zheng et al.,2019]59.074.878.181.143.760.065.268.7
LV-TRANSFORMER [Chen et al.,2019]----40.565.172.879.4
DUALTF [Sun et al., 2021]65.781.984.785.953.670.774.677.0
Semi-Template-Based
G2Gs [Shi et al.,2020]61.081.386.088.748.967.672.575.5
RETROXPERT [Yan et al.,2020]62.175.878.580.950.461.162.363.4
GRAPHRETRO (ours)63.981.585.288.153.768.372.275.5
", + "type": "table", + "image_path": "b50491b8ada14574c6239d28c43d14386b5d359906cdb5f2c186422249a03113.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 105, + 92, + 506, + 158.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 158.0, + 506, + 224.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 224.0, + 506, + 290.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "by comparing the canonical SMILES of predicted reactants to the ground truth. Atom-mapping is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "excluded from this comparison, but stereochemistry, which describes the relative orientation of atoms", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "in the molecule, is retained. The evaluation is carried out for two settings, with the reaction class", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 345, + 213, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 213, + 357 + ], + "score": 1.0, + "content": "being known or unknown.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 499, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 499, + 382 + ], + "score": 1.0, + "content": "Baselines For evaluating overall performance, we compare GRAPHRETRO to nine baselines —", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 379, + 491, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 491, + 392 + ], + "score": 1.0, + "content": "four template-based, three template-free, and two semi-template-based methods. These include:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 111, + 402, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 110, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 110, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "Template-Based: RETROSIM Coley et al. [2017b] ranks templates for a given target molecule by", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 120, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 120, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "computing molecular similarities to precedent reactions. NEURALSYM [Segler and Waller, 2017]", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 120, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 120, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "trains a model to rank templates given a target molecule. GLN [Dai et al., 2019] models the joint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 121, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 121, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "distribution of templates and reactants in a hierarchical fashion using logic variables. DUALTB", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 120, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 120, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "[Sun et al., 2021] uses an energy-based model formulation for retrosynthesis, with additional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 120, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 120, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "parameterizations and loss terms to enforce the duality between forward (reaction prediction) and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 120, + 469, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 120, + 469, + 506, + 480 + ], + "score": 1.0, + "content": "backward (retrosynthesis prediction). Inference is carried out using reactant candidates obtained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 120, + 479, + 336, + 493 + ], + "spans": [ + { + "bbox": [ + 120, + 479, + 336, + 493 + ], + "score": 1.0, + "content": "by applying an extracted template set to the products.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 112, + 496, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 111, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 111, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Template-Free: SCROP [Zheng et al., 2019], LV-TRANSFORMER [Chen et al., 2019] and DUALTF", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 121, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 121, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "[Sun et al., 2021] use the Transformer architecture [Vaswani et al., 2017] to output reactant", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 120, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 120, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "SMILES given a product SMILES. To improve the validity of their suggestions, SCROP in-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 120, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 120, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "clude a second Transformer that functions as a syntax correcter. LV-TRANSFORMER uses a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 120, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 120, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "latent variable mixture model to improve diversity of suggestions. DUALTF utilizes additional", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 120, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 120, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "parameterizations and loss terms to enforce the duality between forward (reaction prediction) and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 121, + 562, + 272, + 574 + ], + "spans": [ + { + "bbox": [ + 121, + 562, + 272, + 574 + ], + "score": 1.0, + "content": "backward (retrosynthesis prediction).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 112, + 578, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 111, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 111, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Semi-Template-Based: G2GS [Shi et al., 2020] and RETROXPERT [Yan et al., 2020] first identify", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 120, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 120, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "synthons, and then expand the synthons into reactants by either sequential generation of atoms", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 120, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 120, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "and bonds (G2Gs), or using the Transformer architecture (RETROXPERT). The training dataset", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 120, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 120, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "for the Transformer in [Yan et al., 2020] is augmented with incorrectly predicted synthons with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 121, + 622, + 301, + 634 + ], + "spans": [ + { + "bbox": [ + 121, + 622, + 301, + 634 + ], + "score": 1.0, + "content": "the goal of learning a correction mechanism.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 108, + 644, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Results for NEURALSYM are taken from [Dai et al., 2019]. The authors in [Yan et al., 2020] report", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "their performance being affected by the dataset leakage2. Thus, we use the most recent results", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "from their website on the canonicalized dataset. For remaining baselines, we directly use the values", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "reported in their paper. For the synthon completion module, we use the ind configuration given its", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 688, + 227, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 227, + 701 + ], + "score": 1.0, + "content": "better empirical performance.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 712, + 268, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 270, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 270, + 724 + ], + "score": 1.0, + "content": "2https://github.com/uta-smile/RetroXpert", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 92, + 506, + 290 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 77, + 495, + 89 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 76, + 497, + 90 + ], + "spans": [ + { + "bbox": [ + 113, + 76, + 169, + 90 + ], + "score": 1.0, + "content": "Table 1: Top-", + "type": "text" + }, + { + "bbox": [ + 169, + 79, + 176, + 88 + ], + "score": 0.5, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 76, + 497, + 90 + ], + "score": 1.0, + "content": "exact match accuracy. Best values within each section are highlighted in bold.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 105, + 92, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 92, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 290 + ], + "score": 0.983, + "html": "
ModelTop-n Accuracy (%)
Reaction class knownReaction class unknown
1351013510
Template-Based
RETROSIM [Coley et al.,2017b]52.973.881.288.137.354.763.374.1
NEURALSYM [Segler and Waller,2017]55.376.081.485.144.465.372.478.9
GLN [Dai et ai., 2019]64.279.185.290.052.569.075.683.7
DUALTB [Sun et al.,2021]67.784.888.992.055.274.680.586.9
Template-Free
SCROP [Zheng et al.,2019]59.074.878.181.143.760.065.268.7
LV-TRANSFORMER [Chen et al.,2019]----40.565.172.879.4
DUALTF [Sun et al., 2021]65.781.984.785.953.670.774.677.0
Semi-Template-Based
G2Gs [Shi et al.,2020]61.081.386.088.748.967.672.575.5
RETROXPERT [Yan et al.,2020]62.175.878.580.950.461.162.363.4
GRAPHRETRO (ours)63.981.585.288.153.768.372.275.5
", + "type": "table", + "image_path": "b50491b8ada14574c6239d28c43d14386b5d359906cdb5f2c186422249a03113.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 105, + 92, + 506, + 158.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 158.0, + 506, + 224.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 224.0, + 506, + 290.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 505, + 355 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 311, + 506, + 357 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 499, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 499, + 382 + ], + "score": 1.0, + "content": "Baselines For evaluating overall performance, we compare GRAPHRETRO to nine baselines —", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 379, + 491, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 491, + 392 + ], + "score": 1.0, + "content": "four template-based, three template-free, and two semi-template-based methods. These include:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 368, + 499, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 402, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 110, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 110, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "Template-Based: RETROSIM Coley et al. [2017b] ranks templates for a given target molecule by", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 120, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 120, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "computing molecular similarities to precedent reactions. NEURALSYM [Segler and Waller, 2017]", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 120, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 120, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "trains a model to rank templates given a target molecule. GLN [Dai et al., 2019] models the joint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 121, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 121, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "distribution of templates and reactants in a hierarchical fashion using logic variables. DUALTB", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 120, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 120, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "[Sun et al., 2021] uses an energy-based model formulation for retrosynthesis, with additional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 120, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 120, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "parameterizations and loss terms to enforce the duality between forward (reaction prediction) and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 120, + 469, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 120, + 469, + 506, + 480 + ], + "score": 1.0, + "content": "backward (retrosynthesis prediction). Inference is carried out using reactant candidates obtained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 120, + 479, + 336, + 493 + ], + "spans": [ + { + "bbox": [ + 120, + 479, + 336, + 493 + ], + "score": 1.0, + "content": "by applying an extracted template set to the products.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5, + "bbox_fs": [ + 110, + 402, + 506, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 112, + 496, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 111, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 111, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Template-Free: SCROP [Zheng et al., 2019], LV-TRANSFORMER [Chen et al., 2019] and DUALTF", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 121, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 121, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "[Sun et al., 2021] use the Transformer architecture [Vaswani et al., 2017] to output reactant", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 120, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 120, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "SMILES given a product SMILES. To improve the validity of their suggestions, SCROP in-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 120, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 120, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "clude a second Transformer that functions as a syntax correcter. LV-TRANSFORMER uses a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 120, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 120, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "latent variable mixture model to improve diversity of suggestions. DUALTF utilizes additional", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 120, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 120, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "parameterizations and loss terms to enforce the duality between forward (reaction prediction) and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 121, + 562, + 272, + 574 + ], + "spans": [ + { + "bbox": [ + 121, + 562, + 272, + 574 + ], + "score": 1.0, + "content": "backward (retrosynthesis prediction).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 111, + 496, + 506, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 112, + 578, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 111, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 111, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Semi-Template-Based: G2GS [Shi et al., 2020] and RETROXPERT [Yan et al., 2020] first identify", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 120, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 120, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "synthons, and then expand the synthons into reactants by either sequential generation of atoms", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 120, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 120, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "and bonds (G2Gs), or using the Transformer architecture (RETROXPERT). The training dataset", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 120, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 120, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "for the Transformer in [Yan et al., 2020] is augmented with incorrectly predicted synthons with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 121, + 622, + 301, + 634 + ], + "spans": [ + { + "bbox": [ + 121, + 622, + 301, + 634 + ], + "score": 1.0, + "content": "the goal of learning a correction mechanism.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 111, + 578, + 506, + 634 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 644, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Results for NEURALSYM are taken from [Dai et al., 2019]. The authors in [Yan et al., 2020] report", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "their performance being affected by the dataset leakage2. Thus, we use the most recent results", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "from their website on the canonicalized dataset. For remaining baselines, we directly use the values", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "reported in their paper. For the synthon completion module, we use the ind configuration given its", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 688, + 227, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 227, + 701 + ], + "score": 1.0, + "content": "better empirical performance.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 644, + 506, + 701 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 219, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 221, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 221, + 86 + ], + "score": 1.0, + "content": "4.1 Overall Performance", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 96, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 96, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 505, + 108 + ], + "score": 1.0, + "content": "Reaction class unknown As shown in Table 1, when the reaction class is unknown, GRAPHRETRO", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 107, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 204, + 120 + ], + "score": 1.0, + "content": "outperforms G2GS by", + "type": "text" + }, + { + "bbox": [ + 204, + 107, + 227, + 118 + ], + "score": 0.88, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 107, + 343, + 120 + ], + "score": 1.0, + "content": "and and RETROXPERT by", + "type": "text" + }, + { + "bbox": [ + 343, + 107, + 366, + 118 + ], + "score": 0.87, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 107, + 506, + 120 + ], + "score": 1.0, + "content": "in top-1 accuracy. Performance", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 259, + 131 + ], + "score": 1.0, + "content": "improvements are also seen for larger", + "type": "text" + }, + { + "bbox": [ + 259, + 120, + 267, + 128 + ], + "score": 0.59, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 118, + 313, + 131 + ], + "score": 1.0, + "content": ", except for", + "type": "text" + }, + { + "bbox": [ + 313, + 119, + 339, + 128 + ], + "score": 0.89, + "content": "n = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 118, + 506, + 131 + ], + "score": 1.0, + "content": ". Barring DUALTB, the top-1 accuracy is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 409, + 142 + ], + "score": 1.0, + "content": "also better than other template-free and template-based methods. For larger", + "type": "text" + }, + { + "bbox": [ + 410, + 131, + 417, + 139 + ], + "score": 0.67, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 128, + 506, + 142 + ], + "score": 1.0, + "content": ", one reason for lower", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 123, + 152 + ], + "score": 1.0, + "content": "top-", + "type": "text" + }, + { + "bbox": [ + 123, + 142, + 130, + 150 + ], + "score": 0.66, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "accuracies than most template-based methods is that templates already contain combinations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 165 + ], + "score": 1.0, + "content": "of leaving group patterns. In contrast, our model learns to discover these during training. A second", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "hypothesis to this end is that simply adding log-likelihood scores from edit prediction and synthon", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "score": 1.0, + "content": "completion models may be suboptimal and bias the beam search in the direction of the more", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "dominating term. We leave it to future work to investigate scoring functions that rank the attachment.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "Reaction class known When the reaction class is known, GRAPHRETRO outperforms G2GS", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 246, + 239 + ], + "score": 1.0, + "content": "and RETROXPERT by a margin of", + "type": "text" + }, + { + "bbox": [ + 247, + 226, + 262, + 237 + ], + "score": 0.88, + "content": "3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 226, + 280, + 239 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 226, + 294, + 237 + ], + "score": 0.87, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "respectively in top-1 accuracy. GRAPHRETRO also", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 302, + 250 + ], + "score": 1.0, + "content": "outperforms all the template-free methods in top-", + "type": "text" + }, + { + "bbox": [ + 302, + 239, + 309, + 247 + ], + "score": 0.72, + "content": "^ n", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "accuracy. for GRAPHRETRO are also better than", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "most template-based and template-free methods. When the reaction class is known, RETROSIM and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "GLN restrict template sets corresponding to the reaction class, thus improving performance. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 269, + 507, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 507, + 284 + ], + "score": 1.0, + "content": "increased edit prediction performance (Section 4.2) for GRAPHRETRO helps outweigh this factor,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 329, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 298, + 294 + ], + "score": 1.0, + "content": "achieving comparable or better performance till", + "type": "text" + }, + { + "bbox": [ + 299, + 281, + 324, + 291 + ], + "score": 0.9, + "content": "n = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 281, + 329, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 267, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 268, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 268, + 327 + ], + "score": 1.0, + "content": "4.2 Individual Module Performance", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 432, + 351 + ], + "score": 1.0, + "content": "To gain more insight into the working of GRAPHRETRO, we evaluate the top-", + "type": "text" + }, + { + "bbox": [ + 433, + 340, + 440, + 348 + ], + "score": 0.7, + "content": "\\boldsymbol { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 336, + 483, + 351 + ], + "score": 1.0, + "content": "accuracy", + "type": "text" + }, + { + "bbox": [ + 484, + 339, + 505, + 349 + ], + "score": 0.79, + "content": "\\mathbf { \\nabla } _ { n } =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 143, + 360 + ], + "score": 0.59, + "content": "1 , 2 , 3 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "of edit prediction and synthon completion modules, along with corresponding ablation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 359, + 261, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 261, + 371 + ], + "score": 1.0, + "content": "studies, with results shown in Table 2.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 391, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 437, + 404 + ], + "score": 1.0, + "content": "Edit Prediction For the edit prediction module, we compare the true edit(s) to top-", + "type": "text" + }, + { + "bbox": [ + 438, + 394, + 445, + 402 + ], + "score": 0.75, + "content": "\\boldsymbol { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "edits predicted", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "by the model. We also consider two ablation studies, one where we directly use the initial edit scores", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 412, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 506, + 427 + ], + "score": 1.0, + "content": "without updating them, and the other where we predict edits using atom-pairs instead of existing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "bonds and atoms. Both design choices lead to improvements in performance, as shown in Table 2.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "We hypothesize that the larger improvement compared to edit prediction using atom-pairs is due to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 446, + 429, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 429, + 458 + ], + "score": 1.0, + "content": "the easier optimization procedure, with lesser imbalance between labels 1 and 0.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Synthon Completion For evaluating the synthon completion module, we first apply the true edits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 489, + 365, + 502 + ], + "score": 1.0, + "content": "to obtain synthons, and compare the true leaving groups to top-", + "type": "text" + }, + { + "bbox": [ + 365, + 491, + 372, + 500 + ], + "score": 0.73, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "leaving groups predicted by the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "model. We test the performance of both the ind and shared configurations. Both configurations", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 281, + 524 + ], + "score": 1.0, + "content": "perform similarly, and are able to identify", + "type": "text" + }, + { + "bbox": [ + 281, + 511, + 310, + 522 + ], + "score": 0.83, + "content": "\\sim 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 511, + 427, + 524 + ], + "score": 1.0, + "content": "(close to its upper bound of", + "type": "text" + }, + { + "bbox": [ + 428, + 511, + 455, + 522 + ], + "score": 0.86, + "content": "9 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ") of the true", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "leaving groups in its top-5 choices, when the reaction class is known. The top-1, 3 and 5 accuracies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 398, + 545 + ], + "score": 1.0, + "content": "of the synthon completion for unknown reaction classes for G2Gs are", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 425, + 543 + ], + "score": 0.85, + "content": "6 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 533, + 430, + 545 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 430, + 533, + 458, + 544 + ], + "score": 0.85, + "content": "8 1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 533, + 477, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 533, + 505, + 544 + ], + "score": 0.86, + "content": "8 6 . 7 \\%", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 214, + 556 + ], + "score": 1.0, + "content": "respectively, while ours are", + "type": "text" + }, + { + "bbox": [ + 214, + 544, + 241, + 555 + ], + "score": 0.85, + "content": "7 5 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 544, + 244, + 556 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 244, + 544, + 271, + 554 + ], + "score": 0.85, + "content": "9 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 544, + 288, + 556 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 544, + 315, + 554 + ], + "score": 0.88, + "content": "9 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 544, + 366, + 556 + ], + "score": 1.0, + "content": ", indicating a", + "type": "text" + }, + { + "bbox": [ + 366, + 544, + 398, + 554 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 544, + 506, + 556 + ], + "score": 1.0, + "content": "performance improvement", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 555, + 411, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 411, + 567 + ], + "score": 1.0, + "content": "using a classification formulation over the generative one adopted by G2Gs.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "table", + "bbox": [ + 106, + 608, + 506, + 720 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 142, + 592, + 467, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 591, + 468, + 606 + ], + "spans": [ + { + "bbox": [ + 141, + 591, + 468, + 606 + ], + "score": 1.0, + "content": "Table 2: Performance Study of edit prediction and synthon completion modules", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "table_body", + "bbox": [ + 106, + 608, + 506, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 608, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 720 + ], + "score": 0.984, + "html": "
SettingTop-n Accuracy (%)
Reaction class knownReaction class unknown
12351235
Edit Prediction84.692.293.794.570.885.189.592.7
- without edit score updates84.392.193.794.570.184.889.492.6
- predicting on atom pairs81.989.590.992.168.683.288.391.8
Synthon Completion (ind)77.489.594.297.675.687.492.596.1
Synthon Completion (shared)76.989.693.997.474.987.792.996.3
", + "type": "table", + "image_path": "a7464e4972dde4bef7b44f291b1851eda3f6ff349da317bc359b2a73e891edfc.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 106, + 608, + 506, + 645.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 106, + 645.3333333333334, + 506, + 682.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 106, + 682.6666666666667, + 506, + 720.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + } + ], + "index": 36.0 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 219, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 221, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 221, + 86 + ], + "score": 1.0, + "content": "4.1 Overall Performance", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 96, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 96, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 505, + 108 + ], + "score": 1.0, + "content": "Reaction class unknown As shown in Table 1, when the reaction class is unknown, GRAPHRETRO", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 107, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 204, + 120 + ], + "score": 1.0, + "content": "outperforms G2GS by", + "type": "text" + }, + { + "bbox": [ + 204, + 107, + 227, + 118 + ], + "score": 0.88, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 107, + 343, + 120 + ], + "score": 1.0, + "content": "and and RETROXPERT by", + "type": "text" + }, + { + "bbox": [ + 343, + 107, + 366, + 118 + ], + "score": 0.87, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 107, + 506, + 120 + ], + "score": 1.0, + "content": "in top-1 accuracy. Performance", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 259, + 131 + ], + "score": 1.0, + "content": "improvements are also seen for larger", + "type": "text" + }, + { + "bbox": [ + 259, + 120, + 267, + 128 + ], + "score": 0.59, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 118, + 313, + 131 + ], + "score": 1.0, + "content": ", except for", + "type": "text" + }, + { + "bbox": [ + 313, + 119, + 339, + 128 + ], + "score": 0.89, + "content": "n = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 118, + 506, + 131 + ], + "score": 1.0, + "content": ". Barring DUALTB, the top-1 accuracy is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 409, + 142 + ], + "score": 1.0, + "content": "also better than other template-free and template-based methods. For larger", + "type": "text" + }, + { + "bbox": [ + 410, + 131, + 417, + 139 + ], + "score": 0.67, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 128, + 506, + 142 + ], + "score": 1.0, + "content": ", one reason for lower", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 123, + 152 + ], + "score": 1.0, + "content": "top-", + "type": "text" + }, + { + "bbox": [ + 123, + 142, + 130, + 150 + ], + "score": 0.66, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "accuracies than most template-based methods is that templates already contain combinations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 165 + ], + "score": 1.0, + "content": "of leaving group patterns. In contrast, our model learns to discover these during training. A second", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "hypothesis to this end is that simply adding log-likelihood scores from edit prediction and synthon", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "score": 1.0, + "content": "completion models may be suboptimal and bias the beam search in the direction of the more", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "dominating term. We leave it to future work to investigate scoring functions that rank the attachment.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 96, + 506, + 195 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "Reaction class known When the reaction class is known, GRAPHRETRO outperforms G2GS", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 246, + 239 + ], + "score": 1.0, + "content": "and RETROXPERT by a margin of", + "type": "text" + }, + { + "bbox": [ + 247, + 226, + 262, + 237 + ], + "score": 0.88, + "content": "3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 226, + 280, + 239 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 226, + 294, + 237 + ], + "score": 0.87, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "respectively in top-1 accuracy. GRAPHRETRO also", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 302, + 250 + ], + "score": 1.0, + "content": "outperforms all the template-free methods in top-", + "type": "text" + }, + { + "bbox": [ + 302, + 239, + 309, + 247 + ], + "score": 0.72, + "content": "^ n", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "accuracy. for GRAPHRETRO are also better than", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "most template-based and template-free methods. When the reaction class is known, RETROSIM and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "GLN restrict template sets corresponding to the reaction class, thus improving performance. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 269, + 507, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 507, + 284 + ], + "score": 1.0, + "content": "increased edit prediction performance (Section 4.2) for GRAPHRETRO helps outweigh this factor,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 329, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 298, + 294 + ], + "score": 1.0, + "content": "achieving comparable or better performance till", + "type": "text" + }, + { + "bbox": [ + 299, + 281, + 324, + 291 + ], + "score": 0.9, + "content": "n = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 281, + 329, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 216, + 507, + 294 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 267, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 268, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 268, + 327 + ], + "score": 1.0, + "content": "4.2 Individual Module Performance", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 432, + 351 + ], + "score": 1.0, + "content": "To gain more insight into the working of GRAPHRETRO, we evaluate the top-", + "type": "text" + }, + { + "bbox": [ + 433, + 340, + 440, + 348 + ], + "score": 0.7, + "content": "\\boldsymbol { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 336, + 483, + 351 + ], + "score": 1.0, + "content": "accuracy", + "type": "text" + }, + { + "bbox": [ + 484, + 339, + 505, + 349 + ], + "score": 0.79, + "content": "\\mathbf { \\nabla } _ { n } =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 143, + 360 + ], + "score": 0.59, + "content": "1 , 2 , 3 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "of edit prediction and synthon completion modules, along with corresponding ablation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 359, + 261, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 261, + 371 + ], + "score": 1.0, + "content": "studies, with results shown in Table 2.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 336, + 505, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 391, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 437, + 404 + ], + "score": 1.0, + "content": "Edit Prediction For the edit prediction module, we compare the true edit(s) to top-", + "type": "text" + }, + { + "bbox": [ + 438, + 394, + 445, + 402 + ], + "score": 0.75, + "content": "\\boldsymbol { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "edits predicted", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "by the model. We also consider two ablation studies, one where we directly use the initial edit scores", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 412, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 506, + 427 + ], + "score": 1.0, + "content": "without updating them, and the other where we predict edits using atom-pairs instead of existing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "bonds and atoms. Both design choices lead to improvements in performance, as shown in Table 2.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "We hypothesize that the larger improvement compared to edit prediction using atom-pairs is due to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 446, + 429, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 429, + 458 + ], + "score": 1.0, + "content": "the easier optimization procedure, with lesser imbalance between labels 1 and 0.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 390, + 506, + 458 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Synthon Completion For evaluating the synthon completion module, we first apply the true edits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 489, + 365, + 502 + ], + "score": 1.0, + "content": "to obtain synthons, and compare the true leaving groups to top-", + "type": "text" + }, + { + "bbox": [ + 365, + 491, + 372, + 500 + ], + "score": 0.73, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "leaving groups predicted by the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "model. We test the performance of both the ind and shared configurations. Both configurations", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 281, + 524 + ], + "score": 1.0, + "content": "perform similarly, and are able to identify", + "type": "text" + }, + { + "bbox": [ + 281, + 511, + 310, + 522 + ], + "score": 0.83, + "content": "\\sim 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 511, + 427, + 524 + ], + "score": 1.0, + "content": "(close to its upper bound of", + "type": "text" + }, + { + "bbox": [ + 428, + 511, + 455, + 522 + ], + "score": 0.86, + "content": "9 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ") of the true", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "leaving groups in its top-5 choices, when the reaction class is known. The top-1, 3 and 5 accuracies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 398, + 545 + ], + "score": 1.0, + "content": "of the synthon completion for unknown reaction classes for G2Gs are", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 425, + 543 + ], + "score": 0.85, + "content": "6 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 533, + 430, + 545 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 430, + 533, + 458, + 544 + ], + "score": 0.85, + "content": "8 1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 533, + 477, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 533, + 505, + 544 + ], + "score": 0.86, + "content": "8 6 . 7 \\%", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 214, + 556 + ], + "score": 1.0, + "content": "respectively, while ours are", + "type": "text" + }, + { + "bbox": [ + 214, + 544, + 241, + 555 + ], + "score": 0.85, + "content": "7 5 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 544, + 244, + 556 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 244, + 544, + 271, + 554 + ], + "score": 0.85, + "content": "9 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 544, + 288, + 556 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 544, + 315, + 554 + ], + "score": 0.88, + "content": "9 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 544, + 366, + 556 + ], + "score": 1.0, + "content": ", indicating a", + "type": "text" + }, + { + "bbox": [ + 366, + 544, + 398, + 554 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 544, + 506, + 556 + ], + "score": 1.0, + "content": "performance improvement", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 555, + 411, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 411, + 567 + ], + "score": 1.0, + "content": "using a classification formulation over the generative one adopted by G2Gs.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 478, + 506, + 567 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 608, + 506, + 720 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 142, + 592, + 467, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 591, + 468, + 606 + ], + "spans": [ + { + "bbox": [ + 141, + 591, + 468, + 606 + ], + "score": 1.0, + "content": "Table 2: Performance Study of edit prediction and synthon completion modules", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "table_body", + "bbox": [ + 106, + 608, + 506, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 608, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 720 + ], + "score": 0.984, + "html": "
SettingTop-n Accuracy (%)
Reaction class knownReaction class unknown
12351235
Edit Prediction84.692.293.794.570.885.189.592.7
- without edit score updates84.392.193.794.570.184.889.492.6
- predicting on atom pairs81.989.590.992.168.683.288.391.8
Synthon Completion (ind)77.489.594.297.675.687.492.596.1
Synthon Completion (shared)76.989.693.997.474.987.792.996.3
", + "type": "table", + "image_path": "a7464e4972dde4bef7b44f291b1851eda3f6ff349da317bc359b2a73e891edfc.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 106, + 608, + 506, + 645.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 106, + 645.3333333333334, + 506, + 682.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 106, + 682.6666666666667, + 506, + 720.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + } + ], + "index": 36.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 218, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 220, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 220, + 87 + ], + "score": 1.0, + "content": "4.3 Example Predictions", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "In Figure 2, we visualize the model predictions and the ground truth for three cases. Figure 2a shows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "score": 1.0, + "content": "an example where the model identifies both the edits and leaving groups correctly. In Figure 2b, the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 128 + ], + "score": 1.0, + "content": "correct edit is identified but the predicted leaving groups are incorrect. We hypothesize this is due to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 421, + 139 + ], + "score": 1.0, + "content": "the fact that in the training set, leaving groups attaching to the carbonyl carbon", + "type": "text" + }, + { + "bbox": [ + 422, + 126, + 446, + 136 + ], + "score": 0.67, + "content": "\\scriptstyle ( \\mathbf { C } = \\mathbf { O } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 124, + 506, + 139 + ], + "score": 1.0, + "content": "are small (e.g.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 129, + 149 + ], + "score": 1.0, + "content": "-OH, -", + "type": "text" + }, + { + "bbox": [ + 129, + 136, + 150, + 147 + ], + "score": 0.87, + "content": "\\mathrm { - N H _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 136, + 506, + 149 + ], + "score": 1.0, + "content": ", halides). The true leaving group in this example, however, is large. The model is unable", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "to reason about this and predicts the small leaving group -I. In Figure 2c, the model identifies the edit", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 104, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "and consequently the leaving group incorrectly. This highlights a limitation of our model. If the edit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 385, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 385, + 182 + ], + "score": 1.0, + "content": "is predicted incorrectly, the model cannot suggest the true precursors.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 107, + 193, + 180, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 191, + 182, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 182, + 206 + ], + "score": 1.0, + "content": "4.4 Limitations", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "The simplified and interpretable construction of GRAPHRETRO comes with certain limitations. First,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 224, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 235 + ], + "score": 1.0, + "content": "the overall performance of the model is limited by the performance of the edit prediction step. If the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "predicted edit is incorrect, the true reactants cannot be salvaged. This limitation is partly remedied", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "by our model design, that allows for user intervention to correct the edit. Second, our method is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "reliant on atom-mapping for extracting edits and leaving groups. Extracting edits directly based on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 269, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 280 + ], + "score": 1.0, + "content": "substructure matching currently suffer from false positives, and heuristics to correct for these result", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 201, + 291 + ], + "score": 1.0, + "content": "in correct edits in only", + "type": "text" + }, + { + "bbox": [ + 202, + 279, + 227, + 289 + ], + "score": 0.89, + "content": "{ \\sim } 9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "of the cases. Third, our formulation assumes that we have as many", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "synthons as reactants, which is violated in some reactions. We leave it to future work to extend the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "model to realize a single reactant from multiple synthons, and introduce more chemically meaningful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 311, + 221, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 221, + 324 + ], + "score": 1.0, + "content": "edit correction mechanisms.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5 + }, + { + "type": "image", + "bbox": [ + 164, + 331, + 435, + 589 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 164, + 331, + 435, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 331, + 435, + 589 + ], + "spans": [ + { + "bbox": [ + 164, + 331, + 435, + 589 + ], + "score": 0.969, + "type": "image", + "image_path": "9df65c90e84b75ac55b8dc08692726ee93cf492df4b05d29c79c8c792f98fccd.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 164, + 331, + 435, + 344.57894736842104 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 164, + 344.57894736842104, + 435, + 358.1578947368421 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 164, + 358.1578947368421, + 435, + 371.7368421052631 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 164, + 371.7368421052631, + 435, + 385.31578947368416 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 164, + 385.31578947368416, + 435, + 398.8947368421052 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 164, + 398.8947368421052, + 435, + 412.47368421052624 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 164, + 412.47368421052624, + 435, + 426.0526315789473 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 164, + 426.0526315789473, + 435, + 439.6315789473683 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 164, + 439.6315789473683, + 435, + 453.21052631578937 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 164, + 453.21052631578937, + 435, + 466.7894736842104 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 164, + 466.7894736842104, + 435, + 480.36842105263145 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 164, + 480.36842105263145, + 435, + 493.9473684210525 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 164, + 493.9473684210525, + 435, + 507.52631578947353 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 164, + 507.52631578947353, + 435, + 521.1052631578946 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 164, + 521.1052631578946, + 435, + 534.6842105263156 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 164, + 534.6842105263156, + 435, + 548.2631578947367 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 164, + 548.2631578947367, + 435, + 561.8421052631577 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 164, + 561.8421052631577, + 435, + 575.4210526315787 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 164, + 575.4210526315787, + 435, + 588.9999999999998 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 599, + 506, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Figure 2: Example Predictions. The true edit and incorrect edit (if any) are highlighted in green", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "and red respectively. The true and predicted leaving groups are highlighted in blue. a. Correctly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 622, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 507, + 635 + ], + "score": 1.0, + "content": "predicted example by the model. b. Correctly predicted edit but incorrectly predicted leaving groups.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 297, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 297, + 646 + ], + "score": 1.0, + "content": "c. Incorrectly predicted edit and leaving group.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "index": 34.75 + }, + { + "type": "title", + "bbox": [ + 107, + 664, + 183, + 678 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 185, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 185, + 680 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "Previous methods for single-step retrosynthesis either restrict prediction to a template set, are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "insensitive to molecular graph structure or generate molecules from scratch. We address these", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 724 + ], + "score": 1.0, + "content": "shortcomings by introducing a graph-based semi-template-based model inspired by a chemist’s", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 218, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 220, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 220, + 87 + ], + "score": 1.0, + "content": "4.3 Example Predictions", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "In Figure 2, we visualize the model predictions and the ground truth for three cases. Figure 2a shows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "score": 1.0, + "content": "an example where the model identifies both the edits and leaving groups correctly. In Figure 2b, the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 128 + ], + "score": 1.0, + "content": "correct edit is identified but the predicted leaving groups are incorrect. We hypothesize this is due to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 421, + 139 + ], + "score": 1.0, + "content": "the fact that in the training set, leaving groups attaching to the carbonyl carbon", + "type": "text" + }, + { + "bbox": [ + 422, + 126, + 446, + 136 + ], + "score": 0.67, + "content": "\\scriptstyle ( \\mathbf { C } = \\mathbf { O } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 124, + 506, + 139 + ], + "score": 1.0, + "content": "are small (e.g.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 129, + 149 + ], + "score": 1.0, + "content": "-OH, -", + "type": "text" + }, + { + "bbox": [ + 129, + 136, + 150, + 147 + ], + "score": 0.87, + "content": "\\mathrm { - N H _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 136, + 506, + 149 + ], + "score": 1.0, + "content": ", halides). The true leaving group in this example, however, is large. The model is unable", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "to reason about this and predicts the small leaving group -I. In Figure 2c, the model identifies the edit", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 104, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "and consequently the leaving group incorrectly. This highlights a limitation of our model. If the edit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 385, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 385, + 182 + ], + "score": 1.0, + "content": "is predicted incorrectly, the model cannot suggest the true precursors.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 93, + 506, + 182 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 193, + 180, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 191, + 182, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 182, + 206 + ], + "score": 1.0, + "content": "4.4 Limitations", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "The simplified and interpretable construction of GRAPHRETRO comes with certain limitations. First,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 224, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 235 + ], + "score": 1.0, + "content": "the overall performance of the model is limited by the performance of the edit prediction step. If the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "predicted edit is incorrect, the true reactants cannot be salvaged. This limitation is partly remedied", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "by our model design, that allows for user intervention to correct the edit. Second, our method is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "reliant on atom-mapping for extracting edits and leaving groups. Extracting edits directly based on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 269, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 280 + ], + "score": 1.0, + "content": "substructure matching currently suffer from false positives, and heuristics to correct for these result", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 201, + 291 + ], + "score": 1.0, + "content": "in correct edits in only", + "type": "text" + }, + { + "bbox": [ + 202, + 279, + 227, + 289 + ], + "score": 0.89, + "content": "{ \\sim } 9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "of the cases. Third, our formulation assumes that we have as many", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "synthons as reactants, which is violated in some reactions. We leave it to future work to extend the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "model to realize a single reactant from multiple synthons, and introduce more chemically meaningful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 311, + 221, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 221, + 324 + ], + "score": 1.0, + "content": "edit correction mechanisms.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 213, + 506, + 324 + ] + }, + { + "type": "image", + "bbox": [ + 164, + 331, + 435, + 589 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 164, + 331, + 435, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 331, + 435, + 589 + ], + "spans": [ + { + "bbox": [ + 164, + 331, + 435, + 589 + ], + "score": 0.969, + "type": "image", + "image_path": "9df65c90e84b75ac55b8dc08692726ee93cf492df4b05d29c79c8c792f98fccd.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 164, + 331, + 435, + 344.57894736842104 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 164, + 344.57894736842104, + 435, + 358.1578947368421 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 164, + 358.1578947368421, + 435, + 371.7368421052631 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 164, + 371.7368421052631, + 435, + 385.31578947368416 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 164, + 385.31578947368416, + 435, + 398.8947368421052 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 164, + 398.8947368421052, + 435, + 412.47368421052624 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 164, + 412.47368421052624, + 435, + 426.0526315789473 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 164, + 426.0526315789473, + 435, + 439.6315789473683 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 164, + 439.6315789473683, + 435, + 453.21052631578937 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 164, + 453.21052631578937, + 435, + 466.7894736842104 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 164, + 466.7894736842104, + 435, + 480.36842105263145 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 164, + 480.36842105263145, + 435, + 493.9473684210525 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 164, + 493.9473684210525, + 435, + 507.52631578947353 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 164, + 507.52631578947353, + 435, + 521.1052631578946 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 164, + 521.1052631578946, + 435, + 534.6842105263156 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 164, + 534.6842105263156, + 435, + 548.2631578947367 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 164, + 548.2631578947367, + 435, + 561.8421052631577 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 164, + 561.8421052631577, + 435, + 575.4210526315787 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 164, + 575.4210526315787, + 435, + 588.9999999999998 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 599, + 506, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Figure 2: Example Predictions. The true edit and incorrect edit (if any) are highlighted in green", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "and red respectively. The true and predicted leaving groups are highlighted in blue. a. Correctly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 622, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 507, + 635 + ], + "score": 1.0, + "content": "predicted example by the model. b. Correctly predicted edit but incorrectly predicted leaving groups.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 297, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 297, + 646 + ], + "score": 1.0, + "content": "c. Incorrectly predicted edit and leaving group.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "index": 34.75 + }, + { + "type": "title", + "bbox": [ + 107, + 664, + 183, + 678 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 185, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 185, + 680 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "Previous methods for single-step retrosynthesis either restrict prediction to a template set, are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "insensitive to molecular graph structure or generate molecules from scratch. We address these", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 724 + ], + "score": 1.0, + "content": "shortcomings by introducing a graph-based semi-template-based model inspired by a chemist’s", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "workflow, enhancing the interpretability of retrosynthesis models. Given a target molecule, we", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 505, + 95 + ], + "score": 1.0, + "content": "first identify synthetic building blocks (synthons) which are then realized into valid reactants, thus", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 504, + 106 + ], + "score": 1.0, + "content": "avoiding molecule generation from scratch. Our model outperforms previous semi-template-methods", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "by significant margins on the benchmark dataset. Future work aims to extend the model to realize a", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 504, + 128 + ], + "score": 1.0, + "content": "single reactant from multiple synthons, and introduce more chemically meaningful components to", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 128, + 501, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 501, + 139 + ], + "score": 1.0, + "content": "improve the synergy between such tools for retrosynthesis prediction and a practitioner’s expertise.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 688, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "workflow, enhancing the interpretability of retrosynthesis models. Given a target molecule, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 505, + 95 + ], + "score": 1.0, + "content": "first identify synthetic building blocks (synthons) which are then realized into valid reactants, thus", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 504, + 106 + ], + "score": 1.0, + "content": "avoiding molecule generation from scratch. Our model outperforms previous semi-template-methods", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "by significant margins on the benchmark dataset. Future work aims to extend the model to realize a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 504, + 128 + ], + "score": 1.0, + "content": "single reactant from multiple synthons, and introduce more chemically meaningful components to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 128, + 501, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 501, + 139 + ], + "score": 1.0, + "content": "improve the synergy between such tools for retrosynthesis prediction and a practitioner’s expertise.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 154, + 207, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 208, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 208, + 170 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 179, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 505, + 191 + ], + "score": 1.0, + "content": "This research was supported by the Machine Learning for Pharmaceutical Discovery and Synthesis", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Consortium at MIT. V.R.S. was also supported by the Zeno Karl Schindler Foundation. C.B. was", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 200, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 506, + 214 + ], + "score": 1.0, + "content": "supported by the Swiss National Science Foundation under the National Center of Competence", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "in Research (NCCR) Catalysis under grant agreement 51NF40 180544. We thank the Leonhard", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 437, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 437, + 236 + ], + "score": 1.0, + "content": "scientific computing cluster at ETH Zürich for providing computational resources.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 249, + 163, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 165, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 165, + 264 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 507, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "B. Chen, T. Shen, T. S. Jaakkola, and R. Barzilay. Learning to Make Generalizable and Diverse", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 279, + 330, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 279, + 330, + 293 + ], + "score": 1.0, + "content": "Predictions for Retrosynthesis. In Submission, 2019.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "C. W. Coley, R. Barzilay, T. S. Jaakkola, W. H. Green, and K. F. Jensen. Prediction of Organic", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Reaction Outcomes Using Machine Learning. In ACS Central Science. ACS Publications, 2017a.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "C. W. Coley, L. Rogers, W. H. Green, and K. F. Jensen. Computer-Assisted Retrosynthesis Based on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 339, + 333, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 333, + 352 + ], + "score": 1.0, + "content": "Molecular Similarity. ACS Central Science, 3, 2017b.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "C. W. Coley, W. Jin, L. Rogers, T. F. Jamison, T. S. Jaakkola, W. H. Green, R. Barzilay, and K. F.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 114, + 369, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 114, + 369, + 507, + 383 + ], + "score": 1.0, + "content": "Jensen. A graph-convolutional neural network model for the prediction of chemical reactivity.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 380, + 232, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 232, + 392 + ], + "score": 1.0, + "content": "Chemical Science, 10, 2019.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "E. Corey and W. T. Wipke. Computer-assisted design of complex organic syntheses. Science, 166", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 410, + 210, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 210, + 422 + ], + "score": 1.0, + "content": "(3902):178–192, 1969.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 427, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 506, + 442 + ], + "score": 1.0, + "content": "E. J. Corey. The Logic of Chemical Synthesis: Multistep Synthesis of Complex Carbogenic Molecules", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 440, + 400, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 400, + 452 + ], + "score": 1.0, + "content": "(Nobel Lecture). Angewandte Chemie International Edition, 30, 1991.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 457, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 457, + 506, + 472 + ], + "score": 1.0, + "content": "H. Dai, C. Li, C. Coley, B. Dai, and L. Song. Retrosynthesis Prediction with Conditional Graph", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 115, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Logic Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 32,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 142, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 142, + 493 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 498, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 507, + 513 + ], + "score": 1.0, + "content": "S. Genheden, A. Thakkar, V. Chadimová, J.-L. Reymond, O. Engkvist, and E. Bjerrum. Aizyn-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 114, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "thfinder: a fast, robust and flexible open-source software for retrosynthetic planning. Journal of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 520, + 257, + 535 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 257, + 535 + ], + "score": 1.0, + "content": "cheminformatics, 12(1):1–9, 2020.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 539, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 539, + 506, + 554 + ], + "score": 1.0, + "content": "J. Gilmer, S. S. Schoenholz, P. F. Riley, O. Vinyals, and G. E. Dahl. Neural Message Passing for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 507, + 564 + ], + "score": 1.0, + "content": "Quantum Chemistry. In International Conference on Machine Learning (ICML), volume 70, 2017.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "M. Hartenfeller, M. Eberle, P. Meier, C. Nieto-Oberhuber, K.-H. Altmann, G. Schneider, E. Jacoby,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 578, + 508, + 595 + ], + "spans": [ + { + "bbox": [ + 114, + 578, + 508, + 595 + ], + "score": 1.0, + "content": "and S. Renner. A Collection of Robust Organic Synthesis Reactions for In Silico Molecule Design.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 592, + 470, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 470, + 604 + ], + "score": 1.0, + "content": "In Journal of Chemical Information and Modeling, volume 51. ACS Publications, 2011.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "W. Jin, C. Coley, R. Barzilay, and T. Jaakkola. Predicting Organic Reaction Outcomes with Weisfeiler-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Lehman Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 30,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 631, + 143, + 645 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 143, + 645 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "W. Jin, R. Barzilay, and T. Jaakkola. Junction Tree Variational Autoencoder for Molecular Graph", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 660, + 477, + 675 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 477, + 675 + ], + "score": 1.0, + "content": "Generation. In International Conference on Machine Learning (ICML), volume 32, 2018.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "W. Jin, R. Barzilay, and T. Jaakkola. Composing Molecules with Multiple Property Constraints. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 691, + 369, + 705 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 369, + 705 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), 2020.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 28 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 138 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 72, + 506, + 139 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 154, + 207, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 208, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 208, + 170 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 179, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 505, + 191 + ], + "score": 1.0, + "content": "This research was supported by the Machine Learning for Pharmaceutical Discovery and Synthesis", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Consortium at MIT. V.R.S. was also supported by the Zeno Karl Schindler Foundation. C.B. was", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 200, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 506, + 214 + ], + "score": 1.0, + "content": "supported by the Swiss National Science Foundation under the National Center of Competence", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "in Research (NCCR) Catalysis under grant agreement 51NF40 180544. We thank the Leonhard", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 437, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 437, + 236 + ], + "score": 1.0, + "content": "scientific computing cluster at ETH Zürich for providing computational resources.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 179, + 506, + 236 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 249, + 163, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 165, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 165, + 264 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "list", + "bbox": [ + 105, + 261, + 507, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "B. Chen, T. Shen, T. S. Jaakkola, and R. Barzilay. Learning to Make Generalizable and Diverse", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 279, + 330, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 279, + 330, + 293 + ], + "score": 1.0, + "content": "Predictions for Retrosynthesis. In Submission, 2019.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "C. W. Coley, R. Barzilay, T. S. Jaakkola, W. H. Green, and K. F. Jensen. Prediction of Organic", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Reaction Outcomes Using Machine Learning. In ACS Central Science. ACS Publications, 2017a.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "C. W. Coley, L. Rogers, W. H. Green, and K. F. Jensen. Computer-Assisted Retrosynthesis Based on", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 339, + 333, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 333, + 352 + ], + "score": 1.0, + "content": "Molecular Similarity. ACS Central Science, 3, 2017b.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "C. W. Coley, W. Jin, L. Rogers, T. F. Jamison, T. S. Jaakkola, W. H. Green, R. Barzilay, and K. F.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 369, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 114, + 369, + 507, + 383 + ], + "score": 1.0, + "content": "Jensen. A graph-convolutional neural network model for the prediction of chemical reactivity.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 380, + 232, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 232, + 392 + ], + "score": 1.0, + "content": "Chemical Science, 10, 2019.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "E. Corey and W. T. Wipke. Computer-assisted design of complex organic syntheses. Science, 166", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 410, + 210, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 210, + 422 + ], + "score": 1.0, + "content": "(3902):178–192, 1969.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 427, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 506, + 442 + ], + "score": 1.0, + "content": "E. J. Corey. The Logic of Chemical Synthesis: Multistep Synthesis of Complex Carbogenic Molecules", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 440, + 400, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 400, + 452 + ], + "score": 1.0, + "content": "(Nobel Lecture). Angewandte Chemie International Edition, 30, 1991.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 457, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 457, + 506, + 472 + ], + "score": 1.0, + "content": "H. Dai, C. Li, C. Coley, B. Dai, and L. Song. Retrosynthesis Prediction with Conditional Graph", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 115, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Logic Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 32,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 142, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 142, + 493 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 498, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 507, + 513 + ], + "score": 1.0, + "content": "S. Genheden, A. Thakkar, V. Chadimová, J.-L. Reymond, O. Engkvist, and E. Bjerrum. Aizyn-", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 114, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "thfinder: a fast, robust and flexible open-source software for retrosynthetic planning. Journal of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 520, + 257, + 535 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 257, + 535 + ], + "score": 1.0, + "content": "cheminformatics, 12(1):1–9, 2020.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 539, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 539, + 506, + 554 + ], + "score": 1.0, + "content": "J. Gilmer, S. S. Schoenholz, P. F. Riley, O. Vinyals, and G. E. Dahl. Neural Message Passing for", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 550, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 507, + 564 + ], + "score": 1.0, + "content": "Quantum Chemistry. In International Conference on Machine Learning (ICML), volume 70, 2017.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "M. Hartenfeller, M. Eberle, P. Meier, C. Nieto-Oberhuber, K.-H. Altmann, G. Schneider, E. Jacoby,", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 578, + 508, + 595 + ], + "spans": [ + { + "bbox": [ + 114, + 578, + 508, + 595 + ], + "score": 1.0, + "content": "and S. Renner. A Collection of Robust Organic Synthesis Reactions for In Silico Molecule Design.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 592, + 470, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 470, + 604 + ], + "score": 1.0, + "content": "In Journal of Chemical Information and Modeling, volume 51. ACS Publications, 2011.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "W. Jin, C. Coley, R. Barzilay, and T. Jaakkola. Predicting Organic Reaction Outcomes with Weisfeiler-", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Lehman Network. In Advances in Neural Information Processing Systems (NeurIPS), volume 30,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 631, + 143, + 645 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 143, + 645 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "W. Jin, R. Barzilay, and T. Jaakkola. Junction Tree Variational Autoencoder for Molecular Graph", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 660, + 477, + 675 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 477, + 675 + ], + "score": 1.0, + "content": "Generation. In International Conference on Machine Learning (ICML), volume 32, 2018.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "W. Jin, R. Barzilay, and T. Jaakkola. Composing Molecules with Multiple Property Constraints. In", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 691, + 369, + 705 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 369, + 705 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), 2020.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "J. Law, Z. Zsoldos, A. Simon, D. Reid, Y. Liu, S. Y. Khew, A. P. Johnson, S. Major, R. A. Wade, and", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 84, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 115, + 84, + 505, + 97 + ], + "score": 1.0, + "content": "H. Y. Ando. Route Designer: A Retrosynthetic Analysis Tool Utilizing Automated Retrosynthetic", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 95, + 422, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 422, + 108 + ], + "score": 1.0, + "content": "Rule Generation. Journal of Chemical Information and Modeling, 49, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "B. Liu, B. Ramsundar, P. Kawthekar, J. Shi, J. Gomes, Q. Luu Nguyen, S. Ho, J. Sloane, P. Wender,", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "and V. Pande. Retrosynthetic Reaction Prediction Using Neural Sequence-to-Sequence Models. In", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 135, + 348, + 149 + ], + "spans": [ + { + "bbox": [ + 114, + 135, + 348, + 149 + ], + "score": 1.0, + "content": "ACS Central Science, volume 3. ACS Publications, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "N. Schneider, N. Stiefl, and G. A. Landrum. What’s What: The (Nearly) Definitive Guide to Reaction", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 164, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 507, + 180 + ], + "score": 1.0, + "content": "Role Assignment. In Journal of Chemical Information and Modeling, volume 56. ACS Publications,", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 176, + 142, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 142, + 189 + ], + "score": 1.0, + "content": "2016.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "score": 1.0, + "content": "M. H. Segler and M. P. Waller. Neural-Symbolic Machine Learning for Retrosynthesis and Reaction", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 205, + 336, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 205, + 336, + 219 + ], + "score": 1.0, + "content": "Prediction. Chemistry–A European Journal, 23, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "C. Shi, M. Xu, H. Guo, M. Zhang, and J. Tang. A graph to graphs framework for retrosynthesis", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 236, + 186, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 236, + 186, + 248 + ], + "score": 1.0, + "content": "prediction, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 253, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 506, + 269 + ], + "score": 1.0, + "content": "R. Sun, H. Dai, L. Li, S. Kearnes, and B. Dai. Energy-based view of retrosynthesis, 2021. URL", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 266, + 347, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 279, + 280 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 279, + 267, + 285, + 275 + ], + "score": 0.36, + "content": "\\equiv", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 285, + 266, + 347, + 280 + ], + "score": 1.0, + "content": "0Hj3tFCSjUd.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 104, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "S. Szymkuc, E. P. Gajewska, T. Klucznik, K. Molga, P. Dittwald, M. Startek, M. Bajczyk, and ´", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 294, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 114, + 294, + 506, + 309 + ], + "score": 1.0, + "content": "B. A. Grzybowski. Computer-assisted synthetic planning: The end of the beginning. Angewandte", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 307, + 343, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 343, + 320 + ], + "score": 1.0, + "content": "Chemie International Edition, 55(20):5904–5937, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "Attention is All You Need. In Advances in Neural Information Processing Systems (NeurIPS),", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 347, + 189, + 359 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 189, + 359 + ], + "score": 1.0, + "content": "volume 30, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "D. Weininger. SMILES, a Chemical Language and Information System. Journal of Chemical", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 377, + 305, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 377, + 305, + 390 + ], + "score": 1.0, + "content": "Information and Computer Sciences, 28, 1988.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 395, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 410 + ], + "score": 1.0, + "content": "R. J. Williams and D. Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 406, + 373, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 373, + 419 + ], + "score": 1.0, + "content": "Networks. In Neural Computation, volume 1. MIT Press, 1989.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 424, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 507, + 439 + ], + "score": 1.0, + "content": "C. Yan, Q. Ding, P. Zhao, S. Zheng, J. YANG, Y. Yu, and J. Huang. Retroxpert: Decompose retrosyn-", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "thesis prediction like a chemist. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin,", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 447, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 507, + 461 + ], + "score": 1.0, + "content": "editors, Advances in Neural Information Processing Systems, volume 33, pages 11248–11258.", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 114, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "Curran Associates, Inc., 2020. URL https://proceedings.neurips.cc/paper/2020/file/", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 469, + 342, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 469, + 342, + 483 + ], + "score": 1.0, + "content": "819f46e52c25763a55cc642422644317-Paper.pdf.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "score": 1.0, + "content": "S. Zheng, J. Rao, Z. Zhang, J. Xu, and Y. Yang. Predicting Retrosynthetic Reactions using Self-", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "Corrected Transformer Neural Networks. In Journal of Chemical Information and Modeling. ACS", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 509, + 195, + 522 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 195, + 522 + ], + "score": 1.0, + "content": "Publications, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + } + ], + "index": 28, + "bbox_fs": [ + 104, + 268, + 508, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 66, + 506, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "J. Law, Z. Zsoldos, A. Simon, D. Reid, Y. Liu, S. Y. Khew, A. P. Johnson, S. Major, R. A. Wade, and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 84, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 115, + 84, + 505, + 97 + ], + "score": 1.0, + "content": "H. Y. Ando. Route Designer: A Retrosynthetic Analysis Tool Utilizing Automated Retrosynthetic", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 95, + 422, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 422, + 108 + ], + "score": 1.0, + "content": "Rule Generation. Journal of Chemical Information and Modeling, 49, 2009.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "B. Liu, B. Ramsundar, P. Kawthekar, J. Shi, J. Gomes, Q. Luu Nguyen, S. Ho, J. Sloane, P. Wender,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "and V. Pande. Retrosynthetic Reaction Prediction Using Neural Sequence-to-Sequence Models. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 135, + 348, + 149 + ], + "spans": [ + { + "bbox": [ + 114, + 135, + 348, + 149 + ], + "score": 1.0, + "content": "ACS Central Science, volume 3. ACS Publications, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "N. Schneider, N. Stiefl, and G. A. Landrum. What’s What: The (Nearly) Definitive Guide to Reaction", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 164, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 507, + 180 + ], + "score": 1.0, + "content": "Role Assignment. In Journal of Chemical Information and Modeling, volume 56. ACS Publications,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 176, + 142, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 142, + 189 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "score": 1.0, + "content": "M. H. Segler and M. P. Waller. Neural-Symbolic Machine Learning for Retrosynthesis and Reaction", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 205, + 336, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 205, + 336, + 219 + ], + "score": 1.0, + "content": "Prediction. Chemistry–A European Journal, 23, 2017.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "C. Shi, M. Xu, H. Guo, M. Zhang, and J. Tang. A graph to graphs framework for retrosynthesis", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 236, + 186, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 236, + 186, + 248 + ], + "score": 1.0, + "content": "prediction, 2020.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 253, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 506, + 269 + ], + "score": 1.0, + "content": "R. Sun, H. Dai, L. Li, S. Kearnes, and B. Dai. Energy-based view of retrosynthesis, 2021. URL", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 266, + 347, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 279, + 280 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 279, + 267, + 285, + 275 + ], + "score": 0.36, + "content": "\\equiv", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 266, + 347, + 280 + ], + "score": 1.0, + "content": "0Hj3tFCSjUd.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 104, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "S. Szymkuc, E. P. Gajewska, T. Klucznik, K. Molga, P. Dittwald, M. Startek, M. Bajczyk, and ´", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 294, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 114, + 294, + 506, + 309 + ], + "score": 1.0, + "content": "B. A. Grzybowski. Computer-assisted synthetic planning: The end of the beginning. Angewandte", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 307, + 343, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 343, + 320 + ], + "score": 1.0, + "content": "Chemie International Edition, 55(20):5904–5937, 2016.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "Attention is All You Need. In Advances in Neural Information Processing Systems (NeurIPS),", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 347, + 189, + 359 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 189, + 359 + ], + "score": 1.0, + "content": "volume 30, 2017.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "D. Weininger. SMILES, a Chemical Language and Information System. Journal of Chemical", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 377, + 305, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 377, + 305, + 390 + ], + "score": 1.0, + "content": "Information and Computer Sciences, 28, 1988.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 395, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 410 + ], + "score": 1.0, + "content": "R. J. Williams and D. Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 406, + 373, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 373, + 419 + ], + "score": 1.0, + "content": "Networks. In Neural Computation, volume 1. MIT Press, 1989.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 424, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 507, + 439 + ], + "score": 1.0, + "content": "C. Yan, Q. Ding, P. Zhao, S. Zheng, J. YANG, Y. Yu, and J. Huang. Retroxpert: Decompose retrosyn-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "thesis prediction like a chemist. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 447, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 507, + 461 + ], + "score": 1.0, + "content": "editors, Advances in Neural Information Processing Systems, volume 33, pages 11248–11258.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 114, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "Curran Associates, Inc., 2020. URL https://proceedings.neurips.cc/paper/2020/file/", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 469, + 342, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 469, + 342, + 483 + ], + "score": 1.0, + "content": "819f46e52c25763a55cc642422644317-Paper.pdf.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "score": 1.0, + "content": "S. Zheng, J. Rao, Z. Zhang, J. Xu, and Y. Yang. Predicting Retrosynthetic Reactions using Self-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "Corrected Transformer Neural Networks. In Journal of Chemical Information and Modeling. ACS", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 509, + 195, + 522 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 195, + 522 + ], + "score": 1.0, + "content": "Publications, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 16 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 66, + 506, + 527 + ], + "lines": [], + "index": 16, + "bbox_fs": [ + 104, + 73, + 507, + 522 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/LyjH88yV7F/LyjH88yV7F_model.json b/parse/train/LyjH88yV7F/LyjH88yV7F_model.json new file mode 100644 index 0000000000000000000000000000000000000000..96558efde28b44e1527c0af80bacf44588174477 --- /dev/null +++ b/parse/train/LyjH88yV7F/LyjH88yV7F_model.json @@ -0,0 +1,13998 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 923, + 1304, + 923, + 1304, + 1287, + 398, + 1287 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1699, + 1404, + 1699, + 1404, + 1973, + 298, + 1973 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1440, + 1404, + 1440, + 1404, + 1684, + 298, + 1684 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 562, + 271, + 1136, + 271, + 1136, + 381, + 562, + 381 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 317, + 638, + 1387, + 638, + 1387, + 766, + 317, + 766 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 299, + 1363, + 530, + 1363, + 530, + 1401, + 299, + 1401 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 788, + 844, + 912, + 844, + 912, + 881, + 788, + 881 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 628, + 575, + 1070, + 575, + 1070, + 611, + 628, + 611 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 298, + 2032, + 1069, + 2032, + 1069, + 2062, + 298, + 2062 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 777, + 497, + 984, + 497, + 984, + 531, + 777, + 531 + ], + "score": 0.62 + }, + { + "category_id": 1, + "poly": [ + 389, + 498, + 669, + 498, + 669, + 532, + 389, + 532 + ], + "score": 0.526 + }, + { + "category_id": 0, + "poly": [ + 389, + 498, + 669, + 498, + 669, + 532, + 389, + 532 + ], + "score": 0.278 + }, + { + "category_id": 2, + "poly": [ + 298, + 2032, + 1069, + 2032, + 1069, + 2062, + 298, + 2062 + ], + "score": 0.262 + }, + { + "category_id": 1, + "poly": [ + 1092, + 497, + 1311, + 497, + 1311, + 532, + 1092, + 532 + ], + "score": 0.251 + }, + { + "category_id": 0, + "poly": [ + 628, + 575, + 1070, + 575, + 1070, + 611, + 628, + 611 + ], + "score": 0.14 + }, + { + "category_id": 13, + "poly": [ + 1221, + 1226, + 1297, + 1226, + 1297, + 1257, + 1221, + 1257 + ], + "score": 0.85, + "latex": "5 3 . 7 \\%" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 268.0, + 1145.0, + 268.0, + 1145.0, + 332.0, + 557.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 327.0, + 1119.0, + 327.0, + 1119.0, + 383.0, + 582.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1360.0, + 536.0, + 1360.0, + 536.0, + 1408.0, + 292.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 844.0, + 917.0, + 844.0, + 917.0, + 883.0, + 784.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 495.0, + 673.0, + 495.0, + 673.0, + 535.0, + 384.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2067.0, + 293.0, + 2067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 566.0, + 1075.0, + 566.0, + 1075.0, + 621.0, + 620.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 925.0, + 1304.0, + 925.0, + 1304.0, + 957.0, + 395.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 953.0, + 1306.0, + 953.0, + 1306.0, + 990.0, + 393.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 980.0, + 1307.0, + 980.0, + 1307.0, + 1022.0, + 392.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1014.0, + 1308.0, + 1014.0, + 1308.0, + 1049.0, + 394.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1045.0, + 1306.0, + 1045.0, + 1306.0, + 1080.0, + 394.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1076.0, + 1305.0, + 1076.0, + 1305.0, + 1108.0, + 394.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1105.0, + 1305.0, + 1105.0, + 1305.0, + 1139.0, + 393.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1137.0, + 1304.0, + 1137.0, + 1304.0, + 1169.0, + 395.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1166.0, + 1305.0, + 1166.0, + 1305.0, + 1201.0, + 394.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1195.0, + 1305.0, + 1195.0, + 1305.0, + 1230.0, + 394.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1226.0, + 1220.0, + 1226.0, + 1220.0, + 1260.0, + 395.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1226.0, + 1308.0, + 1226.0, + 1308.0, + 1260.0, + 1298.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1258.0, + 1209.0, + 1258.0, + 1209.0, + 1289.0, + 394.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1406.0, + 1697.0, + 1406.0, + 1736.0, + 295.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1730.0, + 1406.0, + 1730.0, + 1406.0, + 1766.0, + 293.0, + 1766.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": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1859.0, + 293.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1408.0, + 1850.0, + 1408.0, + 1887.0, + 294.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1876.0, + 1409.0, + 1876.0, + 1409.0, + 1919.0, + 292.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1406.0, + 1907.0, + 1406.0, + 1950.0, + 292.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1336.0, + 1940.0, + 1336.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1509.0, + 292.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1503.0, + 1405.0, + 1503.0, + 1405.0, + 1537.0, + 292.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1568.0, + 292.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 1405.0, + 1563.0, + 1405.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1659.0, + 292.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1654.0, + 1320.0, + 1654.0, + 1320.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 634.0, + 1081.0, + 634.0, + 1081.0, + 674.0, + 622.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 665.0, + 1103.0, + 665.0, + 1103.0, + 709.0, + 596.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 698.0, + 1166.0, + 698.0, + 1166.0, + 739.0, + 534.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 730.0, + 1387.0, + 730.0, + 1387.0, + 770.0, + 312.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 566.0, + 1075.0, + 566.0, + 1075.0, + 621.0, + 620.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2067.0, + 293.0, + 2067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 495.0, + 989.0, + 495.0, + 989.0, + 534.0, + 774.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 495.0, + 673.0, + 495.0, + 673.0, + 535.0, + 384.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 493.0, + 1315.0, + 493.0, + 1315.0, + 538.0, + 1088.0, + 538.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1405, + 1089, + 1405, + 1424, + 298, + 1424 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1404, + 1438, + 1404, + 1652, + 298, + 1652 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 891, + 1404, + 891, + 1404, + 1076, + 299, + 1076 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 299, + 230, + 1383, + 230, + 1383, + 645, + 299, + 645 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 311, + 1858, + 1404, + 1858, + 1404, + 1950, + 311, + 1950 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 675, + 1404, + 675, + 1404, + 829, + 297, + 829 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 296, + 1766, + 1401, + 1766, + 1401, + 1829, + 296, + 1829 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 299, + 1696, + 548, + 1696, + 548, + 1733, + 299, + 1733 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 337, + 1978, + 537, + 1978, + 537, + 2007, + 337, + 2007 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 299, + 196, + 495, + 196, + 495, + 223, + 299, + 223 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.741 + }, + { + "category_id": 13, + "poly": [ + 326, + 1529, + 382, + 1529, + 382, + 1559, + 326, + 1559 + ], + "score": 0.88, + "latex": "7 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1590, + 1295, + 1590, + 1295, + 1619, + 1220, + 1619 + ], + "score": 0.87, + "latex": "5 3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 933, + 1014, + 995, + 1014, + 995, + 1043, + 933, + 1043 + ], + "score": 0.86, + "latex": "6 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1302, + 1371, + 1302, + 1371, + 1332, + 1295, + 1332 + ], + "score": 0.86, + "latex": "9 9 . 7 \\%" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 250.0, + 695.0, + 250.0, + 695.0, + 342.0, + 342.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 226.0, + 1392.0, + 226.0, + 1392.0, + 371.0, + 700.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 357.0, + 524.0, + 357.0, + 524.0, + 390.0, + 445.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 357.0, + 1279.0, + 357.0, + 1279.0, + 390.0, + 1189.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 405.0, + 556.0, + 405.0, + 556.0, + 452.0, + 295.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 458.0, + 549.0, + 458.0, + 549.0, + 555.0, + 334.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 489.0, + 1000.0, + 489.0, + 1000.0, + 508.0, + 978.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 492.0, + 1228.0, + 492.0, + 1228.0, + 519.0, + 1194.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 491.0, + 1289.0, + 491.0, + 1289.0, + 513.0, + 1259.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 540.0, + 529.0, + 540.0, + 529.0, + 563.0, + 499.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 551.0, + 1248.0, + 551.0, + 1248.0, + 581.0, + 1213.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 554.0, + 1263.0, + 554.0, + 1263.0, + 569.0, + 1253.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 556.0, + 1292.0, + 556.0, + 1292.0, + 569.0, + 1283.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 596.0, + 533.0, + 596.0, + 533.0, + 637.0, + 438.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 601.0, + 1270.0, + 601.0, + 1270.0, + 629.0, + 1178.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 525.5, + 629.0, + 525.5, + 629.0, + 581.5, + 527.0, + 581.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 678.0, + 1405.0, + 678.0, + 1405.0, + 711.0, + 296.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 741.0, + 293.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 737.0, + 1404.0, + 737.0, + 1404.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 805.0, + 292.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 800.0, + 729.0, + 800.0, + 729.0, + 833.0, + 296.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1693.0, + 551.0, + 1693.0, + 551.0, + 1738.0, + 292.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1971.0, + 543.0, + 1971.0, + 543.0, + 2014.0, + 332.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 193.0, + 498.0, + 193.0, + 498.0, + 226.0, + 294.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1087.0, + 1407.0, + 1087.0, + 1407.0, + 1124.0, + 293.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1154.0, + 295.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 1406.0, + 1150.0, + 1406.0, + 1185.0, + 295.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1207.0, + 1406.0, + 1207.0, + 1406.0, + 1249.0, + 292.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1279.0, + 292.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1307.0, + 292.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1300.0, + 1294.0, + 1300.0, + 1294.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1300.0, + 1406.0, + 1300.0, + 1406.0, + 1337.0, + 1372.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1333.0, + 1405.0, + 1333.0, + 1405.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 1410.0, + 1362.0, + 1410.0, + 1400.0, + 293.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1395.0, + 1343.0, + 1395.0, + 1343.0, + 1426.0, + 296.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1408.0, + 1438.0, + 1408.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 325.0, + 1530.0, + 325.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1565.0, + 383.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1598.0, + 292.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1219.0, + 1589.0, + 1219.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1624.0, + 1296.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1379.0, + 1621.0, + 1379.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 893.0, + 1403.0, + 893.0, + 1403.0, + 925.0, + 297.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 1406.0, + 922.0, + 1406.0, + 957.0, + 293.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 953.0, + 1405.0, + 953.0, + 1405.0, + 987.0, + 294.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1409.0, + 983.0, + 1409.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1011.0, + 932.0, + 1011.0, + 932.0, + 1050.0, + 293.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1011.0, + 1405.0, + 1011.0, + 1405.0, + 1050.0, + 996.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1046.0, + 604.0, + 1046.0, + 604.0, + 1081.0, + 295.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1856.0, + 1406.0, + 1856.0, + 1406.0, + 1893.0, + 309.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1888.0, + 1408.0, + 1888.0, + 1408.0, + 1922.0, + 336.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1916.0, + 1404.0, + 1916.0, + 1404.0, + 1954.0, + 336.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1763.0, + 1405.0, + 1763.0, + 1405.0, + 1803.0, + 294.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1799.0, + 1299.0, + 1799.0, + 1299.0, + 1831.0, + 296.0, + 1831.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1672, + 1405, + 1672, + 1405, + 2007, + 298, + 2007 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 313, + 404, + 1404, + 404, + 1404, + 709, + 313, + 709 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 312, + 728, + 1404, + 728, + 1404, + 1031, + 312, + 1031 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1074, + 1404, + 1074, + 1404, + 1350, + 298, + 1350 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1391, + 1403, + 1391, + 1403, + 1545, + 299, + 1545 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 338, + 203, + 1405, + 203, + 1405, + 384, + 338, + 384 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 299, + 1596, + 545, + 1596, + 545, + 1635, + 299, + 1635 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.629 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.345 + }, + { + "category_id": 13, + "poly": [ + 1163, + 1256, + 1247, + 1256, + 1247, + 1291, + 1163, + 1291 + ], + "score": 0.92, + "latex": "O ( N ^ { \\bar { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1257, + 1349, + 1257, + 1349, + 1290, + 1279, + 1290 + ], + "score": 0.91, + "latex": "O ( N )" + }, + { + "category_id": 13, + "poly": [ + 732, + 1228, + 825, + 1228, + 825, + 1258, + 732, + 1258 + ], + "score": 0.89, + "latex": "( \\sim 0 . 1 \\% )" + }, + { + "category_id": 13, + "poly": [ + 647, + 972, + 707, + 972, + 707, + 1000, + 647, + 1000 + ], + "score": 0.88, + "latex": "4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 755, + 971, + 816, + 971, + 816, + 1000, + 755, + 1000 + ], + "score": 0.85, + "latex": "3 . 3 \\%" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1588.0, + 550.0, + 1588.0, + 550.0, + 1646.0, + 289.0, + 1646.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": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 1407.0, + 1671.0, + 1407.0, + 1710.0, + 295.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1701.0, + 1408.0, + 1701.0, + 1408.0, + 1738.0, + 292.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1729.0, + 1410.0, + 1729.0, + 1410.0, + 1772.0, + 292.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1406.0, + 1762.0, + 1406.0, + 1799.0, + 293.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1862.0, + 292.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1407.0, + 1854.0, + 1407.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1921.0, + 293.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 779.0, + 1974.0, + 779.0, + 2013.0, + 295.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 405.0, + 1406.0, + 405.0, + 1406.0, + 440.0, + 310.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 434.0, + 1407.0, + 434.0, + 1407.0, + 470.0, + 334.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 464.0, + 1409.0, + 464.0, + 1409.0, + 501.0, + 334.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 497.0, + 1407.0, + 497.0, + 1407.0, + 529.0, + 336.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 525.0, + 1406.0, + 525.0, + 1406.0, + 562.0, + 335.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 556.0, + 1406.0, + 556.0, + 1406.0, + 592.0, + 335.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 622.0, + 335.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 617.0, + 1404.0, + 617.0, + 1404.0, + 653.0, + 336.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 648.0, + 1406.0, + 648.0, + 1406.0, + 682.0, + 334.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 674.0, + 1316.0, + 674.0, + 1316.0, + 716.0, + 335.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 727.0, + 1406.0, + 727.0, + 1406.0, + 761.0, + 308.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 759.0, + 1403.0, + 759.0, + 1403.0, + 790.0, + 338.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 824.0, + 336.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 822.0, + 1406.0, + 822.0, + 1406.0, + 853.0, + 336.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 886.0, + 332.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 880.0, + 1407.0, + 880.0, + 1407.0, + 915.0, + 336.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 908.0, + 1405.0, + 908.0, + 1405.0, + 945.0, + 333.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 979.0, + 334.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 968.0, + 646.0, + 968.0, + 646.0, + 1008.0, + 335.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 968.0, + 754.0, + 968.0, + 754.0, + 1008.0, + 708.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 968.0, + 1404.0, + 968.0, + 1404.0, + 1008.0, + 817.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1000.0, + 682.0, + 1000.0, + 682.0, + 1034.0, + 336.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1072.0, + 1406.0, + 1072.0, + 1406.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1101.0, + 1406.0, + 1101.0, + 1406.0, + 1143.0, + 293.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1131.0, + 1409.0, + 1131.0, + 1409.0, + 1174.0, + 291.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1202.0, + 293.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1234.0, + 292.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1228.0, + 731.0, + 1228.0, + 731.0, + 1260.0, + 296.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1260.0, + 826.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1254.0, + 1162.0, + 1254.0, + 1162.0, + 1294.0, + 293.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1254.0, + 1278.0, + 1254.0, + 1278.0, + 1294.0, + 1248.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1294.0, + 1350.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1285.0, + 1405.0, + 1285.0, + 1405.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1318.0, + 454.0, + 1318.0, + 454.0, + 1352.0, + 296.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1459.0, + 295.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1488.0, + 293.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1521.0, + 292.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1049.0, + 1510.0, + 1049.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 198.0, + 1406.0, + 198.0, + 1406.0, + 242.0, + 333.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 232.0, + 1408.0, + 232.0, + 1408.0, + 267.0, + 335.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 260.0, + 1409.0, + 260.0, + 1409.0, + 301.0, + 333.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 330.0, + 335.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 322.0, + 1406.0, + 322.0, + 1406.0, + 360.0, + 335.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 356.0, + 384.0, + 356.0, + 384.0, + 389.0, + 335.0, + 389.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1116, + 1404, + 1116, + 1404, + 1364, + 297, + 1364 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 296, + 606, + 1404, + 606, + 1404, + 793, + 296, + 793 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1818, + 1404, + 1818, + 1404, + 2008, + 298, + 2008 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1531, + 1405, + 1531, + 1405, + 1715, + 296, + 1715 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 201, + 1405, + 201, + 1405, + 390, + 296, + 390 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 418, + 1404, + 418, + 1404, + 574, + 297, + 574 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1375, + 1403, + 1375, + 1403, + 1500, + 297, + 1500 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 621, + 900, + 1078, + 900, + 1078, + 974, + 621, + 974 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 294, + 804, + 1401, + 804, + 1401, + 869, + 294, + 869 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 628, + 1747, + 1072, + 1747, + 1072, + 1789, + 628, + 1789 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 296, + 990, + 867, + 990, + 867, + 1025, + 296, + 1025 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 298, + 1060, + 544, + 1060, + 544, + 1094, + 298, + 1094 + ], + "score": 0.924 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1753, + 1400, + 1753, + 1400, + 1782, + 1366, + 1782 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 911, + 1400, + 911, + 1400, + 941, + 1366, + 941 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.779 + }, + { + "category_id": 14, + "poly": [ + 620, + 899, + 1077, + 899, + 1077, + 977, + 620, + 977 + ], + "score": 0.94, + "latex": "P ( \\mathcal G _ { r } | \\mathcal G _ { p } ) = \\sum _ { E , \\mathcal G _ { l } } P ( E | \\mathcal G _ { p } ) P ( \\mathcal G _ { l } | \\mathcal G _ { p } , \\mathcal G _ { s } ) ," + }, + { + "category_id": 13, + "poly": [ + 744, + 420, + 858, + 420, + 858, + 455, + 744, + 455 + ], + "score": 0.94, + "latex": "\\left\\{ \\left( a _ { i } , a _ { j } \\right) \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 861, + 1376, + 1023, + 1376, + 1023, + 1410, + 861, + 1410 + ], + "score": 0.93, + "latex": "y _ { u v k } \\in \\{ 0 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 524, + 353, + 632, + 353, + 632, + 389, + 524, + 389 + ], + "score": 0.93, + "latex": "\\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 934, + 292, + 1111, + 292, + 1111, + 328, + 934, + 328 + ], + "score": 0.93, + "latex": "\\mathcal { G } _ { r } = \\{ \\mathcal { G } _ { r _ { c } } \\} _ { c = 1 } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1181, + 638, + 1181, + 638, + 1211, + 543, + 1211 + ], + "score": 0.93, + "latex": "( \\sim 0 . 1 \\% )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1118, + 800, + 1118, + 800, + 1152, + 648, + 1152 + ], + "score": 0.93, + "latex": "R = ( \\mathcal G _ { p } , \\mathcal G _ { r } )" + }, + { + "category_id": 13, + "poly": [ + 345, + 757, + 511, + 757, + 511, + 794, + 345, + 794 + ], + "score": 0.93, + "latex": "\\mathcal { G } _ { l } = \\{ \\mathcal { G } _ { l _ { c } } ^ { \\star } \\} _ { c = 1 } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1406, + 1400, + 1406, + 1400, + 1439, + 1266, + 1439 + ], + "score": 0.93, + "latex": "y _ { u } \\in \\{ 0 , \\bar { 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 587, + 452, + 641, + 452, + 641, + 485, + 587, + 485 + ], + "score": 0.93, + "latex": "\\left\\{ { a } _ { i } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1276, + 233, + 1403, + 233, + 1403, + 267, + 1276, + 267 + ], + "score": 0.93, + "latex": "\\mathcal { G } = \\mathbf { \\bar { \\rho } } ( \\mathcal { V } , \\mathcal { E } )" + }, + { + "category_id": 13, + "poly": [ + 1227, + 727, + 1400, + 727, + 1400, + 764, + 1227, + 764 + ], + "score": 0.92, + "latex": "\\mathcal { G } _ { s } \\doteq \\{ \\mathcal { G } _ { s _ { c } } \\} _ { c = 1 } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1209, + 1237, + 1209, + 1237, + 1242, + 1155, + 1242 + ], + "score": 0.92, + "latex": "O ( N ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1210, + 1341, + 1210, + 1341, + 1242, + 1271, + 1242 + ], + "score": 0.92, + "latex": "O ( N )" + }, + { + "category_id": 13, + "poly": [ + 469, + 1884, + 535, + 1884, + 535, + 1918, + 469, + 1918 + ], + "score": 0.92, + "latex": "\\left\\{ \\mathbf { c } _ { \\mathcal { G } _ { i } } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 790, + 1594, + 855, + 1594, + 855, + 1627, + 790, + 1627 + ], + "score": 0.92, + "latex": "( u , v )" + }, + { + "category_id": 13, + "poly": [ + 518, + 1850, + 696, + 1850, + 696, + 1887, + 518, + 1887 + ], + "score": 0.92, + "latex": "\\mathbf { c } _ { \\mathcal { G } } = \\dot { \\sum _ { { u } \\in \\mathcal { V } } } \\mathbf { c } _ { u }" + }, + { + "category_id": 13, + "poly": [ + 296, + 233, + 388, + 233, + 388, + 267, + 296, + 267 + ], + "score": 0.92, + "latex": "( \\mathcal { G } _ { p } , \\mathcal { G } _ { r } )" + }, + { + "category_id": 13, + "poly": [ + 371, + 993, + 443, + 993, + 443, + 1024, + 371, + 1024 + ], + "score": 0.92, + "latex": "\\mathcal { G } _ { s } , \\mathcal { G } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1820, + 436, + 1820, + 436, + 1854, + 370, + 1854 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( u )" + }, + { + "category_id": 13, + "poly": [ + 428, + 1376, + 494, + 1376, + 494, + 1409, + 428, + 1409 + ], + "score": 0.91, + "latex": "( u , v )" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1655, + 1400, + 1655, + 1400, + 1688, + 1267, + 1688 + ], + "score": 0.91, + "latex": "\\{ \\mathbf { c } _ { u } | u \\in \\mathcal { G } \\}" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1852, + 1159, + 1852, + 1159, + 1885, + 1105, + 1885 + ], + "score": 0.91, + "latex": "\\left\\{ { \\mathcal { G } } _ { i } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 706, + 993, + 768, + 993, + 768, + 1024, + 706, + 1024 + ], + "score": 0.91, + "latex": "E , { \\mathcal { G } } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 1884, + 1397, + 1884, + 1397, + 1918, + 1050, + 1918 + ], + "score": 0.9, + "latex": "\\mathbf { c } _ { u v } = ( \\operatorname { A B S } ( \\mathbf { c } _ { u } , \\mathbf { c } _ { v } ) | | \\mathbf { c } _ { u } + \\mathbf { c } _ { v } )" + }, + { + "category_id": 13, + "poly": [ + 1086, + 837, + 1126, + 837, + 1126, + 869, + 1086, + 869 + ], + "score": 0.9, + "latex": "\\mathcal { G } _ { s _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 767, + 837, + 805, + 837, + 805, + 869, + 767, + 869 + ], + "score": 0.9, + "latex": "\\mathcal { G } _ { l _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 672, + 1886, + 737, + 1886, + 737, + 1918, + 672, + 1918 + ], + "score": 0.9, + "latex": "( u , v )" + }, + { + "category_id": 13, + "poly": [ + 1318, + 807, + 1350, + 807, + 1350, + 839, + 1318, + 839 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 470, + 235, + 502, + 235, + 502, + 267, + 470, + 267 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 703, + 355, + 735, + 355, + 735, + 389, + 703, + 389 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 610, + 1056, + 610, + 1056, + 642, + 1024, + 642 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 673, + 700, + 704, + 700, + 704, + 730, + 673, + 730 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 826, + 993, + 858, + 993, + 858, + 1027, + 826, + 1027 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 14, + "poly": [ + 626, + 1748, + 1071, + 1748, + 1071, + 1789, + 626, + 1789 + ], + "score": 0.88, + "latex": "\\{ \\mathbf { c } _ { u } \\} = \\mathrm { M P N } ( \\mathcal { G } , \\{ \\mathbf { x } _ { u } \\} , \\{ \\mathbf { x } _ { u v } \\} _ { v \\in \\mathcal { N } ( u ) } ) ," + }, + { + "category_id": 13, + "poly": [ + 725, + 235, + 756, + 235, + 756, + 264, + 725, + 264 + ], + "score": 0.88, + "latex": "\\mathcal { G } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1598, + 1122, + 1598, + 1122, + 1625, + 1076, + 1625 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { u v }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1377, + 562, + 1377, + 562, + 1410, + 529, + 1410 + ], + "score": 0.88, + "latex": "\\mathcal { G } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1567, + 1184, + 1567, + 1184, + 1594, + 1149, + 1594 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { u }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1826, + 1117, + 1826, + 1117, + 1853, + 1085, + 1853 + ], + "score": 0.87, + "latex": "\\mathbf { c } _ { \\mathcal { G } }" + }, + { + "category_id": 13, + "poly": [ + 504, + 1271, + 560, + 1271, + 560, + 1300, + 504, + 1300 + ], + "score": 0.87, + "latex": "9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 819, + 760, + 908, + 760, + 908, + 789, + 819, + 789 + ], + "score": 0.86, + "latex": "9 9 . 9 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 837, + 328, + 837, + 328, + 866, + 298, + 866 + ], + "score": 0.86, + "latex": "\\mathcal { G } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 956, + 700, + 983, + 700, + 983, + 730, + 956, + 730 + ], + "score": 0.86, + "latex": "\\mathcal { G } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 773, + 1917, + 791, + 1917, + 791, + 1948, + 773, + 1948 + ], + "score": 0.85, + "latex": "| |" + }, + { + "category_id": 13, + "poly": [ + 844, + 610, + 868, + 610, + 868, + 636, + 844, + 636 + ], + "score": 0.84, + "latex": "E" + }, + { + "category_id": 13, + "poly": [ + 780, + 1855, + 800, + 1855, + 800, + 1882, + 780, + 1882 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 807, + 1150, + 807, + 1150, + 833, + 1125, + 833 + ], + "score": 0.83, + "latex": "E" + }, + { + "category_id": 13, + "poly": [ + 662, + 265, + 682, + 265, + 682, + 291, + 662, + 291 + ], + "score": 0.82, + "latex": "\\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 879, + 205, + 904, + 205, + 904, + 231, + 879, + 231 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 873, + 483, + 898, + 483, + 898, + 509, + 873, + 509 + ], + "score": 0.8, + "latex": "E" + }, + { + "category_id": 13, + "poly": [ + 422, + 266, + 445, + 266, + 445, + 291, + 422, + 291 + ], + "score": 0.79, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 448, + 1240, + 477, + 1240, + 477, + 1268, + 448, + 1268 + ], + "score": 0.79, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 297, + 1408, + 317, + 1408, + 317, + 1434, + 297, + 1434 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 952, + 1414, + 972, + 1414, + 972, + 1434, + 952, + 1434 + ], + "score": 0.75, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 776, + 1830, + 794, + 1830, + 794, + 1847, + 776, + 1847 + ], + "score": 0.7, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 900, + 1570, + 920, + 1570, + 920, + 1591, + 900, + 1591 + ], + "score": 0.67, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1624, + 1352, + 1624, + 1352, + 1656, + 1255, + 1656 + ], + "score": 0.58, + "latex": "\\mathrm { M P N } ( \\cdot )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 548.0, + 1059.0, + 548.0, + 1099.0, + 293.0, + 1099.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": [ + 292.0, + 1117.0, + 647.0, + 1117.0, + 647.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1117.0, + 1407.0, + 1117.0, + 1407.0, + 1158.0, + 801.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1149.0, + 1405.0, + 1149.0, + 1405.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1178.0, + 542.0, + 1178.0, + 542.0, + 1215.0, + 292.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1215.0, + 639.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1206.0, + 1154.0, + 1206.0, + 1154.0, + 1247.0, + 292.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1206.0, + 1270.0, + 1206.0, + 1270.0, + 1247.0, + 1238.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1206.0, + 1409.0, + 1206.0, + 1409.0, + 1247.0, + 1342.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 447.0, + 1239.0, + 447.0, + 1276.0, + 294.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1239.0, + 1407.0, + 1239.0, + 1407.0, + 1276.0, + 478.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1270.0, + 503.0, + 1270.0, + 503.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1270.0, + 1405.0, + 1270.0, + 1405.0, + 1304.0, + 561.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1331.0, + 827.0, + 1331.0, + 827.0, + 1364.0, + 293.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 607.0, + 843.0, + 607.0, + 843.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 607.0, + 1023.0, + 607.0, + 1023.0, + 643.0, + 869.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 607.0, + 1404.0, + 607.0, + 1404.0, + 643.0, + 1057.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 674.0, + 295.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 706.0, + 293.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 672.0, + 698.0, + 672.0, + 734.0, + 294.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 698.0, + 955.0, + 698.0, + 955.0, + 734.0, + 705.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 698.0, + 1405.0, + 698.0, + 1405.0, + 734.0, + 984.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 721.0, + 1226.0, + 721.0, + 1226.0, + 774.0, + 289.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 721.0, + 1406.0, + 721.0, + 1406.0, + 774.0, + 1401.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 749.0, + 344.0, + 749.0, + 344.0, + 802.0, + 290.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 749.0, + 818.0, + 749.0, + 818.0, + 802.0, + 512.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 749.0, + 1230.0, + 749.0, + 1230.0, + 802.0, + 909.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1816.0, + 369.0, + 1816.0, + 369.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1816.0, + 775.0, + 1816.0, + 775.0, + 1857.0, + 437.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1816.0, + 1084.0, + 1816.0, + 1084.0, + 1857.0, + 795.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1816.0, + 1405.0, + 1816.0, + 1405.0, + 1857.0, + 1118.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1848.0, + 517.0, + 1848.0, + 517.0, + 1892.0, + 291.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1848.0, + 779.0, + 1848.0, + 779.0, + 1892.0, + 697.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1848.0, + 1104.0, + 1848.0, + 1104.0, + 1892.0, + 801.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1892.0, + 1160.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1882.0, + 468.0, + 1882.0, + 468.0, + 1922.0, + 292.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1882.0, + 671.0, + 1882.0, + 671.0, + 1922.0, + 536.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1882.0, + 1049.0, + 1882.0, + 1049.0, + 1922.0, + 738.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1882.0, + 1408.0, + 1882.0, + 1408.0, + 1922.0, + 1398.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 772.0, + 1912.0, + 772.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1951.0, + 792.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1406.0, + 1945.0, + 1406.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 722.0, + 1975.0, + 722.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 899.0, + 1563.0, + 899.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1563.0, + 1148.0, + 1563.0, + 1148.0, + 1599.0, + 921.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1563.0, + 1405.0, + 1563.0, + 1405.0, + 1599.0, + 1185.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 789.0, + 1591.0, + 789.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1591.0, + 1075.0, + 1591.0, + 1075.0, + 1631.0, + 856.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1591.0, + 1407.0, + 1591.0, + 1407.0, + 1631.0, + 1123.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 1254.0, + 1622.0, + 1254.0, + 1660.0, + 293.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1622.0, + 1406.0, + 1622.0, + 1406.0, + 1660.0, + 1353.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1651.0, + 1266.0, + 1651.0, + 1266.0, + 1693.0, + 291.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 340.0, + 1685.0, + 340.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 200.0, + 878.0, + 200.0, + 878.0, + 237.0, + 293.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 200.0, + 1405.0, + 200.0, + 1405.0, + 237.0, + 905.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 231.0, + 469.0, + 231.0, + 469.0, + 271.0, + 389.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 231.0, + 724.0, + 231.0, + 724.0, + 271.0, + 503.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 231.0, + 1275.0, + 231.0, + 1275.0, + 271.0, + 757.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 265.0, + 421.0, + 265.0, + 421.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 265.0, + 661.0, + 265.0, + 661.0, + 297.0, + 446.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 265.0, + 1405.0, + 265.0, + 1405.0, + 297.0, + 683.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 289.0, + 933.0, + 289.0, + 933.0, + 337.0, + 290.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 289.0, + 1408.0, + 289.0, + 1408.0, + 337.0, + 1112.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 325.0, + 1405.0, + 325.0, + 1405.0, + 361.0, + 294.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 343.0, + 523.0, + 343.0, + 523.0, + 396.0, + 292.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 343.0, + 702.0, + 343.0, + 702.0, + 396.0, + 633.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 343.0, + 749.0, + 343.0, + 749.0, + 396.0, + 736.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 416.0, + 743.0, + 416.0, + 743.0, + 457.0, + 292.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 416.0, + 1406.0, + 416.0, + 1406.0, + 457.0, + 859.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 586.0, + 452.0, + 586.0, + 485.0, + 295.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 452.0, + 1402.0, + 452.0, + 1402.0, + 485.0, + 642.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 479.0, + 872.0, + 479.0, + 872.0, + 519.0, + 292.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 479.0, + 1406.0, + 479.0, + 1406.0, + 519.0, + 899.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 541.0, + 884.0, + 541.0, + 884.0, + 577.0, + 293.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1373.0, + 427.0, + 1373.0, + 427.0, + 1412.0, + 292.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1373.0, + 528.0, + 1373.0, + 528.0, + 1412.0, + 495.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1373.0, + 860.0, + 1373.0, + 860.0, + 1412.0, + 563.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1412.0, + 1024.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1407.0, + 951.0, + 1407.0, + 951.0, + 1440.0, + 318.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1407.0, + 1265.0, + 1407.0, + 1265.0, + 1440.0, + 973.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1434.0, + 1407.0, + 1434.0, + 1407.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 555.0, + 1468.0, + 555.0, + 1501.0, + 293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 802.0, + 1124.0, + 802.0, + 1124.0, + 843.0, + 293.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 802.0, + 1317.0, + 802.0, + 1317.0, + 843.0, + 1151.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 802.0, + 1406.0, + 802.0, + 1406.0, + 843.0, + 1351.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 297.0, + 834.0, + 297.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 834.0, + 766.0, + 834.0, + 766.0, + 871.0, + 329.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 834.0, + 1085.0, + 834.0, + 1085.0, + 871.0, + 806.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 834.0, + 1407.0, + 834.0, + 1407.0, + 871.0, + 1127.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 985.0, + 370.0, + 985.0, + 370.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 985.0, + 705.0, + 985.0, + 705.0, + 1033.0, + 444.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 985.0, + 825.0, + 985.0, + 825.0, + 1033.0, + 769.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 985.0, + 869.0, + 985.0, + 869.0, + 1033.0, + 859.0, + 1033.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1792, + 1404, + 1792, + 1404, + 2008, + 297, + 2008 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 381, + 1405, + 381, + 1405, + 597, + 296, + 597 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1543, + 1404, + 1543, + 1404, + 1759, + 296, + 1759 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1353, + 1404, + 1353, + 1404, + 1510, + 298, + 1510 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1218, + 1405, + 1218, + 1405, + 1343, + 297, + 1343 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1030, + 1404, + 1030, + 1404, + 1124, + 299, + 1124 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 491, + 892, + 1205, + 892, + 1205, + 1000, + 491, + 1000 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 299, + 1161, + 607, + 1161, + 607, + 1195, + 299, + 1195 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 300, + 314, + 780, + 314, + 780, + 348, + 300, + 348 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 290, + 825, + 1328, + 825, + 1328, + 859, + 290, + 859 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 709, + 199, + 980, + 199, + 980, + 237, + 709, + 237 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 929, + 1400, + 929, + 1400, + 959, + 1366, + 959 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 205, + 1400, + 205, + 1400, + 235, + 1366, + 235 + ], + "score": 0.876 + }, + { + "category_id": 8, + "poly": [ + 683, + 245, + 1016, + 245, + 1016, + 283, + 683, + 283 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1366, + 250, + 1400, + 250, + 1400, + 278, + 1366, + 278 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1365, + 638, + 1400, + 638, + 1400, + 667, + 1365, + 667 + ], + "score": 0.864 + }, + { + "category_id": 9, + "poly": [ + 1366, + 760, + 1400, + 760, + 1400, + 789, + 1366, + 789 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 683, + 1400, + 683, + 1400, + 712, + 1366, + 712 + ], + "score": 0.845 + }, + { + "category_id": 9, + "poly": [ + 1366, + 722, + 1400, + 722, + 1400, + 750, + 1366, + 750 + ], + "score": 0.831 + }, + { + "category_id": 8, + "poly": [ + 640, + 677, + 1029, + 677, + 1029, + 717, + 640, + 717 + ], + "score": 0.809 + }, + { + "category_id": 8, + "poly": [ + 638, + 760, + 1032, + 760, + 1032, + 793, + 638, + 793 + ], + "score": 0.798 + }, + { + "category_id": 8, + "poly": [ + 631, + 720, + 1070, + 720, + 1070, + 755, + 631, + 755 + ], + "score": 0.725 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.722 + }, + { + "category_id": 8, + "poly": [ + 641, + 631, + 1031, + 631, + 1031, + 672, + 641, + 672 + ], + "score": 0.339 + }, + { + "category_id": 8, + "poly": [ + 641, + 631, + 1031, + 631, + 1031, + 672, + 641, + 672 + ], + "score": 0.245 + }, + { + "category_id": 14, + "poly": [ + 628, + 626, + 1072, + 626, + 1072, + 798, + 628, + 798 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { f _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { f } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { f } } \\mathbf { m } _ { u v } ) } \\\\ & { i _ { u v k } = \\sigma ( \\mathbf { W _ { k x } ^ { i } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { i } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { m } _ { u v k } = \\mathbf { u _ { m } } \\tau ( \\mathbf { W _ { k x } ^ { m } } \\mathbf { x } _ { u v } + \\mathbf { W _ { k m } ^ { m } } \\mathbf { m } _ { u v } ) } \\\\ & { \\tilde { s } _ { u v k } = f _ { u v k } \\cdot s _ { u v k } + i _ { u v k } \\cdot \\tilde { m } _ { u v k } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 491, + 888, + 1209, + 888, + 1209, + 1001, + 491, + 1001 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { e } = - \\sum _ { ( \\mathcal { G } _ { p } , E ) } \\left( \\sum _ { ( ( u , v ) , k ) \\in E } y _ { u v k } \\mathrm { l o g } ( \\widetilde s _ { u v k } ) + \\sum _ { u \\in E } y _ { u } \\mathrm { l o g } ( s _ { u } ) \\right) ." + }, + { + "category_id": 13, + "poly": [ + 982, + 1635, + 1036, + 1635, + 1036, + 1669, + 982, + 1669 + ], + "score": 0.92, + "latex": "\\left\\{ { a } _ { i } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 708, + 1636, + 886, + 1636, + 886, + 1669, + 708, + 1669 + ], + "score": 0.92, + "latex": "\\smash { \\gamma _ { l _ { c } } = \\gamma _ { r _ { c } } \\setminus \\gamma _ { s _ { c } } }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1637, + 595, + 1637, + 595, + 1669, + 419, + 1669 + ], + "score": 0.91, + "latex": "\\mathcal { G } _ { l _ { c } } = ( \\nu _ { l _ { c } } , \\mathcal { E } _ { l _ { c } } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 505, + 361, + 505, + 361, + 538, + 296, + 538 + ], + "score": 0.91, + "latex": "( u , v )" + }, + { + "category_id": 13, + "poly": [ + 457, + 1605, + 644, + 1605, + 644, + 1638, + 457, + 1638 + ], + "score": 0.91, + "latex": "\\mathcal { G } _ { r _ { c } } = ( \\nu _ { r _ { c } } , \\mathcal { E } _ { r _ { c } } )" + }, + { + "category_id": 13, + "poly": [ + 625, + 1916, + 713, + 1916, + 713, + 1946, + 625, + 1946 + ], + "score": 0.91, + "latex": "x _ { i } \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 371, + 315, + 418, + 315, + 418, + 349, + 371, + 349 + ], + "score": 0.91, + "latex": "\\tau ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 895, + 1795, + 971, + 1795, + 971, + 1824, + 895, + 1824 + ], + "score": 0.91, + "latex": "c \\leq C" + }, + { + "category_id": 13, + "poly": [ + 296, + 1606, + 406, + 1606, + 406, + 1639, + 296, + 1639 + ], + "score": 0.91, + "latex": "( \\gamma _ { s _ { c } } , \\mathcal { E } _ { s _ { c } } )" + }, + { + "category_id": 13, + "poly": [ + 936, + 1859, + 987, + 1859, + 987, + 1889, + 936, + 1889 + ], + "score": 0.91, + "latex": "\\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }" + }, + { + "category_id": 14, + "poly": [ + 681, + 194, + 1016, + 194, + 1016, + 289, + 681, + 289 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\boldsymbol { s } _ { u } = \\mathbf { u _ { a } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { a } } \\mathbf { c } _ { u } + b ) \\quad } \\\\ { \\boldsymbol { s } _ { u v k } = \\mathbf { u _ { k } } ^ { T } \\boldsymbol { \\tau } ( \\mathbf { W _ { k } } \\mathbf { c } _ { u v } + b _ { k } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1328, + 1575, + 1404, + 1575, + 1404, + 1608, + 1328, + 1608 + ], + "score": 0.9, + "latex": "\\mathcal { G } _ { s _ { c } } =" + }, + { + "category_id": 13, + "poly": [ + 730, + 1889, + 790, + 1889, + 790, + 1919, + 730, + 1919 + ], + "score": 0.9, + "latex": "{ \\bf e } _ { l _ { c - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1295, + 540, + 1350, + 540, + 1350, + 566, + 1295, + 566 + ], + "score": 0.9, + "latex": "s _ { u v k }" + }, + { + "category_id": 13, + "poly": [ + 701, + 1355, + 827, + 1355, + 827, + 1389, + 701, + 1389 + ], + "score": 0.89, + "latex": "| \\mathcal { X } | = 1 7 0" + }, + { + "category_id": 13, + "poly": [ + 458, + 1859, + 501, + 1859, + 501, + 1890, + 458, + 1890 + ], + "score": 0.89, + "latex": "\\mathbf { c } _ { \\mathcal { G } _ { p } }" + }, + { + "category_id": 13, + "poly": [ + 923, + 538, + 979, + 538, + 979, + 565, + 923, + 565 + ], + "score": 0.88, + "latex": "\\mathbf { m } _ { u v }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1950, + 812, + 1950, + 812, + 1976, + 783, + 1976 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 812, + 1312, + 839, + 1312, + 839, + 1338, + 812, + 1338 + ], + "score": 0.84, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1607, + 1095, + 1607, + 1095, + 1633, + 1069, + 1633 + ], + "score": 0.83, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1667, + 1144, + 1667, + 1144, + 1693, + 1116, + 1693 + ], + "score": 0.82, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1795, + 1085, + 1795, + 1085, + 1821, + 1060, + 1821 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 552, + 1448, + 579, + 1448, + 579, + 1474, + 552, + 1474 + ], + "score": 0.8, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1976, + 751, + 1976, + 751, + 2009, + 655, + 2009 + ], + "score": 0.66, + "latex": "\\mathrm { M P N } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 408, + 1915, + 504, + 1915, + 504, + 1948, + 408, + 1948 + ], + "score": 0.59, + "latex": "\\mathrm { M P N } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1269, + 504, + 1365, + 504, + 1365, + 537, + 1269, + 537 + ], + "score": 0.43, + "latex": "\\mathrm { M P N } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1945, + 1222, + 1945, + 1222, + 1979, + 1125, + 1979 + ], + "score": 0.35, + "latex": "\\mathrm { M P N } ( \\cdot )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 610.0, + 1158.0, + 610.0, + 1201.0, + 293.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1793.0, + 894.0, + 1793.0, + 894.0, + 1831.0, + 294.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1793.0, + 1059.0, + 1793.0, + 1059.0, + 1831.0, + 972.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1793.0, + 1406.0, + 1793.0, + 1406.0, + 1831.0, + 1086.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 1405.0, + 1825.0, + 1405.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1853.0, + 457.0, + 1853.0, + 457.0, + 1895.0, + 291.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1853.0, + 935.0, + 1853.0, + 935.0, + 1895.0, + 502.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1895.0, + 988.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1883.0, + 729.0, + 1883.0, + 729.0, + 1925.0, + 292.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1925.0, + 791.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1914.0, + 407.0, + 1914.0, + 407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1914.0, + 624.0, + 1914.0, + 624.0, + 1949.0, + 505.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1949.0, + 714.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 782.0, + 1944.0, + 782.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1944.0, + 1124.0, + 1944.0, + 1124.0, + 1983.0, + 813.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1983.0, + 1223.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 654.0, + 1973.0, + 654.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1973.0, + 1077.0, + 1973.0, + 1077.0, + 2012.0, + 752.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 380.0, + 1407.0, + 380.0, + 1407.0, + 420.0, + 295.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 1405.0, + 414.0, + 1405.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 442.0, + 1406.0, + 442.0, + 1406.0, + 480.0, + 293.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 508.0, + 293.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 503.0, + 295.0, + 503.0, + 295.0, + 541.0, + 291.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 503.0, + 1268.0, + 503.0, + 1268.0, + 541.0, + 362.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 503.0, + 1406.0, + 503.0, + 1406.0, + 541.0, + 1366.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 532.0, + 922.0, + 532.0, + 922.0, + 572.0, + 291.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 532.0, + 1294.0, + 532.0, + 1294.0, + 572.0, + 980.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 532.0, + 1408.0, + 532.0, + 1408.0, + 572.0, + 1351.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 563.0, + 907.0, + 563.0, + 907.0, + 600.0, + 293.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1405.0, + 1541.0, + 1405.0, + 1582.0, + 294.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1327.0, + 1572.0, + 1327.0, + 1613.0, + 293.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1602.0, + 295.0, + 1602.0, + 295.0, + 1645.0, + 291.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1602.0, + 456.0, + 1602.0, + 456.0, + 1645.0, + 407.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1602.0, + 1068.0, + 1602.0, + 1068.0, + 1645.0, + 645.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1602.0, + 1405.0, + 1602.0, + 1405.0, + 1645.0, + 1096.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 418.0, + 1635.0, + 418.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1635.0, + 707.0, + 1635.0, + 707.0, + 1673.0, + 596.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1635.0, + 981.0, + 1635.0, + 981.0, + 1673.0, + 887.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1673.0, + 1037.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1115.0, + 1665.0, + 1115.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1699.0, + 1145.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1406.0, + 1694.0, + 1406.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1726.0, + 1311.0, + 1726.0, + 1311.0, + 1761.0, + 295.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1355.0, + 700.0, + 1355.0, + 700.0, + 1389.0, + 296.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1355.0, + 1404.0, + 1355.0, + 1404.0, + 1389.0, + 828.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1414.0, + 1408.0, + 1414.0, + 1408.0, + 1453.0, + 293.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1446.0, + 551.0, + 1446.0, + 551.0, + 1484.0, + 294.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1446.0, + 1406.0, + 1446.0, + 1406.0, + 1484.0, + 580.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1477.0, + 659.0, + 1477.0, + 659.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1217.0, + 1408.0, + 1217.0, + 1408.0, + 1256.0, + 292.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1286.0, + 292.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1278.0, + 1406.0, + 1278.0, + 1406.0, + 1317.0, + 292.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 811.0, + 1310.0, + 811.0, + 1348.0, + 292.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1310.0, + 1371.0, + 1310.0, + 1371.0, + 1348.0, + 840.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1064.0, + 295.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1408.0, + 1061.0, + 1408.0, + 1095.0, + 293.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1092.0, + 515.0, + 1092.0, + 515.0, + 1127.0, + 295.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 313.0, + 370.0, + 313.0, + 370.0, + 350.0, + 296.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 313.0, + 783.0, + 313.0, + 783.0, + 350.0, + 419.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 824.0, + 1331.0, + 824.0, + 1331.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1158, + 1406, + 1158, + 1406, + 1403, + 298, + 1403 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 853, + 1404, + 853, + 1404, + 1068, + 297, + 1068 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1636, + 1404, + 1636, + 1404, + 1883, + 298, + 1883 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 362, + 1403, + 362, + 1403, + 486, + 298, + 486 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 729, + 1402, + 729, + 1402, + 822, + 298, + 822 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1513, + 1403, + 1513, + 1403, + 1605, + 299, + 1605 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1914, + 1405, + 1914, + 1405, + 2007, + 300, + 2007 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 729, + 614, + 969, + 614, + 969, + 703, + 729, + 703 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 516, + 1402, + 516, + 1402, + 581, + 297, + 581 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 202, + 1401, + 202, + 1401, + 266, + 296, + 266 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 520, + 291, + 1176, + 291, + 1176, + 336, + 520, + 336 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 298, + 1445, + 505, + 1445, + 505, + 1482, + 298, + 1482 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1352, + 640, + 1399, + 640, + 1399, + 672, + 1352, + 672 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 1103, + 476, + 1103, + 476, + 1136, + 298, + 1136 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.787 + }, + { + "category_id": 9, + "poly": [ + 1352, + 297, + 1399, + 297, + 1399, + 327, + 1352, + 327 + ], + "score": 0.537 + }, + { + "category_id": 9, + "poly": [ + 1353, + 296, + 1399, + 296, + 1399, + 327, + 1353, + 327 + ], + "score": 0.484 + }, + { + "category_id": 14, + "poly": [ + 728, + 608, + 971, + 608, + 971, + 703, + 728, + 703 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { s } = \\sum _ { c = 1 } ^ { C } \\mathcal { L } ( \\hat { q } _ { l _ { c } } , q _ { l _ { c } } ) ." + }, + { + "category_id": 13, + "poly": [ + 371, + 365, + 404, + 365, + 404, + 396, + 371, + 396 + ], + "score": 0.89, + "latex": "\\hat { q } _ { l _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 208, + 1262, + 208, + 1262, + 239, + 1203, + 239 + ], + "score": 0.89, + "latex": "\\mathbf { e } _ { l _ { c - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1730, + 1192, + 1730, + 1192, + 1759, + 1123, + 1759 + ], + "score": 0.89, + "latex": "\\sim 7 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 985, + 428, + 1027, + 428, + 1027, + 459, + 985, + 459 + ], + "score": 0.89, + "latex": "\\mathbf { c } _ { \\mathcal { G } _ { p } }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 371, + 1401, + 371, + 1401, + 398, + 1342, + 398 + ], + "score": 0.88, + "latex": "{ \\bf e } _ { l _ { c - 1 } }" + }, + { + "category_id": 14, + "poly": [ + 521, + 291, + 1175, + 291, + 1175, + 336, + 521, + 336 + ], + "score": 0.88, + "latex": "\\hat { q } _ { l _ { c } } = \\mathrm { s o f t m a x } \\left( \\mathbf { U } \\tau \\left( \\mathbf { W } _ { 1 } \\mathbf { c } _ { \\mathcal { G } _ { p } } + \\mathbf { W } _ { 2 } \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } } + \\mathbf { W } _ { 3 } \\mathbf { e } _ { l _ { \\left( c - 1 \\right) } } \\right) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 1255, + 1947, + 1305, + 1947, + 1305, + 1976, + 1255, + 1976 + ], + "score": 0.87, + "latex": "\\leq n" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1310, + 1046, + 1310, + 1046, + 1340, + 1014, + 1340 + ], + "score": 0.86, + "latex": "n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1161, + 524, + 1194, + 524, + 1194, + 551, + 1161, + 551 + ], + "score": 0.86, + "latex": "q _ { l _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1006, + 1403, + 1006, + 1403, + 1036, + 1336, + 1036 + ], + "score": 0.85, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 693, + 365, + 720, + 365, + 720, + 391, + 693, + 391 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 770, + 1916, + 940, + 1916, + 940, + 1946, + 770, + 1946 + ], + "score": 0.76, + "latex": "( n = 1 , 3 , 5 , 1 0 )" + }, + { + "category_id": 13, + "poly": [ + 632, + 1921, + 652, + 1921, + 652, + 1942, + 632, + 1942 + ], + "score": 0.75, + "latex": "\\mathbf { \\nabla } \\cdot n" + }, + { + "category_id": 13, + "poly": [ + 1378, + 1165, + 1397, + 1165, + 1397, + 1187, + 1378, + 1187 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1042, + 208, + 1148, + 208, + 1148, + 240, + 1042, + 240 + ], + "score": 0.73, + "latex": "\\mathbf { c } _ { \\mathcal { G } _ { p } } , \\mathbf { c } _ { \\mathcal { G } _ { s _ { c } } }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1196, + 425, + 1196, + 425, + 1218, + 404, + 1218 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1317, + 1329, + 1317, + 1329, + 1339, + 1308, + 1339 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 379, + 1317, + 399, + 1317, + 399, + 1339, + 379, + 1339 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1196, + 1160, + 1196, + 1160, + 1218, + 1139, + 1218 + ], + "score": 0.64, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 528, + 525, + 543, + 525, + 543, + 545, + 528, + 545 + ], + "score": 0.58, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1041, + 209, + 1084, + 209, + 1084, + 240, + 1041, + 240 + ], + "score": 0.26, + "latex": "\\mathbf { c } _ { \\mathcal { G } _ { p } }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1443.0, + 508.0, + 1443.0, + 508.0, + 1488.0, + 292.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 481.0, + 1099.0, + 481.0, + 1141.0, + 293.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1160.0, + 1377.0, + 1160.0, + 1377.0, + 1193.0, + 295.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1160.0, + 1408.0, + 1160.0, + 1408.0, + 1193.0, + 1398.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1191.0, + 403.0, + 1191.0, + 403.0, + 1224.0, + 295.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1191.0, + 1138.0, + 1191.0, + 1138.0, + 1224.0, + 426.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1191.0, + 1406.0, + 1191.0, + 1406.0, + 1224.0, + 1161.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1407.0, + 1222.0, + 1407.0, + 1253.0, + 293.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 1407.0, + 1249.0, + 1407.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 1406.0, + 1282.0, + 1406.0, + 1315.0, + 295.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 378.0, + 1310.0, + 378.0, + 1345.0, + 292.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1310.0, + 1013.0, + 1310.0, + 1013.0, + 1345.0, + 400.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1310.0, + 1307.0, + 1310.0, + 1307.0, + 1345.0, + 1047.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1310.0, + 1407.0, + 1310.0, + 1407.0, + 1345.0, + 1330.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1338.0, + 1406.0, + 1338.0, + 1406.0, + 1380.0, + 292.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1373.0, + 732.0, + 1373.0, + 732.0, + 1406.0, + 295.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 1406.0, + 853.0, + 1406.0, + 892.0, + 294.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 916.0, + 1406.0, + 916.0, + 1406.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 945.0, + 1406.0, + 945.0, + 1406.0, + 983.0, + 294.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 1406.0, + 975.0, + 1406.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1006.0, + 1335.0, + 1006.0, + 1335.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1006.0, + 1407.0, + 1006.0, + 1407.0, + 1044.0, + 1404.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1036.0, + 996.0, + 1036.0, + 996.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 1408.0, + 1635.0, + 1408.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1668.0, + 1406.0, + 1668.0, + 1406.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1702.0, + 1406.0, + 1702.0, + 1406.0, + 1732.0, + 296.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1728.0, + 1122.0, + 1728.0, + 1122.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1764.0, + 1193.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1406.0, + 1761.0, + 1406.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1791.0, + 1406.0, + 1791.0, + 1406.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1409.0, + 1820.0, + 1409.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1355.0, + 1849.0, + 1355.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 353.0, + 370.0, + 353.0, + 370.0, + 409.0, + 290.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 353.0, + 692.0, + 353.0, + 692.0, + 409.0, + 405.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 353.0, + 1341.0, + 353.0, + 1341.0, + 409.0, + 721.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 353.0, + 1408.0, + 353.0, + 1408.0, + 409.0, + 1402.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 1407.0, + 391.0, + 1407.0, + 430.0, + 293.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 422.0, + 984.0, + 422.0, + 984.0, + 461.0, + 292.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 422.0, + 1405.0, + 422.0, + 1405.0, + 461.0, + 1028.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 456.0, + 566.0, + 456.0, + 566.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 728.0, + 1404.0, + 728.0, + 1404.0, + 766.0, + 293.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1406.0, + 760.0, + 1406.0, + 798.0, + 293.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 789.0, + 979.0, + 789.0, + 979.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1515.0, + 1403.0, + 1515.0, + 1403.0, + 1548.0, + 295.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1545.0, + 1405.0, + 1545.0, + 1405.0, + 1578.0, + 295.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1217.0, + 1573.0, + 1217.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 631.0, + 1913.0, + 631.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1913.0, + 769.0, + 1913.0, + 769.0, + 1951.0, + 653.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1951.0, + 941.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1254.0, + 1945.0, + 1254.0, + 1982.0, + 295.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1945.0, + 1410.0, + 1945.0, + 1410.0, + 1982.0, + 1306.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 512.0, + 527.0, + 512.0, + 527.0, + 555.0, + 295.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 512.0, + 1160.0, + 512.0, + 1160.0, + 555.0, + 544.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 512.0, + 1406.0, + 512.0, + 1406.0, + 555.0, + 1195.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 550.0, + 506.0, + 550.0, + 506.0, + 583.0, + 296.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 197.0, + 1040.0, + 197.0, + 1040.0, + 244.0, + 291.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 197.0, + 1202.0, + 197.0, + 1202.0, + 244.0, + 1149.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 197.0, + 1406.0, + 197.0, + 1406.0, + 244.0, + 1263.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 231.0, + 782.0, + 231.0, + 782.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 294, + 258, + 1407, + 258, + 1407, + 806, + 294, + 806 + ], + "score": 0.983, + "html": "
ModelTop-n Accuracy (%)
Reaction class knownReaction class unknown
1351013510
Template-Based
RETROSIM [Coley et al.,2017b]52.973.881.288.137.354.763.374.1
NEURALSYM [Segler and Waller,2017]55.376.081.485.144.465.372.478.9
GLN [Dai et ai., 2019]64.279.185.290.052.569.075.683.7
DUALTB [Sun et al.,2021]67.784.888.992.055.274.680.586.9
Template-Free
SCROP [Zheng et al.,2019]59.074.878.181.143.760.065.268.7
LV-TRANSFORMER [Chen et al.,2019]----40.565.172.879.4
DUALTF [Sun et al., 2021]65.781.984.785.953.670.774.677.0
Semi-Template-Based
G2Gs [Shi et al.,2020]61.081.386.088.748.967.672.575.5
RETROXPERT [Yan et al.,2020]62.175.878.580.950.461.162.363.4
GRAPHRETRO (ours)63.981.585.288.153.768.372.275.5
" + }, + { + "category_id": 1, + "poly": [ + 311, + 1119, + 1403, + 1119, + 1403, + 1364, + 311, + 1364 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 313, + 1378, + 1404, + 1378, + 1404, + 1591, + 313, + 1591 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 312, + 1606, + 1403, + 1606, + 1403, + 1760, + 312, + 1760 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 865, + 1404, + 865, + 1404, + 988, + 297, + 988 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1791, + 1402, + 1791, + 1402, + 1943, + 300, + 1943 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1027, + 1404, + 1027, + 1404, + 1089, + 298, + 1089 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 335, + 1978, + 745, + 1978, + 745, + 2007, + 335, + 2007 + ], + "score": 0.908 + }, + { + "category_id": 6, + "poly": [ + 307, + 216, + 1376, + 216, + 1376, + 249, + 307, + 249 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.72 + }, + { + "category_id": 13, + "poly": [ + 471, + 222, + 490, + 222, + 490, + 245, + 471, + 245 + ], + "score": 0.5, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 750.0, + 1973.0, + 750.0, + 2012.0, + 332.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 213.0, + 470.0, + 213.0, + 470.0, + 252.0, + 315.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 213.0, + 1381.0, + 213.0, + 1381.0, + 252.0, + 491.0, + 252.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": [ + 308.0, + 1117.0, + 1406.0, + 1117.0, + 1406.0, + 1158.0, + 308.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1184.0, + 334.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1180.0, + 1407.0, + 1180.0, + 1407.0, + 1218.0, + 334.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1212.0, + 1403.0, + 1212.0, + 1403.0, + 1245.0, + 337.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1275.0, + 335.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1273.0, + 1407.0, + 1273.0, + 1407.0, + 1307.0, + 334.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1303.0, + 1406.0, + 1303.0, + 1406.0, + 1336.0, + 335.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1333.0, + 936.0, + 1333.0, + 936.0, + 1370.0, + 335.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1414.0, + 310.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1444.0, + 337.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1438.0, + 1408.0, + 1438.0, + 1408.0, + 1475.0, + 335.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1471.0, + 1408.0, + 1471.0, + 1408.0, + 1505.0, + 336.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1535.0, + 336.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1568.0, + 334.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1562.0, + 758.0, + 1562.0, + 758.0, + 1596.0, + 337.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1608.0, + 1403.0, + 1608.0, + 1403.0, + 1641.0, + 310.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1637.0, + 1406.0, + 1637.0, + 1406.0, + 1674.0, + 336.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1664.0, + 1406.0, + 1664.0, + 1406.0, + 1704.0, + 334.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1698.0, + 1403.0, + 1698.0, + 1403.0, + 1735.0, + 335.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1729.0, + 838.0, + 1729.0, + 838.0, + 1762.0, + 338.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 902.0, + 294.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 897.0, + 1404.0, + 897.0, + 1404.0, + 930.0, + 295.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 928.0, + 1405.0, + 928.0, + 1405.0, + 960.0, + 294.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 959.0, + 593.0, + 959.0, + 593.0, + 992.0, + 294.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 631.0, + 1913.0, + 631.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1024.0, + 1387.0, + 1024.0, + 1387.0, + 1062.0, + 295.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1055.0, + 1364.0, + 1055.0, + 1364.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 1690, + 1406, + 1690, + 1406, + 2002, + 295, + 2002 + ], + "score": 0.984, + "html": "
SettingTop-n Accuracy (%)
Reaction class knownReaction class unknown
12351235
Edit Prediction84.692.293.794.570.885.189.592.7
- without edit score updates84.392.193.794.570.184.889.492.6
- predicting on atom pairs81.989.590.992.168.683.288.391.8
Synthon Completion (ind)77.489.594.297.675.687.492.596.1
Synthon Completion (shared)76.989.693.997.474.987.792.996.3
" + }, + { + "category_id": 1, + "poly": [ + 297, + 267, + 1404, + 267, + 1404, + 542, + 297, + 542 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1328, + 1405, + 1328, + 1405, + 1574, + 297, + 1574 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 598, + 1405, + 598, + 1405, + 813, + 298, + 813 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1088, + 1405, + 1088, + 1405, + 1271, + 297, + 1271 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 939, + 1403, + 939, + 1403, + 1031, + 298, + 1031 + ], + "score": 0.975 + }, + { + "category_id": 6, + "poly": [ + 396, + 1646, + 1298, + 1646, + 1298, + 1680, + 396, + 1680 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 873, + 743, + 873, + 743, + 906, + 299, + 906 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 299, + 202, + 611, + 202, + 611, + 235, + 299, + 235 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.831 + }, + { + "category_id": 13, + "poly": [ + 831, + 783, + 902, + 783, + 902, + 810, + 831, + 810 + ], + "score": 0.9, + "latex": "n = 5" + }, + { + "category_id": 13, + "poly": [ + 871, + 331, + 942, + 331, + 942, + 358, + 871, + 358 + ], + "score": 0.89, + "latex": "n = 5" + }, + { + "category_id": 13, + "poly": [ + 687, + 630, + 728, + 630, + 728, + 660, + 687, + 660 + ], + "score": 0.88, + "latex": "3 \\%" + }, + { + "category_id": 13, + "poly": [ + 569, + 298, + 632, + 298, + 632, + 329, + 569, + 329 + ], + "score": 0.88, + "latex": "4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 802, + 1512, + 875, + 1512, + 875, + 1541, + 802, + 1541 + ], + "score": 0.88, + "latex": "9 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1512, + 1108, + 1512, + 1108, + 1541, + 1019, + 1541 + ], + "score": 0.87, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 779, + 630, + 819, + 630, + 819, + 660, + 779, + 660 + ], + "score": 0.87, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 955, + 298, + 1018, + 298, + 1018, + 329, + 955, + 329 + ], + "score": 0.87, + "latex": "3 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1481, + 1403, + 1481, + 1403, + 1512, + 1327, + 1512 + ], + "score": 0.86, + "latex": "8 6 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1421, + 1266, + 1421, + 1266, + 1450, + 1189, + 1450 + ], + "score": 0.86, + "latex": "9 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1482, + 1183, + 1482, + 1183, + 1511, + 1107, + 1511 + ], + "score": 0.85, + "latex": "6 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1482, + 1273, + 1482, + 1273, + 1512, + 1196, + 1512 + ], + "score": 0.85, + "latex": "8 1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 680, + 1512, + 754, + 1512, + 754, + 1541, + 680, + 1541 + ], + "score": 0.85, + "latex": "9 2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 597, + 1512, + 670, + 1512, + 670, + 1542, + 597, + 1542 + ], + "score": 0.85, + "latex": "7 5 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 782, + 1421, + 862, + 1421, + 862, + 1451, + 782, + 1451 + ], + "score": 0.83, + "latex": "\\sim 9 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1345, + 943, + 1404, + 943, + 1404, + 971, + 1345, + 971 + ], + "score": 0.79, + "latex": "\\mathbf { \\nabla } _ { n } =" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1096, + 1237, + 1096, + 1237, + 1117, + 1217, + 1117 + ], + "score": 0.75, + "latex": "\\boldsymbol { n }" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1366, + 1036, + 1366, + 1036, + 1389, + 1016, + 1389 + ], + "score": 0.73, + "latex": "\\mathbf { \\nabla } \\cdot n" + }, + { + "category_id": 13, + "poly": [ + 841, + 666, + 861, + 666, + 861, + 688, + 841, + 688 + ], + "score": 0.72, + "latex": "^ n" + }, + { + "category_id": 13, + "poly": [ + 1203, + 946, + 1223, + 946, + 1223, + 967, + 1203, + 967 + ], + "score": 0.7, + "latex": "\\boldsymbol { n }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 366, + 1159, + 366, + 1159, + 388, + 1139, + 388 + ], + "score": 0.67, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 343, + 395, + 363, + 395, + 363, + 417, + 343, + 417 + ], + "score": 0.66, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 296, + 971, + 398, + 971, + 398, + 1002, + 296, + 1002 + ], + "score": 0.59, + "latex": "1 , 2 , 3 , 5 )" + }, + { + "category_id": 13, + "poly": [ + 722, + 336, + 742, + 336, + 742, + 358, + 722, + 358 + ], + "score": 0.59, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1642.0, + 1302.0, + 1642.0, + 1302.0, + 1684.0, + 393.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 746.0, + 873.0, + 746.0, + 909.0, + 295.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 200.0, + 614.0, + 200.0, + 614.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 269.0, + 1404.0, + 269.0, + 1404.0, + 302.0, + 296.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 298.0, + 568.0, + 298.0, + 568.0, + 334.0, + 295.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 298.0, + 954.0, + 298.0, + 954.0, + 334.0, + 633.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 298.0, + 1406.0, + 298.0, + 1406.0, + 334.0, + 1019.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 328.0, + 721.0, + 328.0, + 721.0, + 365.0, + 294.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 328.0, + 870.0, + 328.0, + 870.0, + 365.0, + 743.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 328.0, + 1406.0, + 328.0, + 1406.0, + 365.0, + 943.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 356.0, + 1138.0, + 356.0, + 1138.0, + 395.0, + 292.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 356.0, + 1406.0, + 356.0, + 1406.0, + 395.0, + 1160.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 391.0, + 342.0, + 391.0, + 342.0, + 424.0, + 296.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 391.0, + 1405.0, + 391.0, + 1405.0, + 424.0, + 364.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 459.0, + 294.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 477.0, + 1406.0, + 477.0, + 1406.0, + 518.0, + 294.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 511.0, + 1407.0, + 511.0, + 1407.0, + 544.0, + 295.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1328.0, + 1405.0, + 1328.0, + 1405.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1360.0, + 1015.0, + 1360.0, + 1015.0, + 1396.0, + 291.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1396.0, + 1037.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 781.0, + 1420.0, + 781.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1420.0, + 1188.0, + 1420.0, + 1188.0, + 1456.0, + 863.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1420.0, + 1406.0, + 1420.0, + 1406.0, + 1456.0, + 1267.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 1106.0, + 1481.0, + 1106.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1481.0, + 1195.0, + 1481.0, + 1195.0, + 1515.0, + 1184.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1481.0, + 1326.0, + 1481.0, + 1326.0, + 1515.0, + 1274.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1512.0, + 596.0, + 1512.0, + 596.0, + 1546.0, + 292.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1512.0, + 679.0, + 1512.0, + 679.0, + 1546.0, + 671.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1512.0, + 801.0, + 1512.0, + 801.0, + 1546.0, + 755.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1512.0, + 1018.0, + 1512.0, + 1018.0, + 1546.0, + 876.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1546.0, + 1109.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1544.0, + 1143.0, + 1544.0, + 1143.0, + 1577.0, + 296.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 601.0, + 1403.0, + 601.0, + 1403.0, + 632.0, + 297.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 686.0, + 629.0, + 686.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 629.0, + 778.0, + 629.0, + 778.0, + 664.0, + 729.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 629.0, + 1403.0, + 629.0, + 1403.0, + 664.0, + 820.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 840.0, + 661.0, + 840.0, + 696.0, + 295.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 661.0, + 1405.0, + 661.0, + 1405.0, + 696.0, + 862.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 756.0, + 296.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 749.0, + 1410.0, + 749.0, + 1410.0, + 789.0, + 292.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 830.0, + 783.0, + 830.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 783.0, + 914.0, + 783.0, + 914.0, + 817.0, + 903.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1216.0, + 1086.0, + 1216.0, + 1124.0, + 292.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1086.0, + 1405.0, + 1086.0, + 1405.0, + 1124.0, + 1238.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1154.0, + 295.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1188.0, + 291.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1408.0, + 1178.0, + 1408.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1209.0, + 1407.0, + 1209.0, + 1407.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1241.0, + 1192.0, + 1241.0, + 1192.0, + 1273.0, + 296.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 936.0, + 1202.0, + 936.0, + 1202.0, + 977.0, + 292.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 936.0, + 1344.0, + 936.0, + 1344.0, + 977.0, + 1224.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 969.0, + 1403.0, + 969.0, + 1403.0, + 1005.0, + 399.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 999.0, + 725.0, + 999.0, + 725.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 592, + 1405, + 592, + 1405, + 898, + 297, + 898 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 257, + 1405, + 257, + 1405, + 503, + 296, + 503 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1914, + 1403, + 1914, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 457, + 922, + 1209, + 922, + 1209, + 1637, + 457, + 1637 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 1664, + 1406, + 1664, + 1406, + 1789, + 297, + 1789 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 299, + 203, + 607, + 203, + 607, + 235, + 299, + 235 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 298, + 537, + 501, + 537, + 501, + 570, + 298, + 570 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 298, + 1846, + 509, + 1846, + 509, + 1884, + 298, + 1884 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.798 + }, + { + "category_id": 13, + "poly": [ + 562, + 776, + 633, + 776, + 633, + 805, + 562, + 805 + ], + "score": 0.89, + "latex": "{ \\sim } 9 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 361, + 380, + 419, + 380, + 419, + 411, + 361, + 411 + ], + "score": 0.87, + "latex": "\\mathrm { - N H _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1173, + 351, + 1240, + 351, + 1240, + 380, + 1173, + 380 + ], + "score": 0.67, + "latex": "\\scriptstyle ( \\mathbf { C } = \\mathbf { O } )" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 941.0, + 481.0, + 941.0, + 481.0, + 954.0, + 468.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 925.0, + 913.0, + 925.0, + 913.0, + 982.0, + 788.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 940.0, + 966.0, + 940.0, + 966.0, + 971.0, + 926.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 924.0, + 1151.0, + 924.0, + 1151.0, + 986.0, + 1028.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 941.0, + 1204.0, + 941.0, + 1204.0, + 968.0, + 1163.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 973.0, + 933.0, + 973.0, + 933.0, + 994.0, + 913.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 970.0, + 1079.0, + 970.0, + 1079.0, + 1008.0, + 1020.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 974.0, + 1169.0, + 974.0, + 1169.0, + 990.0, + 1153.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1010.0, + 917.0, + 1010.0, + 917.0, + 1031.0, + 895.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1012.0, + 1139.0, + 1012.0, + 1139.0, + 1028.0, + 1121.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1033.0, + 705.0, + 1033.0, + 705.0, + 1046.0, + 692.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1020.0, + 868.0, + 1020.0, + 868.0, + 1085.0, + 832.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1026.0, + 946.0, + 1026.0, + 946.0, + 1047.0, + 927.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1029.0, + 1080.0, + 1029.0, + 1080.0, + 1057.0, + 1058.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1024.0, + 1168.0, + 1024.0, + 1168.0, + 1045.0, + 1148.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1057.0, + 888.0, + 1057.0, + 888.0, + 1076.0, + 871.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1051.0, + 1149.0, + 1051.0, + 1149.0, + 1068.0, + 1129.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1065.0, + 685.0, + 1065.0, + 685.0, + 1089.0, + 658.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1071.0, + 706.0, + 1071.0, + 706.0, + 1088.0, + 687.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1089.0, + 948.0, + 1089.0, + 948.0, + 1110.0, + 927.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1089.0, + 1172.0, + 1089.0, + 1172.0, + 1110.0, + 1150.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1118.0, + 649.0, + 1118.0, + 649.0, + 1143.0, + 584.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1115.0, + 928.0, + 1115.0, + 928.0, + 1142.0, + 813.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1115.0, + 1190.0, + 1115.0, + 1190.0, + 1144.0, + 1037.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1165.0, + 485.0, + 1165.0, + 485.0, + 1187.0, + 465.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1154.0, + 1099.0, + 1154.0, + 1099.0, + 1192.0, + 1076.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1174.0, + 1069.0, + 1174.0, + 1069.0, + 1196.0, + 1050.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1223.0, + 1157.0, + 1223.0, + 1157.0, + 1286.0, + 1119.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1269.0, + 680.0, + 1269.0, + 680.0, + 1318.0, + 644.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1306.0, + 667.0, + 1306.0, + 667.0, + 1324.0, + 653.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1316.0, + 908.0, + 1316.0, + 908.0, + 1345.0, + 879.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1314.0, + 1087.0, + 1314.0, + 1087.0, + 1339.0, + 1061.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1370.0, + 649.0, + 1370.0, + 649.0, + 1398.0, + 584.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1369.0, + 933.0, + 1369.0, + 933.0, + 1399.0, + 813.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1370.0, + 1191.0, + 1370.0, + 1191.0, + 1397.0, + 1038.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1432.0, + 480.0, + 1432.0, + 480.0, + 1441.0, + 472.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1391.0, + 911.0, + 1391.0, + 911.0, + 1485.0, + 801.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1400.0, + 1153.0, + 1400.0, + 1153.0, + 1483.0, + 1070.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1452.0, + 540.0, + 1452.0, + 540.0, + 1475.0, + 519.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1470.0, + 537.0, + 1470.0, + 537.0, + 1487.0, + 522.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1484.0, + 525.0, + 1484.0, + 525.0, + 1508.0, + 494.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1478.0, + 814.0, + 1478.0, + 814.0, + 1510.0, + 774.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1493.0, + 929.0, + 1493.0, + 929.0, + 1513.0, + 903.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1479.0, + 1070.0, + 1479.0, + 1070.0, + 1508.0, + 1016.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1501.0, + 579.0, + 1501.0, + 579.0, + 1527.0, + 561.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1509.0, + 926.0, + 1509.0, + 926.0, + 1524.0, + 908.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1505.0, + 1069.0, + 1505.0, + 1069.0, + 1521.0, + 1057.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1523.0, + 572.0, + 1523.0, + 572.0, + 1539.0, + 556.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1517.0, + 810.0, + 1517.0, + 810.0, + 1538.0, + 791.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1518.0, + 1066.0, + 1518.0, + 1066.0, + 1536.0, + 1049.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1547.0, + 642.0, + 1547.0, + 642.0, + 1602.0, + 610.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1553.0, + 869.0, + 1553.0, + 869.0, + 1572.0, + 852.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1612.0, + 649.0, + 1612.0, + 649.0, + 1639.0, + 584.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1609.0, + 933.0, + 1609.0, + 933.0, + 1638.0, + 813.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1611.0, + 1190.0, + 1611.0, + 1190.0, + 1636.0, + 1037.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.75, + 968.5, + 845.75, + 968.5, + 845.75, + 1009.5, + 780.75, + 1009.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.25, + 996.5, + 641.25, + 996.5, + 641.25, + 1055.0, + 637.25, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1002.5, + 539.0, + 1002.5, + 539.0, + 1027.0, + 517.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1027.5, + 557.0, + 1027.5, + 557.0, + 1069.5, + 491.0, + 1069.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1151.0, + 853.0, + 1151.0, + 853.0, + 1214.5, + 780.0, + 1214.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1162.5, + 854.0, + 1162.5, + 854.0, + 1181.0, + 848.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.25, + 1196.0, + 1209.25, + 1196.0, + 1209.25, + 1236.5, + 1120.25, + 1236.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1206.5, + 629.0, + 1206.5, + 629.0, + 1229.5, + 583.0, + 1229.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1237.5, + 735.0, + 1237.5, + 735.0, + 1284.5, + 641.0, + 1284.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1189.0, + 1006.0, + 1189.0, + 1006.0, + 1270.0, + 826.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.25, + 1286.5, + 1138.25, + 1286.5, + 1138.25, + 1359.5, + 1120.25, + 1359.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1297.0, + 860.0, + 1297.0, + 860.0, + 1350.0, + 833.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1664.0, + 1404.0, + 1664.0, + 1404.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 1406.0, + 1695.0, + 1406.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1409.0, + 1728.0, + 1409.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1755.0, + 825.0, + 1755.0, + 825.0, + 1795.0, + 292.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 198.0, + 612.0, + 198.0, + 612.0, + 243.0, + 293.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 533.0, + 506.0, + 533.0, + 506.0, + 574.0, + 292.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1840.0, + 514.0, + 1840.0, + 514.0, + 1891.0, + 289.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 860.0, + 2060.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 594.0, + 1407.0, + 594.0, + 1407.0, + 626.0, + 296.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 623.0, + 1403.0, + 623.0, + 1403.0, + 655.0, + 296.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 1405.0, + 654.0, + 1405.0, + 689.0, + 295.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 684.0, + 1405.0, + 684.0, + 1405.0, + 718.0, + 294.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 715.0, + 1406.0, + 715.0, + 1406.0, + 750.0, + 294.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 779.0, + 296.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 561.0, + 774.0, + 561.0, + 811.0, + 292.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 774.0, + 1406.0, + 774.0, + 1406.0, + 811.0, + 634.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 806.0, + 1405.0, + 806.0, + 1405.0, + 839.0, + 294.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 835.0, + 1405.0, + 835.0, + 1405.0, + 871.0, + 294.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 865.0, + 616.0, + 865.0, + 616.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 292.0, + 295.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 287.0, + 1406.0, + 287.0, + 1406.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 316.0, + 1406.0, + 316.0, + 1406.0, + 356.0, + 291.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 345.0, + 1172.0, + 345.0, + 1172.0, + 387.0, + 293.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 345.0, + 1408.0, + 345.0, + 1408.0, + 387.0, + 1241.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 379.0, + 360.0, + 379.0, + 360.0, + 416.0, + 291.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 416.0, + 420.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 410.0, + 1405.0, + 410.0, + 1405.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 440.0, + 1407.0, + 440.0, + 1407.0, + 475.0, + 291.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 470.0, + 1071.0, + 470.0, + 1071.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1407.0, + 1975.0, + 1407.0, + 2012.0, + 295.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 203, + 1404, + 203, + 1404, + 385, + 298, + 385 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 497, + 1405, + 497, + 1405, + 650, + 298, + 650 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 293, + 727, + 1409, + 727, + 1409, + 1974, + 293, + 1974 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 300, + 429, + 575, + 429, + 575, + 466, + 300, + 466 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 693, + 455, + 693, + 455, + 729, + 298, + 729 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.843 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 424.0, + 579.0, + 424.0, + 579.0, + 474.0, + 294.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 460.0, + 691.0, + 460.0, + 734.0, + 295.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 871.0, + 2057.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 235.0, + 1404.0, + 235.0, + 1404.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 265.0, + 1401.0, + 265.0, + 1401.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 323.0, + 1402.0, + 323.0, + 1402.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 356.0, + 1394.0, + 356.0, + 1394.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 498.0, + 1403.0, + 498.0, + 1403.0, + 531.0, + 297.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 527.0, + 1405.0, + 527.0, + 1405.0, + 564.0, + 296.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 556.0, + 1407.0, + 556.0, + 1407.0, + 596.0, + 291.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 587.0, + 1406.0, + 587.0, + 1406.0, + 624.0, + 292.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 616.0, + 1216.0, + 616.0, + 1216.0, + 657.0, + 293.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 746.0, + 1406.0, + 746.0, + 1406.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 777.0, + 919.0, + 777.0, + 919.0, + 816.0, + 322.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 830.0, + 1406.0, + 830.0, + 1406.0, + 865.0, + 295.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 859.0, + 1408.0, + 859.0, + 1408.0, + 897.0, + 320.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 910.0, + 1407.0, + 910.0, + 1407.0, + 951.0, + 291.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 944.0, + 927.0, + 944.0, + 927.0, + 979.0, + 322.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 997.0, + 1408.0, + 997.0, + 1408.0, + 1032.0, + 295.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1025.0, + 1410.0, + 1025.0, + 1410.0, + 1064.0, + 319.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1056.0, + 646.0, + 1056.0, + 646.0, + 1091.0, + 322.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1106.0, + 1406.0, + 1106.0, + 1406.0, + 1147.0, + 291.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1140.0, + 585.0, + 1140.0, + 585.0, + 1174.0, + 322.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1188.0, + 1406.0, + 1188.0, + 1406.0, + 1228.0, + 291.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1223.0, + 1113.0, + 1223.0, + 1113.0, + 1258.0, + 322.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1271.0, + 1407.0, + 1271.0, + 1407.0, + 1313.0, + 291.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1303.0, + 1407.0, + 1303.0, + 1407.0, + 1341.0, + 320.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1330.0, + 397.0, + 1330.0, + 397.0, + 1372.0, + 320.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1384.0, + 1410.0, + 1384.0, + 1410.0, + 1425.0, + 291.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1415.0, + 1408.0, + 1415.0, + 1408.0, + 1456.0, + 319.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1447.0, + 714.0, + 1447.0, + 714.0, + 1487.0, + 322.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1499.0, + 1407.0, + 1499.0, + 1407.0, + 1539.0, + 291.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1530.0, + 1411.0, + 1530.0, + 1411.0, + 1568.0, + 322.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1582.0, + 1408.0, + 1582.0, + 1408.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1607.0, + 1413.0, + 1607.0, + 1413.0, + 1655.0, + 319.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1645.0, + 1307.0, + 1645.0, + 1307.0, + 1680.0, + 322.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1408.0, + 1697.0, + 1408.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1727.0, + 1407.0, + 1727.0, + 1407.0, + 1762.0, + 322.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1755.0, + 398.0, + 1755.0, + 398.0, + 1792.0, + 320.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1847.0, + 292.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1836.0, + 1327.0, + 1836.0, + 1327.0, + 1877.0, + 320.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1889.0, + 1406.0, + 1889.0, + 1406.0, + 1930.0, + 292.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1922.0, + 1026.0, + 1922.0, + 1026.0, + 1961.0, + 320.0, + 1961.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 291, + 184, + 1408, + 184, + 1408, + 1464, + 291, + 1464 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.787 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.133 + }, + { + "category_id": 13, + "poly": [ + 776, + 742, + 792, + 742, + 792, + 764, + 776, + 764 + ], + "score": 0.36, + "latex": "\\equiv" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 235.0, + 1405.0, + 235.0, + 1405.0, + 271.0, + 321.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 265.0, + 1174.0, + 265.0, + 1174.0, + 301.0, + 321.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 314.0, + 1408.0, + 314.0, + 1408.0, + 355.0, + 291.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 347.0, + 1404.0, + 347.0, + 1404.0, + 383.0, + 321.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 376.0, + 968.0, + 376.0, + 968.0, + 414.0, + 317.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 457.0, + 1410.0, + 457.0, + 1410.0, + 501.0, + 319.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 490.0, + 396.0, + 490.0, + 396.0, + 525.0, + 321.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 541.0, + 1405.0, + 541.0, + 1405.0, + 581.0, + 294.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 572.0, + 936.0, + 572.0, + 936.0, + 611.0, + 318.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 627.0, + 1404.0, + 627.0, + 1404.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 658.0, + 518.0, + 658.0, + 518.0, + 690.0, + 320.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 703.0, + 1408.0, + 703.0, + 1408.0, + 748.0, + 291.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 739.0, + 775.0, + 739.0, + 775.0, + 779.0, + 320.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 739.0, + 964.0, + 739.0, + 964.0, + 779.0, + 793.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 788.0, + 1407.0, + 788.0, + 1407.0, + 830.0, + 291.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 818.0, + 1407.0, + 818.0, + 1407.0, + 860.0, + 319.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 853.0, + 953.0, + 853.0, + 953.0, + 889.0, + 323.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 1408.0, + 905.0, + 1408.0, + 940.0, + 294.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 971.0, + 320.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 965.0, + 526.0, + 965.0, + 526.0, + 998.0, + 320.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 1405.0, + 1018.0, + 1405.0, + 1054.0, + 294.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1048.0, + 849.0, + 1048.0, + 849.0, + 1084.0, + 321.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1099.0, + 1405.0, + 1099.0, + 1405.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1130.0, + 1037.0, + 1130.0, + 1037.0, + 1166.0, + 321.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1180.0, + 1410.0, + 1180.0, + 1410.0, + 1222.0, + 291.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1214.0, + 1408.0, + 1214.0, + 1408.0, + 1250.0, + 321.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1242.0, + 1410.0, + 1242.0, + 1410.0, + 1283.0, + 320.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1271.0, + 1407.0, + 1271.0, + 1407.0, + 1314.0, + 319.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1303.0, + 952.0, + 1303.0, + 952.0, + 1342.0, + 320.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1354.0, + 1408.0, + 1354.0, + 1408.0, + 1395.0, + 292.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1426.0, + 321.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1416.0, + 544.0, + 1416.0, + 544.0, + 1452.0, + 321.0, + 1452.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/S1gUsoR9YX/S1gUsoR9YX_middle.json b/parse/train/S1gUsoR9YX/S1gUsoR9YX_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..43bb6358bceb63055b59bb0477b1d9ac70c34663 --- /dev/null +++ b/parse/train/S1gUsoR9YX/S1gUsoR9YX_middle.json @@ -0,0 +1,36379 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "MULTILINGUAL NEURAL MACHINE TRANSLATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 361, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 361, + 118 + ], + "score": 1.0, + "content": "WITH KNOWLEDGE DISTILLATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 423, + 146 + ], + "lines": [ + { + "bbox": [ + 110, + 132, + 425, + 149 + ], + "spans": [ + { + "bbox": [ + 110, + 132, + 216, + 149 + ], + "score": 1.0, + "content": "Xu Tan1∗, Yi Ren2∗, Di", + "type": "text" + }, + { + "bbox": [ + 217, + 134, + 235, + 146 + ], + "score": 0.58, + "content": "\\mathbf { H e ^ { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 132, + 262, + 149 + ], + "score": 1.0, + "content": ", Tao", + "type": "text" + }, + { + "bbox": [ + 262, + 134, + 283, + 146 + ], + "score": 0.53, + "content": "{ \\bf { Q } i n } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 132, + 425, + 149 + ], + "score": 1.0, + "content": ", Zhou Zhao2 & Tie-Yan Liu1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 113, + 157, + 310, + 180 + ], + "lines": [ + { + "bbox": [ + 113, + 155, + 219, + 169 + ], + "spans": [ + { + "bbox": [ + 113, + 155, + 219, + 169 + ], + "score": 1.0, + "content": "1Microsoft Research Asia", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 168, + 310, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 310, + 180 + ], + "score": 1.0, + "content": "{xuta,taoqin,tyliu}@microsoft.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 113, + 190, + 276, + 213 + ], + "lines": [ + { + "bbox": [ + 111, + 189, + 200, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 189, + 200, + 204 + ], + "score": 1.0, + "content": "2Zhejiang University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 202, + 276, + 214 + ], + "spans": [ + { + "bbox": [ + 112, + 202, + 276, + 214 + ], + "score": 1.0, + "content": "rayeren,zhaozhou@zju.edu.cn", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 113, + 223, + 449, + 246 + ], + "lines": [ + { + "bbox": [ + 112, + 222, + 450, + 237 + ], + "spans": [ + { + "bbox": [ + 112, + 222, + 450, + 237 + ], + "score": 1.0, + "content": "3Key Laboratory of Machine Perception, MOE, School of EECS, Peking University", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 112, + 235, + 208, + 248 + ], + "spans": [ + { + "bbox": [ + 112, + 235, + 208, + 248 + ], + "score": 1.0, + "content": "di he@pku.edu.cn", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 278, + 275, + 333, + 287 + ], + "lines": [ + { + "bbox": [ + 276, + 275, + 335, + 288 + ], + "spans": [ + { + "bbox": [ + 276, + 275, + 335, + 288 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 143, + 301, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "Multilingual machine translation, which translates multiple languages with a sin-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 311, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 326 + ], + "score": 1.0, + "content": "gle model, has attracted much attention due to its efficiency of offline training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "score": 1.0, + "content": "and online serving. However, traditional multilingual translation usually yields", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 334, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 346 + ], + "score": 1.0, + "content": "inferior accuracy compared with the counterpart using individual models for each", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "language pair, due to language diversity and model capacity limitations. In this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 356, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 469, + 367 + ], + "score": 1.0, + "content": "paper, we propose a distillation-based approach to boost the accuracy of multi-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "lingual machine translation. Specifically, individual models are first trained and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "score": 1.0, + "content": "regarded as teachers, and then the multilingual model is trained to fit the training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "data and match the outputs of individual models simultaneously through knowl-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 400, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 142, + 400, + 470, + 412 + ], + "score": 1.0, + "content": "edge distillation. Experiments on IWSLT, WMT and Ted talk translation datasets", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 411, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 142, + 411, + 469, + 422 + ], + "score": 1.0, + "content": "demonstrate the effectiveness of our method. Particularly, we show that one model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 421, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 434 + ], + "score": 1.0, + "content": "is enough to handle multiple languages (up to 44 languages in our experiment),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 433, + 402, + 444 + ], + "spans": [ + { + "bbox": [ + 142, + 433, + 402, + 444 + ], + "score": 1.0, + "content": "with comparable or even better accuracy than individual models.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 206, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 208, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 208, + 482 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "Neural Machine Translation (NMT) has witnessed rapid development in recent years (Bahdanau", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "score": 1.0, + "content": "et al., 2015; Luong et al., 2015b; Wu et al., 2016; Gehring et al., 2017; Vaswani et al., 2017; Wu", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "et al., 2018; Song et al., 2018; Shen et al., 2018; Guo et al., 2018; He et al., 2018; Gong et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "2018), including advanced model structures (Gehring et al., 2017; Vaswani et al., 2017) and human", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "parity achievements (Hassan et al., 2018). While conventional NMT can well handle single pair", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "translation, training a separate model for each language pair is resource consuming, considering", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "there are thousands of languages in the world1. Therefore, multilingual NMT (Johnson et al., 2017;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 566, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 506, + 583 + ], + "score": 1.0, + "content": "Firat et al., 2016; Ha et al., 2016; Lu et al., 2018) is developed which handles multiple language", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 580, + 426, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 426, + 592 + ], + "score": 1.0, + "content": "pairs in one model, greatly reducing the offline training and online serving cost.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "Previous works on multilingual NMT mainly focus on model architecture design through parameter", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "sharing, e.g., sharing encoder, decoder or attention module (Firat et al., 2016; Lu et al., 2018) or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "sharing the entire models (Johnson et al., 2017; Ha et al., 2016). They achieve comparable accuracy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "with individual models (each language pair with a separate model) when the languages are similar to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "each other and the number of language pairs is small (e.g., two or three). However, when handling", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "more language pairs (dozens or even hundreds), the translation accuracy of multilingual model is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 662, + 361, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 361, + 676 + ], + "score": 1.0, + "content": "usually inferior to individual models, due to language diversity.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 503, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "It is challenging to train a multilingual translation model supporting dozens of language pairs while", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "achieving comparable accuracy as individual models. Observing that individual models are usually", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 711, + 265, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 266, + 721 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 266, + 721 + ], + "score": 1.0, + "content": "∗Authors contribute equally to this work.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 720, + 257, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 257, + 733 + ], + "score": 1.0, + "content": "1https://www.ethnologue.com/browse", + "type": "text" + } + ] + } + ] + }, + { + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "MULTILINGUAL NEURAL MACHINE TRANSLATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 361, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 361, + 118 + ], + "score": 1.0, + "content": "WITH KNOWLEDGE DISTILLATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 423, + 146 + ], + "lines": [ + { + "bbox": [ + 110, + 132, + 425, + 149 + ], + "spans": [ + { + "bbox": [ + 110, + 132, + 216, + 149 + ], + "score": 1.0, + "content": "Xu Tan1∗, Yi Ren2∗, Di", + "type": "text" + }, + { + "bbox": [ + 217, + 134, + 235, + 146 + ], + "score": 0.58, + "content": "\\mathbf { H e ^ { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 132, + 262, + 149 + ], + "score": 1.0, + "content": ", Tao", + "type": "text" + }, + { + "bbox": [ + 262, + 134, + 283, + 146 + ], + "score": 0.53, + "content": "{ \\bf { Q } i n } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 132, + 425, + 149 + ], + "score": 1.0, + "content": ", Zhou Zhao2 & Tie-Yan Liu1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 110, + 132, + 425, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 113, + 157, + 310, + 180 + ], + "lines": [ + { + "bbox": [ + 113, + 155, + 219, + 169 + ], + "spans": [ + { + "bbox": [ + 113, + 155, + 219, + 169 + ], + "score": 1.0, + "content": "1Microsoft Research Asia", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 168, + 310, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 310, + 180 + ], + "score": 1.0, + "content": "{xuta,taoqin,tyliu}@microsoft.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 113, + 155, + 310, + 180 + ] + }, + { + "type": "text", + "bbox": [ + 113, + 190, + 276, + 213 + ], + "lines": [ + { + "bbox": [ + 111, + 189, + 200, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 189, + 200, + 204 + ], + "score": 1.0, + "content": "2Zhejiang University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 202, + 276, + 214 + ], + "spans": [ + { + "bbox": [ + 112, + 202, + 276, + 214 + ], + "score": 1.0, + "content": "rayeren,zhaozhou@zju.edu.cn", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 111, + 189, + 276, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 113, + 223, + 449, + 246 + ], + "lines": [ + { + "bbox": [ + 112, + 222, + 450, + 237 + ], + "spans": [ + { + "bbox": [ + 112, + 222, + 450, + 237 + ], + "score": 1.0, + "content": "3Key Laboratory of Machine Perception, MOE, School of EECS, Peking University", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 112, + 235, + 208, + 248 + ], + "spans": [ + { + "bbox": [ + 112, + 235, + 208, + 248 + ], + "score": 1.0, + "content": "di he@pku.edu.cn", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 112, + 222, + 450, + 248 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 275, + 333, + 287 + ], + "lines": [ + { + "bbox": [ + 276, + 275, + 335, + 288 + ], + "spans": [ + { + "bbox": [ + 276, + 275, + 335, + 288 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 143, + 301, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "Multilingual machine translation, which translates multiple languages with a sin-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 311, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 326 + ], + "score": 1.0, + "content": "gle model, has attracted much attention due to its efficiency of offline training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "score": 1.0, + "content": "and online serving. However, traditional multilingual translation usually yields", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 334, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 346 + ], + "score": 1.0, + "content": "inferior accuracy compared with the counterpart using individual models for each", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "language pair, due to language diversity and model capacity limitations. In this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 356, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 469, + 367 + ], + "score": 1.0, + "content": "paper, we propose a distillation-based approach to boost the accuracy of multi-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "lingual machine translation. Specifically, individual models are first trained and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "score": 1.0, + "content": "regarded as teachers, and then the multilingual model is trained to fit the training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "data and match the outputs of individual models simultaneously through knowl-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 400, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 142, + 400, + 470, + 412 + ], + "score": 1.0, + "content": "edge distillation. Experiments on IWSLT, WMT and Ted talk translation datasets", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 411, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 142, + 411, + 469, + 422 + ], + "score": 1.0, + "content": "demonstrate the effectiveness of our method. Particularly, we show that one model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 421, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 434 + ], + "score": 1.0, + "content": "is enough to handle multiple languages (up to 44 languages in our experiment),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 433, + 402, + 444 + ], + "spans": [ + { + "bbox": [ + 142, + 433, + 402, + 444 + ], + "score": 1.0, + "content": "with comparable or even better accuracy than individual models.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16, + "bbox_fs": [ + 141, + 300, + 470, + 444 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 206, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 208, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 208, + 482 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "Neural Machine Translation (NMT) has witnessed rapid development in recent years (Bahdanau", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "score": 1.0, + "content": "et al., 2015; Luong et al., 2015b; Wu et al., 2016; Gehring et al., 2017; Vaswani et al., 2017; Wu", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "et al., 2018; Song et al., 2018; Shen et al., 2018; Guo et al., 2018; He et al., 2018; Gong et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "2018), including advanced model structures (Gehring et al., 2017; Vaswani et al., 2017) and human", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "parity achievements (Hassan et al., 2018). While conventional NMT can well handle single pair", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "translation, training a separate model for each language pair is resource consuming, considering", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "there are thousands of languages in the world1. Therefore, multilingual NMT (Johnson et al., 2017;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 566, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 506, + 583 + ], + "score": 1.0, + "content": "Firat et al., 2016; Ha et al., 2016; Lu et al., 2018) is developed which handles multiple language", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 580, + 426, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 426, + 592 + ], + "score": 1.0, + "content": "pairs in one model, greatly reducing the offline training and online serving cost.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 492, + 506, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "Previous works on multilingual NMT mainly focus on model architecture design through parameter", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "sharing, e.g., sharing encoder, decoder or attention module (Firat et al., 2016; Lu et al., 2018) or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "sharing the entire models (Johnson et al., 2017; Ha et al., 2016). They achieve comparable accuracy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "with individual models (each language pair with a separate model) when the languages are similar to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "each other and the number of language pairs is small (e.g., two or three). However, when handling", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "more language pairs (dozens or even hundreds), the translation accuracy of multilingual model is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 662, + 361, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 361, + 676 + ], + "score": 1.0, + "content": "usually inferior to individual models, due to language diversity.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 597, + 506, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 503, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "It is challenging to train a multilingual translation model supporting dozens of language pairs while", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "achieving comparable accuracy as individual models. Observing that individual models are usually", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "of higher accuracy than the multilingual model in conventional model training, we propose to trans-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "fer the knowledge from individual models to the multilingual model with knowledge distillation,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "which has been studied for model compression and knowledge transfer and well matches our setting", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "of multilingual translation. It usually starts by training a big/deep teacher model (or ensemble of", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "multiple models), and then train a small/shallow student model to mimic the behaviors of the teacher", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "model, such as its hidden representation (Yim et al., 2017; Romero et al., 2014), its output probabil-", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "ities (Hinton et al., 2015; Freitag et al., 2017) or directly training on the sentences generated by the", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "teacher model in neural machine translation (Kim & Rush, 2016a). The student model can (nearly)", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "match the accuracy of the cumbersome teacher model (or the ensemble of multiple models) with", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 200, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 200, + 193 + ], + "score": 1.0, + "content": "knowledge distillation.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 679, + 505, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "of higher accuracy than the multilingual model in conventional model training, we propose to trans-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "fer the knowledge from individual models to the multilingual model with knowledge distillation,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "which has been studied for model compression and knowledge transfer and well matches our setting", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "of multilingual translation. It usually starts by training a big/deep teacher model (or ensemble of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "multiple models), and then train a small/shallow student model to mimic the behaviors of the teacher", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "model, such as its hidden representation (Yim et al., 2017; Romero et al., 2014), its output probabil-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "ities (Hinton et al., 2015; Freitag et al., 2017) or directly training on the sentences generated by the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "teacher model in neural machine translation (Kim & Rush, 2016a). The student model can (nearly)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "match the accuracy of the cumbersome teacher model (or the ensemble of multiple models) with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 200, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 200, + 193 + ], + "score": 1.0, + "content": "knowledge distillation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 504, + 210 + ], + "score": 1.0, + "content": "In this paper, we propose a new method based on knowledge distillation for multilingual transla-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "tion to eliminate the accuracy gap between the multilingual model and individual models. In our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "method, multiple individual models serve as teachers, each handling a separate language pair, while", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "the student handles all the language pairs in a single model, which is different from the conventional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 243, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 254 + ], + "score": 1.0, + "content": "knowledge distillation where the teacher and student models usually handle the same task. We first", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "train the individual models for each translation pair and then we train the multilingual model by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "matching with the outputs of all the individual models and the ground-truth translation simultane-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "ously. After some iterations of training, the multilingual model may get higher translation accuracy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "than the individual models on some language pairs. Then we remove the distillation loss and keep", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "training the multilingual model on these languages pairs with the original log-likelihood loss of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 206, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 206, + 319 + ], + "score": 1.0, + "content": "ground-truth translation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "We conduct experiments on three translation datasets: IWSLT with 12 language pairs, WMT with 6", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "language pairs and Ted talk with 44 language pairs. Our proposed method boosts the translation ac-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "curacy of the baseline multilingual model and achieve similar (or even better) accuracy as individual", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 420, + 371 + ], + "score": 1.0, + "content": "models for most language pairs. Specifically, the multilingual model with only", + "type": "text" + }, + { + "bbox": [ + 420, + 357, + 442, + 370 + ], + "score": 0.56, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "parameters can", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 369, + 411, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 411, + 381 + ], + "score": 1.0, + "content": "match or surpass the accuracy of individual models on the Ted talk datasets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 200, + 410 + ], + "lines": [ + { + "bbox": [ + 104, + 395, + 201, + 412 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 201, + 412 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 277, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 278, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 278, + 435 + ], + "score": 1.0, + "content": "2.1 NEURAL MACHINE TRANSLATION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 257, + 456 + ], + "score": 1.0, + "content": "Given a set of bilingual sentence pairs", + "type": "text" + }, + { + "bbox": [ + 258, + 443, + 350, + 455 + ], + "score": 0.89, + "content": "D = \\{ ( x , y ) \\in \\mathcal { X } { \\times } \\mathcal { Y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 442, + 497, + 456 + ], + "score": 1.0, + "content": ", an NMT model learns the parameter", + "type": "text" + }, + { + "bbox": [ + 498, + 444, + 504, + 453 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 103, + 452, + 508, + 471 + ], + "spans": [ + { + "bbox": [ + 103, + 452, + 277, + 471 + ], + "score": 1.0, + "content": "by minimizing the negative log-likelihood", + "type": "text" + }, + { + "bbox": [ + 277, + 455, + 426, + 469 + ], + "score": 0.75, + "content": "\\begin{array} { r } { - \\sum _ { ( x , y ) \\in D } \\log { P ( y | x ; \\theta ) } . \\ P ( y | x ; \\theta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 452, + 508, + 471 + ], + "score": 1.0, + "content": "is calculated based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 103, + 466, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 103, + 466, + 178, + 486 + ], + "score": 1.0, + "content": "on the chain rule", + "type": "text" + }, + { + "bbox": [ + 178, + 468, + 264, + 483 + ], + "score": 0.93, + "content": "\\prod _ { t = 1 } ^ { T _ { y } } P ( y _ { t } | y _ { < t } , x ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 466, + 296, + 486 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 296, + 472, + 312, + 482 + ], + "score": 0.88, + "content": "y _ { < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 466, + 479, + 486 + ], + "score": 1.0, + "content": "represents the tokens preceding position", + "type": "text" + }, + { + "bbox": [ + 479, + 471, + 484, + 480 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 466, + 507, + 486 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 480, + 229, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 118, + 494 + ], + "score": 0.87, + "content": "T _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 480, + 218, + 496 + ], + "score": 1.0, + "content": "is the length of sentence", + "type": "text" + }, + { + "bbox": [ + 218, + 484, + 225, + 493 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 480, + 229, + 496 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "The encoder-decoder framework (Bahdanau et al., 2015; Luong et al., 2015b; Sutskever et al., 2014;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Wu et al., 2016; Gehring et al., 2017; Vaswani et al., 2017) is usually adopted to model the condi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 520, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 178, + 533 + ], + "score": 1.0, + "content": "tional probability", + "type": "text" + }, + { + "bbox": [ + 179, + 520, + 218, + 532 + ], + "score": 0.95, + "content": "P ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 520, + 496, + 533 + ], + "score": 1.0, + "content": ", where the encoder maps the input to a set of hidden representations", + "type": "text" + }, + { + "bbox": [ + 497, + 520, + 504, + 530 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 286, + 545 + ], + "score": 1.0, + "content": "and the decoder generates each target token", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 296, + 542 + ], + "score": 0.83, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 530, + 445, + 545 + ], + "score": 1.0, + "content": "using the previous generated tokens", + "type": "text" + }, + { + "bbox": [ + 445, + 533, + 461, + 543 + ], + "score": 0.88, + "content": "y _ { < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 530, + 505, + 545 + ], + "score": 1.0, + "content": "as well as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 542, + 195, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 184, + 555 + ], + "score": 1.0, + "content": "the representations", + "type": "text" + }, + { + "bbox": [ + 184, + 543, + 191, + 552 + ], + "score": 0.8, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 542, + 195, + 555 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 225, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 226, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 226, + 581 + ], + "score": 1.0, + "content": "2.2 MULTILINGUAL NMT", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "NMT has been extended from the translation of a single language pair to multilingual transla-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 266, + 613 + ], + "score": 1.0, + "content": "tion (Dong et al., 2015; Luong et al.,", + "type": "text" + }, + { + "bbox": [ + 266, + 600, + 292, + 611 + ], + "score": 0.36, + "content": "2 0 1 5 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "; Firat et al., 2016; Lu et al., 2018; Johnson et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "2017; Ha et al., 2016), considering the large amount of languages pairs in the world. Some of these", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "works focus on how to share the components of the NMT model among multiple language pairs.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "Dong et al. (2015) use a shared encoder but different decoders to translate the same source lan-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "guage to multiple target languages. Luong et al. (2015a) use the combination of multiple encoders", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "and decoders, with one encoder for each source language and one decoder for each target language", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "respectively, to translate multiple source languages to multiple target languages. Firat et al. (2016)", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "share the attention mechanism but use different encoders and decoders for multilingual translation.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Similarly, Lu et al. (2018) design the neural interlingua, which is an attentional LSTM encoder to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "bridge multiple encoders and decoders for different language pairs. In Johnson et al. (2017) and Ha", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "et al. (2016), multiple source and target languages are handled with a universal model (one encoder", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "and decoder), with a special tag in the encoder to determine which target language to translate. In Gu", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 44 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [], + "index": 4.5, + "bbox_fs": [ + 105, + 82, + 506, + 193 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 504, + 210 + ], + "score": 1.0, + "content": "In this paper, we propose a new method based on knowledge distillation for multilingual transla-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "tion to eliminate the accuracy gap between the multilingual model and individual models. In our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "method, multiple individual models serve as teachers, each handling a separate language pair, while", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "the student handles all the language pairs in a single model, which is different from the conventional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 243, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 254 + ], + "score": 1.0, + "content": "knowledge distillation where the teacher and student models usually handle the same task. We first", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "train the individual models for each translation pair and then we train the multilingual model by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "matching with the outputs of all the individual models and the ground-truth translation simultane-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "ously. After some iterations of training, the multilingual model may get higher translation accuracy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "than the individual models on some language pairs. Then we remove the distillation loss and keep", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "training the multilingual model on these languages pairs with the original log-likelihood loss of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 206, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 206, + 319 + ], + "score": 1.0, + "content": "ground-truth translation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 198, + 506, + 319 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "We conduct experiments on three translation datasets: IWSLT with 12 language pairs, WMT with 6", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "language pairs and Ted talk with 44 language pairs. Our proposed method boosts the translation ac-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "curacy of the baseline multilingual model and achieve similar (or even better) accuracy as individual", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 420, + 371 + ], + "score": 1.0, + "content": "models for most language pairs. Specifically, the multilingual model with only", + "type": "text" + }, + { + "bbox": [ + 420, + 357, + 442, + 370 + ], + "score": 0.56, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "parameters can", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 369, + 411, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 411, + 381 + ], + "score": 1.0, + "content": "match or surpass the accuracy of individual models on the Ted talk datasets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 324, + 506, + 381 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 200, + 410 + ], + "lines": [ + { + "bbox": [ + 104, + 395, + 201, + 412 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 201, + 412 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 277, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 278, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 278, + 435 + ], + "score": 1.0, + "content": "2.1 NEURAL MACHINE TRANSLATION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 257, + 456 + ], + "score": 1.0, + "content": "Given a set of bilingual sentence pairs", + "type": "text" + }, + { + "bbox": [ + 258, + 443, + 350, + 455 + ], + "score": 0.89, + "content": "D = \\{ ( x , y ) \\in \\mathcal { X } { \\times } \\mathcal { Y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 442, + 497, + 456 + ], + "score": 1.0, + "content": ", an NMT model learns the parameter", + "type": "text" + }, + { + "bbox": [ + 498, + 444, + 504, + 453 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 103, + 452, + 508, + 471 + ], + "spans": [ + { + "bbox": [ + 103, + 452, + 277, + 471 + ], + "score": 1.0, + "content": "by minimizing the negative log-likelihood", + "type": "text" + }, + { + "bbox": [ + 277, + 455, + 426, + 469 + ], + "score": 0.75, + "content": "\\begin{array} { r } { - \\sum _ { ( x , y ) \\in D } \\log { P ( y | x ; \\theta ) } . \\ P ( y | x ; \\theta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 452, + 508, + 471 + ], + "score": 1.0, + "content": "is calculated based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 103, + 466, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 103, + 466, + 178, + 486 + ], + "score": 1.0, + "content": "on the chain rule", + "type": "text" + }, + { + "bbox": [ + 178, + 468, + 264, + 483 + ], + "score": 0.93, + "content": "\\prod _ { t = 1 } ^ { T _ { y } } P ( y _ { t } | y _ { < t } , x ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 466, + 296, + 486 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 296, + 472, + 312, + 482 + ], + "score": 0.88, + "content": "y _ { < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 466, + 479, + 486 + ], + "score": 1.0, + "content": "represents the tokens preceding position", + "type": "text" + }, + { + "bbox": [ + 479, + 471, + 484, + 480 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 466, + 507, + 486 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 480, + 229, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 118, + 494 + ], + "score": 0.87, + "content": "T _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 480, + 218, + 496 + ], + "score": 1.0, + "content": "is the length of sentence", + "type": "text" + }, + { + "bbox": [ + 218, + 484, + 225, + 493 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 480, + 229, + 496 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 103, + 442, + 508, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "The encoder-decoder framework (Bahdanau et al., 2015; Luong et al., 2015b; Sutskever et al., 2014;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Wu et al., 2016; Gehring et al., 2017; Vaswani et al., 2017) is usually adopted to model the condi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 520, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 178, + 533 + ], + "score": 1.0, + "content": "tional probability", + "type": "text" + }, + { + "bbox": [ + 179, + 520, + 218, + 532 + ], + "score": 0.95, + "content": "P ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 520, + 496, + 533 + ], + "score": 1.0, + "content": ", where the encoder maps the input to a set of hidden representations", + "type": "text" + }, + { + "bbox": [ + 497, + 520, + 504, + 530 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 286, + 545 + ], + "score": 1.0, + "content": "and the decoder generates each target token", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 296, + 542 + ], + "score": 0.83, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 530, + 445, + 545 + ], + "score": 1.0, + "content": "using the previous generated tokens", + "type": "text" + }, + { + "bbox": [ + 445, + 533, + 461, + 543 + ], + "score": 0.88, + "content": "y _ { < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 530, + 505, + 545 + ], + "score": 1.0, + "content": "as well as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 542, + 195, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 184, + 555 + ], + "score": 1.0, + "content": "the representations", + "type": "text" + }, + { + "bbox": [ + 184, + 543, + 191, + 552 + ], + "score": 0.8, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 542, + 195, + 555 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 498, + 506, + 555 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 225, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 226, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 226, + 581 + ], + "score": 1.0, + "content": "2.2 MULTILINGUAL NMT", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "NMT has been extended from the translation of a single language pair to multilingual transla-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 266, + 613 + ], + "score": 1.0, + "content": "tion (Dong et al., 2015; Luong et al.,", + "type": "text" + }, + { + "bbox": [ + 266, + 600, + 292, + 611 + ], + "score": 0.36, + "content": "2 0 1 5 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "; Firat et al., 2016; Lu et al., 2018; Johnson et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "2017; Ha et al., 2016), considering the large amount of languages pairs in the world. Some of these", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "works focus on how to share the components of the NMT model among multiple language pairs.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "Dong et al. (2015) use a shared encoder but different decoders to translate the same source lan-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "guage to multiple target languages. Luong et al. (2015a) use the combination of multiple encoders", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "and decoders, with one encoder for each source language and one decoder for each target language", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "respectively, to translate multiple source languages to multiple target languages. Firat et al. (2016)", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "share the attention mechanism but use different encoders and decoders for multilingual translation.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Similarly, Lu et al. (2018) design the neural interlingua, which is an attentional LSTM encoder to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "bridge multiple encoders and decoders for different language pairs. In Johnson et al. (2017) and Ha", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "et al. (2016), multiple source and target languages are handled with a universal model (one encoder", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "and decoder), with a special tag in the encoder to determine which target language to translate. In Gu", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "et al. (2018a;b) and Neubig & Hu (2018), multilingual translation is leveraged to boost the accuracy", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 436, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 436, + 106 + ], + "score": 1.0, + "content": "of low-resource language pairs with better model structure or training mechanism.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 44, + "bbox_fs": [ + 104, + 588, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "et al. (2018a;b) and Neubig & Hu (2018), multilingual translation is leveraged to boost the accuracy", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 436, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 436, + 106 + ], + "score": 1.0, + "content": "of low-resource language pairs with better model structure or training mechanism.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "It is observed that when there are dozens of language pairs, multilingual NMT usually achieves infe-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "rior accuracy compared with its counterpart which trains an individual model for each language pair.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "In this work we propose the multilingual distillation framework to boost the accuracy of multilingual", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 395, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 395, + 155 + ], + "score": 1.0, + "content": "NMT, so as to match or even surpass the accuracy of individual models.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 174, + 252, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 254, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 254, + 187 + ], + "score": 1.0, + "content": "2.3 KNOWLEDGE DISTILLATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "The early adoption of knowledge distillation is for model compression (Bucilu et al., 2006), where", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 207, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 220 + ], + "score": 1.0, + "content": "the goal is to deliver a compact student model that matches the accuracy of a large teacher model", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "or the ensemble of multiple models. Knowledge distillation has soon been applied to a variety of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "tasks, including image classification (Hinton et al., 2015; Furlanello et al., 2018; Yang et al., 2018;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "score": 1.0, + "content": "Anil et al., 2018; Li et al., 2017), speech recognition (Hinton et al., 2015) and natural language", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "score": 1.0, + "content": "processing (Kim & Rush, 2016a; Freitag et al., 2017). Recent works (Furlanello et al., 2018; Yang", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "et al., 2018) even demonstrate that student model can surpass the accuracy of the teacher model,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 272, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 104, + 272, + 506, + 287 + ], + "score": 1.0, + "content": "even if the teacher model is of the same capacity as the student model. Zhang et al. (2017) propose", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "the mutual learning to enable multiple student models to learn collaboratively and teach each other", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "by knowledge distillation, which can improve the accuracy of those individual models. Anil et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "(2018) propose online distillation to improve the scalability of distributed model training and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 180, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 180, + 331 + ], + "score": 1.0, + "content": "training accuracy.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "In this paper, we develop the multilingual distillation framework for multilingual NMT. Our work", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "differs from Zhang et al. (2017) and Anil et al. (2018) in that they collaboratively train multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "student models with codistillation, while we use multiple teacher models to train a single student", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 257, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 257, + 379 + ], + "score": 1.0, + "content": "model, the multilingual NMT model.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 173, + 412 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 175, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 175, + 416 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "As mentioned, when there are many language pairs and each pair has enough training data, the ac-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "curacy of individual models for those language pairs is usually higher than that of the multilingual", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "model, given that the multilingual model has limited capacity comparing with the sum of all the in-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "dividual models. Therefore, we propose to teach the multilingual model using the individual models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "as teachers. Here we first describe the idea of knowledge distillation in neural machine translation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "for the case of one teacher and one student, and then introduce our method in the multilingual setting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 494, + 460, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 460, + 506 + ], + "score": 1.0, + "content": "with multiple teachers (the individual models) and one student (the multilingual model).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 281, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 282, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 282, + 537 + ], + "score": 1.0, + "content": "3.1 ONE TEACHER AND ONE STUDENT", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 546, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 138, + 560 + ], + "score": 1.0, + "content": "Denote", + "type": "text" + }, + { + "bbox": [ + 138, + 547, + 236, + 559 + ], + "score": 0.93, + "content": "D = \\{ ( x , y ) \\in \\mathcal { X } \\times \\mathcal { Y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "as the bilingual corpus of a language pair. The log-likelihood loss", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 288, + 570 + ], + "score": 1.0, + "content": "(cross-entropy with one-hot label) on corpus", + "type": "text" + }, + { + "bbox": [ + 288, + 559, + 297, + 568 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 558, + 422, + 570 + ], + "score": 1.0, + "content": "with regard to an NMT model", + "type": "text" + }, + { + "bbox": [ + 423, + 559, + 429, + 568 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "can be formulated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 568, + 153, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 153, + 582 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 583, + 426, + 651 + ], + "lines": [ + { + "bbox": [ + 184, + 583, + 426, + 651 + ], + "spans": [ + { + "bbox": [ + 184, + 583, + 426, + 651 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { { \\mathcal { L } } _ { \\mathrm { N L L } } ( D ; \\theta ) = - \\displaystyle \\sum _ { ( x , y ) \\in D } \\log P ( y | x ; \\theta ) , } \\\\ & { \\log P ( y | x ; \\theta ) = \\displaystyle \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } \\mathbb { 1 } \\{ y _ { t } = k \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c6b7d0928b4f7b10f71a64a56c5f7368462fa97048dce07e9a3538bed12d6b25.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 184, + 583, + 426, + 596.6 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 184, + 596.6, + 426, + 610.2 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 184, + 610.2, + 426, + 623.8000000000001 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 184, + 623.8000000000001, + 426, + 637.4000000000001 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 184, + 637.4000000000001, + 426, + 651.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 659, + 503, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 133, + 673 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 660, + 145, + 672 + ], + "score": 0.89, + "content": "T _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 658, + 288, + 673 + ], + "score": 1.0, + "content": "is the length of the target sentence,", + "type": "text" + }, + { + "bbox": [ + 289, + 660, + 303, + 672 + ], + "score": 0.9, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 658, + 484, + 673 + ], + "score": 1.0, + "content": "is the vocabulary size of the target language,", + "type": "text" + }, + { + "bbox": [ + 485, + 662, + 494, + 671 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 658, + 506, + 673 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 121, + 684 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 672, + 126, + 681 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 669, + 190, + 684 + ], + "score": 1.0, + "content": "-th target token,", + "type": "text" + }, + { + "bbox": [ + 190, + 671, + 209, + 682 + ], + "score": 0.91, + "content": "\\mathbb { 1 } \\{ \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 669, + 455, + 684 + ], + "score": 1.0, + "content": "is the indicator function that represents the one-hot label, and", + "type": "text" + }, + { + "bbox": [ + 456, + 671, + 480, + 683 + ], + "score": 0.92, + "content": "P ( \\cdot | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 681, + 258, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 248, + 694 + ], + "score": 1.0, + "content": "conditional probability with model", + "type": "text" + }, + { + "bbox": [ + 248, + 684, + 253, + 691 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 681, + 258, + 694 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 351, + 712 + ], + "score": 1.0, + "content": "In knowledge distillation, the student (with model parameter", + "type": "text" + }, + { + "bbox": [ + 351, + 700, + 357, + 708 + ], + "score": 0.76, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ") not only matches the outputs of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "ground-truth one-hot label, but also to the probability outputs of the teacher model (with parameter", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 119, + 732 + ], + "score": 0.82, + "content": "\\theta _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 720, + 370, + 734 + ], + "score": 1.0, + "content": "). Denote the output distribution of the teacher model for token", + "type": "text" + }, + { + "bbox": [ + 370, + 722, + 380, + 732 + ], + "score": 0.84, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 720, + 392, + 734 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 392, + 721, + 460, + 732 + ], + "score": 0.93, + "content": "Q \\big ( y _ { t } | y _ { < t } , x ; \\theta _ { T } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 720, + 505, + 734 + ], + "score": 1.0, + "content": ". The cross", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "It is observed that when there are dozens of language pairs, multilingual NMT usually achieves infe-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "rior accuracy compared with its counterpart which trains an individual model for each language pair.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "In this work we propose the multilingual distillation framework to boost the accuracy of multilingual", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 395, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 395, + 155 + ], + "score": 1.0, + "content": "NMT, so as to match or even surpass the accuracy of individual models.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 110, + 506, + 155 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 174, + 252, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 254, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 254, + 187 + ], + "score": 1.0, + "content": "2.3 KNOWLEDGE DISTILLATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "The early adoption of knowledge distillation is for model compression (Bucilu et al., 2006), where", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 207, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 220 + ], + "score": 1.0, + "content": "the goal is to deliver a compact student model that matches the accuracy of a large teacher model", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "or the ensemble of multiple models. Knowledge distillation has soon been applied to a variety of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "tasks, including image classification (Hinton et al., 2015; Furlanello et al., 2018; Yang et al., 2018;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "score": 1.0, + "content": "Anil et al., 2018; Li et al., 2017), speech recognition (Hinton et al., 2015) and natural language", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "score": 1.0, + "content": "processing (Kim & Rush, 2016a; Freitag et al., 2017). Recent works (Furlanello et al., 2018; Yang", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "et al., 2018) even demonstrate that student model can surpass the accuracy of the teacher model,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 272, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 104, + 272, + 506, + 287 + ], + "score": 1.0, + "content": "even if the teacher model is of the same capacity as the student model. Zhang et al. (2017) propose", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "the mutual learning to enable multiple student models to learn collaboratively and teach each other", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "by knowledge distillation, which can improve the accuracy of those individual models. Anil et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "(2018) propose online distillation to improve the scalability of distributed model training and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 180, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 180, + 331 + ], + "score": 1.0, + "content": "training accuracy.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 196, + 506, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "In this paper, we develop the multilingual distillation framework for multilingual NMT. Our work", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "differs from Zhang et al. (2017) and Anil et al. (2018) in that they collaboratively train multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "student models with codistillation, while we use multiple teacher models to train a single student", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 257, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 257, + 379 + ], + "score": 1.0, + "content": "model, the multilingual NMT model.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 334, + 506, + 379 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 173, + 412 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 175, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 175, + 416 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "As mentioned, when there are many language pairs and each pair has enough training data, the ac-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "curacy of individual models for those language pairs is usually higher than that of the multilingual", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "model, given that the multilingual model has limited capacity comparing with the sum of all the in-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "dividual models. Therefore, we propose to teach the multilingual model using the individual models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "as teachers. Here we first describe the idea of knowledge distillation in neural machine translation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "for the case of one teacher and one student, and then introduce our method in the multilingual setting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 494, + 460, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 460, + 506 + ], + "score": 1.0, + "content": "with multiple teachers (the individual models) and one student (the multilingual model).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 429, + 506, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 281, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 282, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 282, + 537 + ], + "score": 1.0, + "content": "3.1 ONE TEACHER AND ONE STUDENT", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 546, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 138, + 560 + ], + "score": 1.0, + "content": "Denote", + "type": "text" + }, + { + "bbox": [ + 138, + 547, + 236, + 559 + ], + "score": 0.93, + "content": "D = \\{ ( x , y ) \\in \\mathcal { X } \\times \\mathcal { Y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "as the bilingual corpus of a language pair. The log-likelihood loss", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 288, + 570 + ], + "score": 1.0, + "content": "(cross-entropy with one-hot label) on corpus", + "type": "text" + }, + { + "bbox": [ + 288, + 559, + 297, + 568 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 558, + 422, + 570 + ], + "score": 1.0, + "content": "with regard to an NMT model", + "type": "text" + }, + { + "bbox": [ + 423, + 559, + 429, + 568 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "can be formulated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 568, + 153, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 153, + 582 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 546, + 505, + 582 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 583, + 426, + 651 + ], + "lines": [ + { + "bbox": [ + 184, + 583, + 426, + 651 + ], + "spans": [ + { + "bbox": [ + 184, + 583, + 426, + 651 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { { \\mathcal { L } } _ { \\mathrm { N L L } } ( D ; \\theta ) = - \\displaystyle \\sum _ { ( x , y ) \\in D } \\log P ( y | x ; \\theta ) , } \\\\ & { \\log P ( y | x ; \\theta ) = \\displaystyle \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } \\mathbb { 1 } \\{ y _ { t } = k \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c6b7d0928b4f7b10f71a64a56c5f7368462fa97048dce07e9a3538bed12d6b25.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 184, + 583, + 426, + 596.6 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 184, + 596.6, + 426, + 610.2 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 184, + 610.2, + 426, + 623.8000000000001 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 184, + 623.8000000000001, + 426, + 637.4000000000001 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 184, + 637.4000000000001, + 426, + 651.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 659, + 503, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 133, + 673 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 660, + 145, + 672 + ], + "score": 0.89, + "content": "T _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 658, + 288, + 673 + ], + "score": 1.0, + "content": "is the length of the target sentence,", + "type": "text" + }, + { + "bbox": [ + 289, + 660, + 303, + 672 + ], + "score": 0.9, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 658, + 484, + 673 + ], + "score": 1.0, + "content": "is the vocabulary size of the target language,", + "type": "text" + }, + { + "bbox": [ + 485, + 662, + 494, + 671 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 658, + 506, + 673 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 121, + 684 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 672, + 126, + 681 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 669, + 190, + 684 + ], + "score": 1.0, + "content": "-th target token,", + "type": "text" + }, + { + "bbox": [ + 190, + 671, + 209, + 682 + ], + "score": 0.91, + "content": "\\mathbb { 1 } \\{ \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 669, + 455, + 684 + ], + "score": 1.0, + "content": "is the indicator function that represents the one-hot label, and", + "type": "text" + }, + { + "bbox": [ + 456, + 671, + 480, + 683 + ], + "score": 0.92, + "content": "P ( \\cdot | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 681, + 258, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 248, + 694 + ], + "score": 1.0, + "content": "conditional probability with model", + "type": "text" + }, + { + "bbox": [ + 248, + 684, + 253, + 691 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 681, + 258, + 694 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 658, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 351, + 712 + ], + "score": 1.0, + "content": "In knowledge distillation, the student (with model parameter", + "type": "text" + }, + { + "bbox": [ + 351, + 700, + 357, + 708 + ], + "score": 0.76, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ") not only matches the outputs of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "ground-truth one-hot label, but also to the probability outputs of the teacher model (with parameter", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 119, + 732 + ], + "score": 0.82, + "content": "\\theta _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 720, + 370, + 734 + ], + "score": 1.0, + "content": "). Denote the output distribution of the teacher model for token", + "type": "text" + }, + { + "bbox": [ + 370, + 722, + 380, + 732 + ], + "score": 0.84, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 720, + 392, + 734 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 392, + 721, + 460, + 732 + ], + "score": 0.93, + "content": "Q \\big ( y _ { t } | y _ { < t } , x ; \\theta _ { T } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 720, + 505, + 734 + ], + "score": 1.0, + "content": ". The cross", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 362, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 363, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 363, + 95 + ], + "score": 1.0, + "content": "entropy between two distributions serves as the distillation loss:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 99, + 472, + 137 + ], + "lines": [ + { + "bbox": [ + 138, + 99, + 472, + 137 + ], + "spans": [ + { + "bbox": [ + 138, + 99, + 472, + 137 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) = - \\sum _ { ( x , y ) \\in D } \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } Q \\{ y _ { t } = k | y _ { < t } , x ; \\theta _ { T } \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) .", + "type": "interline_equation", + "image_path": "98905039105c29a249e708779460768106ca9672fbee260031319d6596d6fcf3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 99, + 472, + 111.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 111.66666666666667, + 472, + 124.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 124.33333333333334, + 472, + 137.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 216, + 155 + ], + "score": 1.0, + "content": "The difference between", + "type": "text" + }, + { + "bbox": [ + 216, + 142, + 264, + 155 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 142, + 291, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 142, + 351, + 155 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "is that the target distribution of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 153, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 166, + 165 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 153, + 506, + 166 + ], + "score": 1.0, + "content": "is no longer the original one-hot label, but teacher’s output distribution which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "more smooth by assigning non-zero probabilities to more than one word and yields smaller variance", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 392, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 392, + 187 + ], + "score": 1.0, + "content": "in gradients (Hinton et al., 2015). Then the total loss function becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 191, + 422, + 206 + ], + "lines": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "spans": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( D ; \\theta , \\theta _ { T } ) = ( 1 - \\lambda ) \\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta ) + \\lambda \\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) ,", + "type": "interline_equation", + "image_path": "18ce6de7b3599aa51a7291222693686c66e5a401faff4c9a0b5e7942c5deaca2.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 332, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 333, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 133, + 223 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 212, + 140, + 221 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 210, + 333, + 223 + ], + "score": 1.0, + "content": "is the coefficient to trade off the two loss terms.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 106, + 235, + 470, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 471, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 471, + 248 + ], + "score": 1.0, + "content": "3.2 MULTILINGUAL DISTILLATION WITH MULTIPLE TEACHERS AND ONE STUDENT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 122, + 269 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 257, + 131, + 267 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 256, + 405, + 269 + ], + "score": 1.0, + "content": "denote the total number of language pairs in our setting, superscript", + "type": "text" + }, + { + "bbox": [ + 406, + 257, + 435, + 268 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "denote the index", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 175, + 280 + ], + "score": 1.0, + "content": "of language pair,", + "type": "text" + }, + { + "bbox": [ + 175, + 267, + 187, + 278 + ], + "score": 0.88, + "content": "D ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 266, + 326, + 280 + ], + "score": 1.0, + "content": "denote the bilingual corpus for the", + "type": "text" + }, + { + "bbox": [ + 326, + 268, + 330, + 277 + ], + "score": 0.59, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 266, + 400, + 280 + ], + "score": 1.0, + "content": "-th language pair,", + "type": "text" + }, + { + "bbox": [ + 400, + 268, + 415, + 279 + ], + "score": 0.92, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "denote the parameters", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 268, + 291 + ], + "score": 1.0, + "content": "of the (student) multilingual model, and", + "type": "text" + }, + { + "bbox": [ + 269, + 278, + 279, + 290 + ], + "score": 0.86, + "content": "\\theta _ { I } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "denote the parameters of the (teacher) individual model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 122, + 303 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 122, + 290, + 126, + 299 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 288, + 249, + 303 + ], + "score": 1.0, + "content": "-th language pair. Therefore,", + "type": "text" + }, + { + "bbox": [ + 249, + 290, + 306, + 301 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } ( \\mathrm { \\bar { \\it D } } ; \\theta _ { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "denotes the log-likelihood loss on training data", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 116, + 311 + ], + "score": 0.77, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 299, + 138, + 314 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 138, + 300, + 211, + 313 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( \\bar { D ^ { l } } ; \\bar { \\theta } _ { M } , \\theta _ { I } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 299, + 366, + 314 + ], + "score": 1.0, + "content": "denotes the total loss on training data", + "type": "text" + }, + { + "bbox": [ + 366, + 300, + 379, + 311 + ], + "score": 0.88, + "content": "\\bar { D } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 299, + 506, + 314 + ], + "score": 1.0, + "content": ", which consists of the original", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 496, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 482, + 325 + ], + "score": 1.0, + "content": "log-likelihood loss and the distillation loss by matching to the outputs from the teacher model", + "type": "text" + }, + { + "bbox": [ + 482, + 312, + 492, + 325 + ], + "score": 0.88, + "content": "\\theta _ { I } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 311, + 496, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "The multilingual distillation process is summarized in Algorithm 1. As can be seen in Line 1, our", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "algorithm takes pretrained individual models for each language pair as inputs. Note that those mod-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 347, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 290, + 367 + ], + "score": 1.0, + "content": "els can be pretrained using the same datasets", + "type": "text" + }, + { + "bbox": [ + 290, + 351, + 326, + 364 + ], + "score": 0.93, + "content": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 347, + 507, + 367 + ], + "score": 1.0, + "content": "or different datasets, and they can share the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "same network structure as the multilingual model or use different architectures. For simplification,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "in our experiments, we use the same datasets to pretrain the individual models and they share the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 396 + ], + "score": 1.0, + "content": "same architecture as the multilingual model. In Line 8-9, the multilingual model learns from both", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 336, + 407 + ], + "score": 1.0, + "content": "the ground-truth data and the individual models with loss", + "type": "text" + }, + { + "bbox": [ + 336, + 396, + 358, + 406 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { A L L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 396, + 505, + 407 + ], + "score": 1.0, + "content": "when its accuracy has not surpassed", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 286, + 420 + ], + "score": 1.0, + "content": "the individual model for a certain threshold", + "type": "text" + }, + { + "bbox": [ + 287, + 408, + 294, + 416 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 405, + 457, + 420 + ], + "score": 1.0, + "content": "(which is checked in Line 15-19 every", + "type": "text" + }, + { + "bbox": [ + 457, + 407, + 481, + 418 + ], + "score": 0.91, + "content": "\\tau _ { \\mathrm { c h e c k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "steps", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 418, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 429 + ], + "score": 1.0, + "content": "according to the accuracy in validation set); otherwise, the multilingual model only learns from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 428, + 417, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 327, + 441 + ], + "score": 1.0, + "content": "ground-truth data using the original log-likelihood loss", + "type": "text" + }, + { + "bbox": [ + 327, + 428, + 350, + 439 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { N L L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 428, + 417, + 441 + ], + "score": 1.0, + "content": "(in Line 10-11).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 346, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 347, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 347, + 466 + ], + "score": 1.0, + "content": "Algorithm 1 Knowledge Distillation for Multilingual NMT", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 108, + 468, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 110, + 467, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 110, + 467, + 218, + 483 + ], + "score": 1.0, + "content": "1: Input: Training corpus", + "type": "text" + }, + { + "bbox": [ + 218, + 468, + 253, + 481 + ], + "score": 0.93, + "content": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 467, + 386, + 483 + ], + "score": 1.0, + "content": "and pretrained individual models", + "type": "text" + }, + { + "bbox": [ + 387, + 468, + 419, + 481 + ], + "score": 0.92, + "content": "\\{ \\theta _ { I } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 467, + 434, + 483 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 434, + 470, + 442, + 479 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 467, + 506, + 483 + ], + "score": 1.0, + "content": "language pairs,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 122, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 122, + 479, + 177, + 492 + ], + "score": 1.0, + "content": "learning rate", + "type": "text" + }, + { + "bbox": [ + 177, + 482, + 184, + 492 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 479, + 266, + 492 + ], + "score": 1.0, + "content": ", total training steps", + "type": "text" + }, + { + "bbox": [ + 267, + 480, + 276, + 490 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 479, + 371, + 492 + ], + "score": 1.0, + "content": ", distillation check step", + "type": "text" + }, + { + "bbox": [ + 372, + 480, + 395, + 491 + ], + "score": 0.88, + "content": "\\tau _ { \\mathrm { c h e c k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 479, + 439, + 492 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + }, + { + "bbox": [ + 439, + 482, + 447, + 490 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "of distillation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 123, + 491, + 163, + 503 + ], + "spans": [ + { + "bbox": [ + 123, + 491, + 163, + 503 + ], + "score": 1.0, + "content": "accuracy.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 111, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 111, + 501, + 330, + 514 + ], + "score": 1.0, + "content": "2: Initialize: Randomly initialize multilingual model", + "type": "text" + }, + { + "bbox": [ + 330, + 502, + 345, + 513 + ], + "score": 0.88, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 501, + 451, + 514 + ], + "score": 1.0, + "content": ". Set current training step", + "type": "text" + }, + { + "bbox": [ + 451, + 502, + 477, + 512 + ], + "score": 0.89, + "content": "T = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 501, + 505, + 514 + ], + "score": 1.0, + "content": ", accu-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 122, + 511, + 370, + 526 + ], + "spans": [ + { + "bbox": [ + 122, + 511, + 193, + 526 + ], + "score": 1.0, + "content": "mulated gradient", + "type": "text" + }, + { + "bbox": [ + 193, + 514, + 216, + 524 + ], + "score": 0.91, + "content": "g = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 511, + 282, + 526 + ], + "score": 1.0, + "content": ", distillation flag", + "type": "text" + }, + { + "bbox": [ + 282, + 512, + 322, + 524 + ], + "score": 0.75, + "content": "{ \\bf { \\bar { \\boldsymbol { f } } } } ^ { l } = T r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 511, + 336, + 526 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 336, + 513, + 365, + 525 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 511, + 370, + 526 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 111, + 524, + 192, + 535 + ], + "spans": [ + { + "bbox": [ + 111, + 524, + 120, + 535 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 122, + 524, + 148, + 535 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 149, + 524, + 179, + 534 + ], + "score": 0.89, + "content": "T < \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 524, + 192, + 535 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 110, + 534, + 173, + 546 + ], + "spans": [ + { + "bbox": [ + 110, + 534, + 121, + 546 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 535, + 173, + 545 + ], + "score": 0.73, + "content": "T = T { + } 1", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 110, + 545, + 159, + 558 + ], + "spans": [ + { + "bbox": [ + 110, + 545, + 121, + 558 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 546, + 159, + 557 + ], + "score": 0.53, + "content": "g = \\mathbf { 0 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 110, + 556, + 195, + 569 + ], + "spans": [ + { + "bbox": [ + 110, + 557, + 121, + 568 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 135, + 556, + 150, + 569 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 151, + 557, + 180, + 568 + ], + "score": 0.85, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 556, + 195, + 569 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 110, + 566, + 412, + 580 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 121, + 580 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 143, + 566, + 343, + 580 + ], + "score": 1.0, + "content": "Randomly sample a mini-batch of sentence pairs", + "type": "text" + }, + { + "bbox": [ + 343, + 567, + 372, + 580 + ], + "score": 0.92, + "content": "( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 566, + 395, + 580 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 395, + 567, + 408, + 578 + ], + "score": 0.88, + "content": "D ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 566, + 412, + 580 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 110, + 578, + 214, + 590 + ], + "spans": [ + { + "bbox": [ + 110, + 578, + 121, + 590 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 145, + 578, + 154, + 590 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 155, + 578, + 200, + 590 + ], + "score": 0.67, + "content": "f ^ { l } = = \\dot { T } r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 578, + 214, + 590 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 110, + 587, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 110, + 590, + 121, + 601 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 150, + 587, + 334, + 604 + ], + "score": 1.0, + "content": "Compute and accumulate the gradient on loss", + "type": "text" + }, + { + "bbox": [ + 334, + 588, + 424, + 602 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } , \\theta _ { I } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 587, + 428, + 604 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 429, + 589, + 501, + 601 + ], + "score": 0.71, + "content": "g + = \\partial \\mathcal { L } _ { \\mathrm { A L L } } / \\partial \\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 587, + 505, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 599, + 165, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 121, + 612 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 145, + 599, + 165, + 613 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 610, + 496, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 121, + 623 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 151, + 610, + 337, + 624 + ], + "score": 1.0, + "content": "Compute and accumulate the gradient on loss", + "type": "text" + }, + { + "bbox": [ + 338, + 610, + 413, + 623 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } \\big ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 610, + 417, + 624 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 418, + 611, + 492, + 623 + ], + "score": 0.85, + "content": "g + = \\partial \\mathcal { L } _ { \\mathrm { N L L } } / \\partial \\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 610, + 496, + 624 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 622, + 174, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 121, + 635 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 144, + 622, + 174, + 634 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 633, + 169, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 121, + 645 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 134, + 633, + 169, + 644 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 642, + 254, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 121, + 656 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 135, + 642, + 167, + 658 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 167, + 645, + 181, + 655 + ], + "score": 0.73, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 642, + 186, + 658 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 187, + 645, + 254, + 656 + ], + "score": 0.61, + "content": "\\theta _ { M } = \\theta _ { M } - \\eta * g", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 654, + 225, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 121, + 667 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 134, + 654, + 144, + 668 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 145, + 656, + 210, + 666 + ], + "score": 0.86, + "content": "T \\% \\ T _ { \\mathrm { c h e c k } } = = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 654, + 225, + 668 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 665, + 204, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 121, + 678 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 144, + 665, + 160, + 678 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 161, + 667, + 190, + 678 + ], + "score": 0.86, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 665, + 204, + 678 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 676, + 453, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 121, + 689 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 153, + 676, + 276, + 690 + ], + "score": 1.0, + "content": "if Accuracy(θM ) < Accuracy", + "type": "text" + }, + { + "bbox": [ + 276, + 676, + 309, + 690 + ], + "score": 0.71, + "content": "( \\theta _ { I } ^ { l } ) + \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 676, + 323, + 690 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 324, + 676, + 363, + 689 + ], + "score": 0.57, + "content": "f ^ { l } = T r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 676, + 382, + 690 + ], + "score": 1.0, + "content": "else", + "type": "text" + }, + { + "bbox": [ + 382, + 676, + 402, + 689 + ], + "score": 0.66, + "content": "f ^ { l } =", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 676, + 453, + 690 + ], + "score": 1.0, + "content": "False end if", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 687, + 179, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 121, + 700 + ], + "score": 1.0, + "content": "18:", + "type": "text" + }, + { + "bbox": [ + 145, + 687, + 179, + 699 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 698, + 164, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 122, + 711 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 133, + 698, + 164, + 711 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 166, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 166, + 721 + ], + "score": 1.0, + "content": "20: end while", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 39 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 362, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 363, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 363, + 95 + ], + "score": 1.0, + "content": "entropy between two distributions serves as the distillation loss:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 363, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 99, + 472, + 137 + ], + "lines": [ + { + "bbox": [ + 138, + 99, + 472, + 137 + ], + "spans": [ + { + "bbox": [ + 138, + 99, + 472, + 137 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) = - \\sum _ { ( x , y ) \\in D } \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } Q \\{ y _ { t } = k | y _ { < t } , x ; \\theta _ { T } \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) .", + "type": "interline_equation", + "image_path": "98905039105c29a249e708779460768106ca9672fbee260031319d6596d6fcf3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 99, + 472, + 111.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 111.66666666666667, + 472, + 124.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 124.33333333333334, + 472, + 137.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 216, + 155 + ], + "score": 1.0, + "content": "The difference between", + "type": "text" + }, + { + "bbox": [ + 216, + 142, + 264, + 155 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 142, + 291, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 142, + 351, + 155 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "is that the target distribution of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 153, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 166, + 165 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 153, + 506, + 166 + ], + "score": 1.0, + "content": "is no longer the original one-hot label, but teacher’s output distribution which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "more smooth by assigning non-zero probabilities to more than one word and yields smaller variance", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 392, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 392, + 187 + ], + "score": 1.0, + "content": "in gradients (Hinton et al., 2015). Then the total loss function becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 142, + 506, + 187 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 191, + 422, + 206 + ], + "lines": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "spans": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( D ; \\theta , \\theta _ { T } ) = ( 1 - \\lambda ) \\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta ) + \\lambda \\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) ,", + "type": "interline_equation", + "image_path": "18ce6de7b3599aa51a7291222693686c66e5a401faff4c9a0b5e7942c5deaca2.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 188, + 191, + 422, + 206 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 332, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 333, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 133, + 223 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 212, + 140, + 221 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 210, + 333, + 223 + ], + "score": 1.0, + "content": "is the coefficient to trade off the two loss terms.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 210, + 333, + 223 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 235, + 470, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 471, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 471, + 248 + ], + "score": 1.0, + "content": "3.2 MULTILINGUAL DISTILLATION WITH MULTIPLE TEACHERS AND ONE STUDENT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 122, + 269 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 257, + 131, + 267 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 256, + 405, + 269 + ], + "score": 1.0, + "content": "denote the total number of language pairs in our setting, superscript", + "type": "text" + }, + { + "bbox": [ + 406, + 257, + 435, + 268 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "denote the index", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 175, + 280 + ], + "score": 1.0, + "content": "of language pair,", + "type": "text" + }, + { + "bbox": [ + 175, + 267, + 187, + 278 + ], + "score": 0.88, + "content": "D ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 266, + 326, + 280 + ], + "score": 1.0, + "content": "denote the bilingual corpus for the", + "type": "text" + }, + { + "bbox": [ + 326, + 268, + 330, + 277 + ], + "score": 0.59, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 266, + 400, + 280 + ], + "score": 1.0, + "content": "-th language pair,", + "type": "text" + }, + { + "bbox": [ + 400, + 268, + 415, + 279 + ], + "score": 0.92, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "denote the parameters", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 268, + 291 + ], + "score": 1.0, + "content": "of the (student) multilingual model, and", + "type": "text" + }, + { + "bbox": [ + 269, + 278, + 279, + 290 + ], + "score": 0.86, + "content": "\\theta _ { I } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "denote the parameters of the (teacher) individual model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 122, + 303 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 122, + 290, + 126, + 299 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 288, + 249, + 303 + ], + "score": 1.0, + "content": "-th language pair. Therefore,", + "type": "text" + }, + { + "bbox": [ + 249, + 290, + 306, + 301 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } ( \\mathrm { \\bar { \\it D } } ; \\theta _ { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "denotes the log-likelihood loss on training data", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 116, + 311 + ], + "score": 0.77, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 299, + 138, + 314 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 138, + 300, + 211, + 313 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( \\bar { D ^ { l } } ; \\bar { \\theta } _ { M } , \\theta _ { I } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 299, + 366, + 314 + ], + "score": 1.0, + "content": "denotes the total loss on training data", + "type": "text" + }, + { + "bbox": [ + 366, + 300, + 379, + 311 + ], + "score": 0.88, + "content": "\\bar { D } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 299, + 506, + 314 + ], + "score": 1.0, + "content": ", which consists of the original", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 496, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 482, + 325 + ], + "score": 1.0, + "content": "log-likelihood loss and the distillation loss by matching to the outputs from the teacher model", + "type": "text" + }, + { + "bbox": [ + 482, + 312, + 492, + 325 + ], + "score": 0.88, + "content": "\\theta _ { I } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 311, + 496, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 256, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "The multilingual distillation process is summarized in Algorithm 1. As can be seen in Line 1, our", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "algorithm takes pretrained individual models for each language pair as inputs. Note that those mod-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 347, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 290, + 367 + ], + "score": 1.0, + "content": "els can be pretrained using the same datasets", + "type": "text" + }, + { + "bbox": [ + 290, + 351, + 326, + 364 + ], + "score": 0.93, + "content": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 347, + 507, + 367 + ], + "score": 1.0, + "content": "or different datasets, and they can share the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "same network structure as the multilingual model or use different architectures. For simplification,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "in our experiments, we use the same datasets to pretrain the individual models and they share the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 396 + ], + "score": 1.0, + "content": "same architecture as the multilingual model. In Line 8-9, the multilingual model learns from both", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 336, + 407 + ], + "score": 1.0, + "content": "the ground-truth data and the individual models with loss", + "type": "text" + }, + { + "bbox": [ + 336, + 396, + 358, + 406 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { A L L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 396, + 505, + 407 + ], + "score": 1.0, + "content": "when its accuracy has not surpassed", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 286, + 420 + ], + "score": 1.0, + "content": "the individual model for a certain threshold", + "type": "text" + }, + { + "bbox": [ + 287, + 408, + 294, + 416 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 405, + 457, + 420 + ], + "score": 1.0, + "content": "(which is checked in Line 15-19 every", + "type": "text" + }, + { + "bbox": [ + 457, + 407, + 481, + 418 + ], + "score": 0.91, + "content": "\\tau _ { \\mathrm { c h e c k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "steps", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 418, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 429 + ], + "score": 1.0, + "content": "according to the accuracy in validation set); otherwise, the multilingual model only learns from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 428, + 417, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 327, + 441 + ], + "score": 1.0, + "content": "ground-truth data using the original log-likelihood loss", + "type": "text" + }, + { + "bbox": [ + 327, + 428, + 350, + 439 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { N L L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 428, + 417, + 441 + ], + "score": 1.0, + "content": "(in Line 10-11).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 330, + 507, + 441 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 346, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 347, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 347, + 466 + ], + "score": 1.0, + "content": "Algorithm 1 Knowledge Distillation for Multilingual NMT", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "index", + "bbox": [ + 108, + 468, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 110, + 467, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 110, + 467, + 218, + 483 + ], + "score": 1.0, + "content": "1: Input: Training corpus", + "type": "text" + }, + { + "bbox": [ + 218, + 468, + 253, + 481 + ], + "score": 0.93, + "content": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 467, + 386, + 483 + ], + "score": 1.0, + "content": "and pretrained individual models", + "type": "text" + }, + { + "bbox": [ + 387, + 468, + 419, + 481 + ], + "score": 0.92, + "content": "\\{ \\theta _ { I } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 467, + 434, + 483 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 434, + 470, + 442, + 479 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 467, + 506, + 483 + ], + "score": 1.0, + "content": "language pairs,", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 122, + 479, + 177, + 492 + ], + "score": 1.0, + "content": "learning rate", + "type": "text" + }, + { + "bbox": [ + 177, + 482, + 184, + 492 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 479, + 266, + 492 + ], + "score": 1.0, + "content": ", total training steps", + "type": "text" + }, + { + "bbox": [ + 267, + 480, + 276, + 490 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 479, + 371, + 492 + ], + "score": 1.0, + "content": ", distillation check step", + "type": "text" + }, + { + "bbox": [ + 372, + 480, + 395, + 491 + ], + "score": 0.88, + "content": "\\tau _ { \\mathrm { c h e c k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 479, + 439, + 492 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + }, + { + "bbox": [ + 439, + 482, + 447, + 490 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "of distillation", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 491, + 163, + 503 + ], + "spans": [ + { + "bbox": [ + 123, + 491, + 163, + 503 + ], + "score": 1.0, + "content": "accuracy.", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 111, + 501, + 330, + 514 + ], + "score": 1.0, + "content": "2: Initialize: Randomly initialize multilingual model", + "type": "text" + }, + { + "bbox": [ + 330, + 502, + 345, + 513 + ], + "score": 0.88, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 501, + 451, + 514 + ], + "score": 1.0, + "content": ". Set current training step", + "type": "text" + }, + { + "bbox": [ + 451, + 502, + 477, + 512 + ], + "score": 0.89, + "content": "T = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 501, + 505, + 514 + ], + "score": 1.0, + "content": ", accu-", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 511, + 370, + 526 + ], + "spans": [ + { + "bbox": [ + 122, + 511, + 193, + 526 + ], + "score": 1.0, + "content": "mulated gradient", + "type": "text" + }, + { + "bbox": [ + 193, + 514, + 216, + 524 + ], + "score": 0.91, + "content": "g = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 511, + 282, + 526 + ], + "score": 1.0, + "content": ", distillation flag", + "type": "text" + }, + { + "bbox": [ + 282, + 512, + 322, + 524 + ], + "score": 0.75, + "content": "{ \\bf { \\bar { \\boldsymbol { f } } } } ^ { l } = T r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 511, + 336, + 526 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 336, + 513, + 365, + 525 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 511, + 370, + 526 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 524, + 192, + 535 + ], + "spans": [ + { + "bbox": [ + 111, + 524, + 120, + 535 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 122, + 524, + 148, + 535 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 149, + 524, + 179, + 534 + ], + "score": 0.89, + "content": "T < \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 524, + 192, + 535 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 534, + 173, + 546 + ], + "spans": [ + { + "bbox": [ + 110, + 534, + 121, + 546 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 535, + 173, + 545 + ], + "score": 0.73, + "content": "T = T { + } 1", + "type": "inline_equation" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 545, + 159, + 558 + ], + "spans": [ + { + "bbox": [ + 110, + 545, + 121, + 558 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 546, + 159, + 557 + ], + "score": 0.53, + "content": "g = \\mathbf { 0 }", + "type": "inline_equation" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 556, + 195, + 569 + ], + "spans": [ + { + "bbox": [ + 110, + 557, + 121, + 568 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 135, + 556, + 150, + 569 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 151, + 557, + 180, + 568 + ], + "score": 0.85, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 556, + 195, + 569 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 566, + 412, + 580 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 121, + 580 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 143, + 566, + 343, + 580 + ], + "score": 1.0, + "content": "Randomly sample a mini-batch of sentence pairs", + "type": "text" + }, + { + "bbox": [ + 343, + 567, + 372, + 580 + ], + "score": 0.92, + "content": "( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 566, + 395, + 580 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 395, + 567, + 408, + 578 + ], + "score": 0.88, + "content": "D ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 566, + 412, + 580 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 578, + 214, + 590 + ], + "spans": [ + { + "bbox": [ + 110, + 578, + 121, + 590 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 145, + 578, + 154, + 590 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 155, + 578, + 200, + 590 + ], + "score": 0.67, + "content": "f ^ { l } = = \\dot { T } r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 578, + 214, + 590 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 587, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 110, + 590, + 121, + 601 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 150, + 587, + 334, + 604 + ], + "score": 1.0, + "content": "Compute and accumulate the gradient on loss", + "type": "text" + }, + { + "bbox": [ + 334, + 588, + 424, + 602 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { \\mathrm { A L L } } ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } , \\theta _ { I } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 587, + 428, + 604 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 429, + 589, + 501, + 601 + ], + "score": 0.71, + "content": "g + = \\partial \\mathcal { L } _ { \\mathrm { A L L } } / \\partial \\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 587, + 505, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 599, + 165, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 121, + 612 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 145, + 599, + 165, + 613 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 610, + 496, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 121, + 623 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 151, + 610, + 337, + 624 + ], + "score": 1.0, + "content": "Compute and accumulate the gradient on loss", + "type": "text" + }, + { + "bbox": [ + 338, + 610, + 413, + 623 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { \\mathrm { N L L } } \\big ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 610, + 417, + 624 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 418, + 611, + 492, + 623 + ], + "score": 0.85, + "content": "g + = \\partial \\mathcal { L } _ { \\mathrm { N L L } } / \\partial \\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 610, + 496, + 624 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 622, + 174, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 121, + 635 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 144, + 622, + 174, + 634 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 633, + 169, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 121, + 645 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 134, + 633, + 169, + 644 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 642, + 254, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 121, + 656 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 135, + 642, + 167, + 658 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 167, + 645, + 181, + 655 + ], + "score": 0.73, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 642, + 186, + 658 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 187, + 645, + 254, + 656 + ], + "score": 0.61, + "content": "\\theta _ { M } = \\theta _ { M } - \\eta * g", + "type": "inline_equation" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 654, + 225, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 121, + 667 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 134, + 654, + 144, + 668 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 145, + 656, + 210, + 666 + ], + "score": 0.86, + "content": "T \\% \\ T _ { \\mathrm { c h e c k } } = = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 654, + 225, + 668 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 665, + 204, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 121, + 678 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 144, + 665, + 160, + 678 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 161, + 667, + 190, + 678 + ], + "score": 0.86, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 665, + 204, + 678 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 676, + 453, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 121, + 689 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 153, + 676, + 276, + 690 + ], + "score": 1.0, + "content": "if Accuracy(θM ) < Accuracy", + "type": "text" + }, + { + "bbox": [ + 276, + 676, + 309, + 690 + ], + "score": 0.71, + "content": "( \\theta _ { I } ^ { l } ) + \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 676, + 323, + 690 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 324, + 676, + 363, + 689 + ], + "score": 0.57, + "content": "f ^ { l } = T r u e", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 676, + 382, + 690 + ], + "score": 1.0, + "content": "else", + "type": "text" + }, + { + "bbox": [ + 382, + 676, + 402, + 689 + ], + "score": 0.66, + "content": "f ^ { l } =", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 676, + 453, + 690 + ], + "score": 1.0, + "content": "False end if", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 687, + 179, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 121, + 700 + ], + "score": 1.0, + "content": "18:", + "type": "text" + }, + { + "bbox": [ + 145, + 687, + 179, + 699 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 698, + 164, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 122, + 711 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 133, + 698, + 164, + 711 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 710, + 166, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 166, + 721 + ], + "score": 1.0, + "content": "20: end while", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + } + ], + "index": 39, + "bbox_fs": [ + 106, + 467, + 506, + 721 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 185, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 187, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 187, + 96 + ], + "score": 1.0, + "content": "3.3 DISCUSSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 115 + ], + "score": 1.0, + "content": "Selective Distillation Considering that distillation from a bad teacher model is likely to hurt the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "student model and thus result in inferior accuracy, we selectively use distillation in the training pro-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "cess, as shown in Line 15-19 in Algorithm 1. When the accuracy of multilingual model surpasses the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 282, + 150 + ], + "score": 1.0, + "content": "individual model for the accuracy threshold", + "type": "text" + }, + { + "bbox": [ + 283, + 138, + 290, + 147 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "on a certain language pair, we remove the distillation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "loss and just train the model with original negative log-likelihood loss for this pair. Note that in one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "iteration, one language may not uses the distillation loss; it is very likely in later iterations that this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "language will be distilled again since the multilingual model may become worse than the teacher", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 181, + 504, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 504, + 192 + ], + "score": 1.0, + "content": "model for this language. Therefore, we call this mechanism as selective distillation. We also verify", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 414, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 414, + 204 + ], + "score": 1.0, + "content": "the effectiveness of the selective distillation in experiment part (Section 4.3).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Top-K Distillation It is burdensome to load all the teacher models in the GPU memory for distil-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 226, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 241 + ], + "score": 1.0, + "content": "lation considering there are dozens or even hundreds of language pairs in the multilingual setting.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "Alternatively, we first generate the output probability distribution of each teacher model for the sen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "tence pairs offline, and then just load the top-K probabilities of the distribution into memory and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "normalize them so that they sum to 1 for distillation. This can reduce the memory cost again from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 155, + 284 + ], + "score": 1.0, + "content": "the scale of", + "type": "text" + }, + { + "bbox": [ + 155, + 271, + 170, + 284 + ], + "score": 0.88, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "(the vocabulary size) to K. We also study in Section 4.3 that top-K distribution can", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 282, + 410, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 410, + 295 + ], + "score": 1.0, + "content": "result in comparable or better distillation accuracy than the full distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 312, + 200, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 201, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 201, + 326 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 504, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "We test our proposed method on three public datasets: IWSLT, WMT, and Ted talk translation tasks.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 348, + 496, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 496, + 361 + ], + "score": 1.0, + "content": "We first describe experimental settings, report results, and conduct some analyses on our method.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 375, + 174, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 176, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 176, + 388 + ], + "score": 1.0, + "content": "4.1 SETTINGS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 462, + 408 + ], + "score": 1.0, + "content": "Datasets We use three datasets in our experiment. IWSLT: We collect 12 languages", + "type": "text" + }, + { + "bbox": [ + 463, + 398, + 473, + 406 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "English", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 408, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 419 + ], + "score": 1.0, + "content": "translation pairs from IWSLT evaluation campaign2 from year 2014 to 2016. WMT: We collect 6", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 147, + 432 + ], + "score": 1.0, + "content": "languages", + "type": "text" + }, + { + "bbox": [ + 147, + 419, + 157, + 429 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "English translation pairs from WMT translation task3. Ted Talk: We use the common", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "corpus of TED talk which contains translations between multiple languages (Ye et al., 2018). We se-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "lect 44 languages in this corpus that has sufficient data for our experiments. More descriptions about", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "the three datasets can be found in Appendix (Section 1). We also list the language code according", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "to ISO-639-1 standard4 for the languages used in our experiments in Appendix (Section 2). All the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 471, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 471, + 505, + 487 + ], + "score": 1.0, + "content": "sentences are first tokenized with moses tokenizer5 and then segmented into subword symbols using", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Byte Pair Encoding (BPE) (Sennrich et al., 2016). We learn the BPE merge operations across all", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "the languages and keep the output vocabulary of the teacher and student model the same, to ensure", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 505, + 200, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 200, + 519 + ], + "score": 1.0, + "content": "knowledge distillation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "Model Configurations We use the Transformer (Vaswani et al., 2017) as the basic NMT model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "structure since it achieves state-of-the-art accuracy and becomes a popular choice for recent NMT", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "researches. We use the same model configuration for individual models and the multilingual model.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 317, + 577 + ], + "score": 1.0, + "content": "For IWSLT and Ted talk tasks, the model hidden size", + "type": "text" + }, + { + "bbox": [ + 318, + 564, + 342, + 576 + ], + "score": 0.91, + "content": "d _ { \\mathrm { m o d e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 564, + 446, + 577 + ], + "score": 1.0, + "content": ", feed-forward hidden size", + "type": "text" + }, + { + "bbox": [ + 447, + 565, + 458, + 575 + ], + "score": 0.87, + "content": "d _ { \\mathrm { f f } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ", number of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "layer are 256, 1024 and 2, while for WMT task, the three parameters are 512, 2048 and 6 respectively", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 587, + 277, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 277, + 598 + ], + "score": 1.0, + "content": "considering its large scale of training data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Training and Inference For the multilingual model training, we up sample the data of each lan-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "guage to make all languages have the same size of data. The mini batch size is set to roughly 8192", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "tokens. We train the individual models with 4 NVIDIA Tesla V100 GPU cards and multilingual", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "models with 8 of them. We follow the default parameters of Adam optimizer (Kingma & Ba, 2014)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "and learning rate schedule in Vaswani et al. (2017). For the individual models, we use 0.2 dropout,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "while for multilingual models, we use 0.1 dropout according to the validation performance. For", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 689, + 494, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 687, + 194, + 700 + ], + "spans": [ + { + "bbox": [ + 118, + 687, + 194, + 700 + ], + "score": 1.0, + "content": "2https://wit3.fbk.eu/", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 697, + 495, + 712 + ], + "spans": [ + { + "bbox": [ + 117, + 697, + 495, + 712 + ], + "score": 1.0, + "content": "3http://www.statmt.org/wmt16/translation-task.html, http://www.statmt.org/wmt17/translation-task.html", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 708, + 334, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 334, + 723 + ], + "score": 1.0, + "content": "4https://www.loc.gov/standards/iso639-2/php/code list.php", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 442, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 442, + 733 + ], + "score": 1.0, + "content": "5https://github.com/moses-smt/mosesdecoder/blob/master/scripts/tokenizer/tokenizer.perl", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 185, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 187, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 187, + 96 + ], + "score": 1.0, + "content": "3.3 DISCUSSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 115 + ], + "score": 1.0, + "content": "Selective Distillation Considering that distillation from a bad teacher model is likely to hurt the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "student model and thus result in inferior accuracy, we selectively use distillation in the training pro-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "cess, as shown in Line 15-19 in Algorithm 1. When the accuracy of multilingual model surpasses the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 282, + 150 + ], + "score": 1.0, + "content": "individual model for the accuracy threshold", + "type": "text" + }, + { + "bbox": [ + 283, + 138, + 290, + 147 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "on a certain language pair, we remove the distillation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "loss and just train the model with original negative log-likelihood loss for this pair. Note that in one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "iteration, one language may not uses the distillation loss; it is very likely in later iterations that this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "language will be distilled again since the multilingual model may become worse than the teacher", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 181, + 504, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 504, + 192 + ], + "score": 1.0, + "content": "model for this language. Therefore, we call this mechanism as selective distillation. We also verify", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 414, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 414, + 204 + ], + "score": 1.0, + "content": "the effectiveness of the selective distillation in experiment part (Section 4.3).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 104, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Top-K Distillation It is burdensome to load all the teacher models in the GPU memory for distil-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 226, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 241 + ], + "score": 1.0, + "content": "lation considering there are dozens or even hundreds of language pairs in the multilingual setting.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "Alternatively, we first generate the output probability distribution of each teacher model for the sen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "tence pairs offline, and then just load the top-K probabilities of the distribution into memory and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "normalize them so that they sum to 1 for distillation. This can reduce the memory cost again from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 155, + 284 + ], + "score": 1.0, + "content": "the scale of", + "type": "text" + }, + { + "bbox": [ + 155, + 271, + 170, + 284 + ], + "score": 0.88, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "(the vocabulary size) to K. We also study in Section 4.3 that top-K distribution can", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 282, + 410, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 410, + 295 + ], + "score": 1.0, + "content": "result in comparable or better distillation accuracy than the full distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 216, + 505, + 295 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 312, + 200, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 201, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 201, + 326 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "list", + "bbox": [ + 107, + 337, + 504, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "We test our proposed method on three public datasets: IWSLT, WMT, and Ted talk translation tasks.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 348, + 496, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 496, + 361 + ], + "score": 1.0, + "content": "We first describe experimental settings, report results, and conduct some analyses on our method.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 336, + 504, + 361 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 375, + 174, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 176, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 176, + 388 + ], + "score": 1.0, + "content": "4.1 SETTINGS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 462, + 408 + ], + "score": 1.0, + "content": "Datasets We use three datasets in our experiment. IWSLT: We collect 12 languages", + "type": "text" + }, + { + "bbox": [ + 463, + 398, + 473, + 406 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "English", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 408, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 419 + ], + "score": 1.0, + "content": "translation pairs from IWSLT evaluation campaign2 from year 2014 to 2016. WMT: We collect 6", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 147, + 432 + ], + "score": 1.0, + "content": "languages", + "type": "text" + }, + { + "bbox": [ + 147, + 419, + 157, + 429 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "English translation pairs from WMT translation task3. Ted Talk: We use the common", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "corpus of TED talk which contains translations between multiple languages (Ye et al., 2018). We se-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "lect 44 languages in this corpus that has sufficient data for our experiments. More descriptions about", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "the three datasets can be found in Appendix (Section 1). We also list the language code according", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "to ISO-639-1 standard4 for the languages used in our experiments in Appendix (Section 2). All the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 471, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 471, + 505, + 487 + ], + "score": 1.0, + "content": "sentences are first tokenized with moses tokenizer5 and then segmented into subword symbols using", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Byte Pair Encoding (BPE) (Sennrich et al., 2016). We learn the BPE merge operations across all", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "the languages and keep the output vocabulary of the teacher and student model the same, to ensure", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 505, + 200, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 200, + 519 + ], + "score": 1.0, + "content": "knowledge distillation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 396, + 506, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "Model Configurations We use the Transformer (Vaswani et al., 2017) as the basic NMT model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "structure since it achieves state-of-the-art accuracy and becomes a popular choice for recent NMT", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "researches. We use the same model configuration for individual models and the multilingual model.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 317, + 577 + ], + "score": 1.0, + "content": "For IWSLT and Ted talk tasks, the model hidden size", + "type": "text" + }, + { + "bbox": [ + 318, + 564, + 342, + 576 + ], + "score": 0.91, + "content": "d _ { \\mathrm { m o d e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 564, + 446, + 577 + ], + "score": 1.0, + "content": ", feed-forward hidden size", + "type": "text" + }, + { + "bbox": [ + 447, + 565, + 458, + 575 + ], + "score": 0.87, + "content": "d _ { \\mathrm { f f } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ", number of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "layer are 256, 1024 and 2, while for WMT task, the three parameters are 512, 2048 and 6 respectively", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 587, + 277, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 277, + 598 + ], + "score": 1.0, + "content": "considering its large scale of training data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 531, + 506, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Training and Inference For the multilingual model training, we up sample the data of each lan-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "guage to make all languages have the same size of data. The mini batch size is set to roughly 8192", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "tokens. We train the individual models with 4 NVIDIA Tesla V100 GPU cards and multilingual", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "models with 8 of them. We follow the default parameters of Adam optimizer (Kingma & Ba, 2014)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "and learning rate schedule in Vaswani et al. (2017). For the individual models, we use 0.2 dropout,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "while for multilingual models, we use 0.1 dropout according to the validation performance. For", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 227, + 96 + ], + "score": 1.0, + "content": "knowledge distillation, we set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 227, + 83, + 284, + 94 + ], + "score": 0.91, + "content": "\\mathcal { T } _ { \\mathrm { c h e c k } } = 3 0 0 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 284, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "steps (nearly two training epochs), the accuracy thresh-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 122, + 106 + ], + "score": 1.0, + "content": "old", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 123, + 94, + 151, + 104 + ], + "score": 0.89, + "content": "\\tau = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 152, + 92, + 316, + 106 + ], + "score": 1.0, + "content": "BLEU score, the distillation coefficient", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 317, + 94, + 353, + 104 + ], + "score": 0.92, + "content": "\\lambda = 0 . 5", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 354, + 92, + 505, + 106 + ], + "score": 1.0, + "content": "and the number of teacher’s outputs", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 138, + 115 + ], + "score": 0.9, + "content": "K = 8", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 139, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "according to the validation performance. During inference, we decode with beam search", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 273, + 128 + ], + "score": 1.0, + "content": "and set beam size to 4 and length penalty", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 273, + 116, + 307, + 126 + ], + "score": 0.9, + "content": "\\alpha = 1 . 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 307, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "for all the languages. We evaluate the translation", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "score": 1.0, + "content": "quality by tokenized case sensitive BLEU (Papineni et al., 2002) with multi-bleu.pl6. Our codes are", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 465, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 465, + 150 + ], + "score": 1.0, + "content": "implemented based on fairseq7 and we will release the codes once the paper is published.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 610, + 506, + 679 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 227, + 96 + ], + "score": 1.0, + "content": "knowledge distillation, we set", + "type": "text" + }, + { + "bbox": [ + 227, + 83, + 284, + 94 + ], + "score": 0.91, + "content": "\\mathcal { T } _ { \\mathrm { c h e c k } } = 3 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "steps (nearly two training epochs), the accuracy thresh-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 122, + 106 + ], + "score": 1.0, + "content": "old", + "type": "text" + }, + { + "bbox": [ + 123, + 94, + 151, + 104 + ], + "score": 0.89, + "content": "\\tau = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 92, + 316, + 106 + ], + "score": 1.0, + "content": "BLEU score, the distillation coefficient", + "type": "text" + }, + { + "bbox": [ + 317, + 94, + 353, + 104 + ], + "score": 0.92, + "content": "\\lambda = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 92, + 505, + 106 + ], + "score": 1.0, + "content": "and the number of teacher’s outputs", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 138, + 115 + ], + "score": 0.9, + "content": "K = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "according to the validation performance. During inference, we decode with beam search", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 273, + 128 + ], + "score": 1.0, + "content": "and set beam size to 4 and length penalty", + "type": "text" + }, + { + "bbox": [ + 273, + 116, + 307, + 126 + ], + "score": 0.9, + "content": "\\alpha = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "for all the languages. We evaluate the translation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "score": 1.0, + "content": "quality by tokenized case sensitive BLEU (Papineni et al., 2002) with multi-bleu.pl6. Our codes are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 465, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 465, + 150 + ], + "score": 1.0, + "content": "implemented based on fairseq7 and we will release the codes once the paper is published.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 145, + 158, + 466, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 158, + 466, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 158, + 466, + 300 + ], + "spans": [ + { + "bbox": [ + 145, + 158, + 466, + 300 + ], + "score": 0.983, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Ar→En31.1929.24 (-1.95)31.25 (+0.06)+2.01
Cs-→En28.0426.09 (-1.95)27.09 (-0.95)+1.00
De→En33.0732.74 (-0.33)34.02 (+0.95)+1.28
He-→En37.4235.18 (-2.24)37.33 (-0.09)+2.15
N1-→En35.9436.54 (+0.60)37.69 (+1.75)+1.15
Pt-→En44.3043.49 (-0.81)44.69 (+0.39)+1.20
Ro-→En36.9236.41 1 (-0.51)38.01 (+1.09)+1.60
Ru→En23.0423.12 (+0.08)23.76 (+0.72)+0.64
Th→En18.2419.33 3 (+1.09)19.90 (+1.66)+0.57
Tr→En22.7422.42 (-0.32)23.75 (+1.01)+1.33
Vi→En26.0626.37 (+0.31)27.04 4 (+0.98)+0.67
Zh→En19.4418.82 2 (-0.62)19.52 (+0.08)+0.70
", + "type": "table", + "image_path": "f97f47348a1a9e624638458e36d561252c8a01eec1f6564f47e4322bcffd6020.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 145, + 158, + 466, + 205.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 205.33333333333334, + 466, + 252.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 252.66666666666669, + 466, + 300.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 308, + 505, + 343 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 267, + 322 + ], + "score": 1.0, + "content": "Table 1: BLEU scores of 12 languages", + "type": "text" + }, + { + "bbox": [ + 267, + 310, + 277, + 319 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 307, + 505, + 322 + ], + "score": 1.0, + "content": "English on the IWLST dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 435, + 332 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 320, + 445, + 330 + ], + "score": 0.7, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 331, + 390, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 390, + 343 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "table", + "bbox": [ + 145, + 357, + 466, + 500 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 357, + 466, + 500 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 357, + 466, + 500 + ], + "spans": [ + { + "bbox": [ + 145, + 357, + 466, + 500 + ], + "score": 0.982, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En→Ar13.6712.73 (-0.94)13.80 (+0.13)+1.07
En→Cs17.8117.33 (-0.48)18.69 (+0.88)+1.37
En→De26.1325.16 (-0.97)26.76 (+0.63)+1.60
En→He24.1522.73 (-1.42)24.42 (+0.27)+1.69
En-→Nl30.8829.51 (-1.37)30.52 (-0.36)+1.01
En→Pt37.6335.93 (-1.70)37.23 (-0.40)+1.30
En→Ro27.2325.68 (-1.55)27.11 (-0.12)+1.42
En→Ru17.4016.26 (-1.14)17.42 (+0.02)+1.16
En→Th26.4527.18 (+0.73)27.62 (+1.17)+0.45
En→Tr12.4711.63 (-0.84)12.84 (+0.37)+1.21
En→Vi27.8828.04 (+0.16)28.69 (+0.81)+0.65
En→Zh10.9510.12 (-0.83)10.41 (-0.54)+0.29
", + "type": "table", + "image_path": "197ae6ebf249d157f37aa1475bb473851b9517549e62e217f46a89e238c400a0.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 145, + 357, + 466, + 404.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 404.6666666666667, + 466, + 452.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 452.33333333333337, + 466, + 500.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 508, + 505, + 542 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 244, + 522 + ], + "score": 1.0, + "content": "Table 2: BLEU scores of English", + "type": "text" + }, + { + "bbox": [ + 244, + 509, + 265, + 519 + ], + "score": 0.85, + "content": " 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 507, + 505, + 522 + ], + "score": 1.0, + "content": "languages on the IWLST dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 435, + 532 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 520, + 445, + 530 + ], + "score": 0.7, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 531, + 390, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 390, + 542 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 107, + 561, + 170, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 171, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 171, + 574 + ], + "score": 1.0, + "content": "4.2 RESULTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Results on IWSLT Multilingual NMT usually consists of three settings: many-to-one, one-to-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "many and many-to-many. As many-many translation can be bridged though many-to-one and one-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "score": 1.0, + "content": "to-many setting, we just conduct the experiments on many-to-one and one-to-many settings. We first", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 236, + 627 + ], + "score": 1.0, + "content": "show the results of 12 languages", + "type": "text" + }, + { + "bbox": [ + 237, + 616, + 247, + 625 + ], + "score": 0.79, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "English translations on the IWLST dataset are shown in Table 1.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "There are 3 methods for comparison: 1) Individual, each language pair with a separate model; 2)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Multi-Baseline, the baseline multilingual model, simply training all the language pairs in one model;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "score": 1.0, + "content": "3) Multi-Distillation, our multilingual model with knowledge distillation. We have several obser-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 657, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 673 + ], + "score": 1.0, + "content": "vations. First, the multilingual baseline performs worse than individual models on most languages.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "score": 1.0, + "content": "The only exception is the languages with small training data, which benefit from data augmentation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "in multilingual training. Second, our method outperforms the multilingual baseline for all the lan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "guages, demonstrating the effectiveness of our framework for multilingual NMT. More importantly,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 711, + 441, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 440, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 440, + 722 + ], + "score": 1.0, + "content": "6https://github.com/moses-smt/mosesdecoder/blob/master/scripts/generic/multi-bleu.perl", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 720, + 248, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 248, + 733 + ], + "score": 1.0, + "content": "7https://github.com/pytorch/fairseq", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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, + 504, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ], + "lines_deleted": true + }, + { + "type": "table", + "bbox": [ + 145, + 158, + 466, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 158, + 466, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 158, + 466, + 300 + ], + "spans": [ + { + "bbox": [ + 145, + 158, + 466, + 300 + ], + "score": 0.983, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Ar→En31.1929.24 (-1.95)31.25 (+0.06)+2.01
Cs-→En28.0426.09 (-1.95)27.09 (-0.95)+1.00
De→En33.0732.74 (-0.33)34.02 (+0.95)+1.28
He-→En37.4235.18 (-2.24)37.33 (-0.09)+2.15
N1-→En35.9436.54 (+0.60)37.69 (+1.75)+1.15
Pt-→En44.3043.49 (-0.81)44.69 (+0.39)+1.20
Ro-→En36.9236.41 1 (-0.51)38.01 (+1.09)+1.60
Ru→En23.0423.12 (+0.08)23.76 (+0.72)+0.64
Th→En18.2419.33 3 (+1.09)19.90 (+1.66)+0.57
Tr→En22.7422.42 (-0.32)23.75 (+1.01)+1.33
Vi→En26.0626.37 (+0.31)27.04 4 (+0.98)+0.67
Zh→En19.4418.82 2 (-0.62)19.52 (+0.08)+0.70
", + "type": "table", + "image_path": "f97f47348a1a9e624638458e36d561252c8a01eec1f6564f47e4322bcffd6020.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 145, + 158, + 466, + 205.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 205.33333333333334, + 466, + 252.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 252.66666666666669, + 466, + 300.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 308, + 505, + 343 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 267, + 322 + ], + "score": 1.0, + "content": "Table 1: BLEU scores of 12 languages", + "type": "text" + }, + { + "bbox": [ + 267, + 310, + 277, + 319 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 307, + 505, + 322 + ], + "score": 1.0, + "content": "English on the IWLST dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 435, + 332 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 320, + 445, + 330 + ], + "score": 0.7, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 331, + 390, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 390, + 343 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "table", + "bbox": [ + 145, + 357, + 466, + 500 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 357, + 466, + 500 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 357, + 466, + 500 + ], + "spans": [ + { + "bbox": [ + 145, + 357, + 466, + 500 + ], + "score": 0.982, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En→Ar13.6712.73 (-0.94)13.80 (+0.13)+1.07
En→Cs17.8117.33 (-0.48)18.69 (+0.88)+1.37
En→De26.1325.16 (-0.97)26.76 (+0.63)+1.60
En→He24.1522.73 (-1.42)24.42 (+0.27)+1.69
En-→Nl30.8829.51 (-1.37)30.52 (-0.36)+1.01
En→Pt37.6335.93 (-1.70)37.23 (-0.40)+1.30
En→Ro27.2325.68 (-1.55)27.11 (-0.12)+1.42
En→Ru17.4016.26 (-1.14)17.42 (+0.02)+1.16
En→Th26.4527.18 (+0.73)27.62 (+1.17)+0.45
En→Tr12.4711.63 (-0.84)12.84 (+0.37)+1.21
En→Vi27.8828.04 (+0.16)28.69 (+0.81)+0.65
En→Zh10.9510.12 (-0.83)10.41 (-0.54)+0.29
", + "type": "table", + "image_path": "197ae6ebf249d157f37aa1475bb473851b9517549e62e217f46a89e238c400a0.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 145, + 357, + 466, + 404.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 404.6666666666667, + 466, + 452.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 452.33333333333337, + 466, + 500.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 508, + 505, + 542 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 244, + 522 + ], + "score": 1.0, + "content": "Table 2: BLEU scores of English", + "type": "text" + }, + { + "bbox": [ + 244, + 509, + 265, + 519 + ], + "score": 0.85, + "content": " 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 507, + 505, + 522 + ], + "score": 1.0, + "content": "languages on the IWLST dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 435, + 532 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 520, + 445, + 530 + ], + "score": 0.7, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 531, + 390, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 390, + 542 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 107, + 561, + 170, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 171, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 171, + 574 + ], + "score": 1.0, + "content": "4.2 RESULTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Results on IWSLT Multilingual NMT usually consists of three settings: many-to-one, one-to-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "many and many-to-many. As many-many translation can be bridged though many-to-one and one-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "score": 1.0, + "content": "to-many setting, we just conduct the experiments on many-to-one and one-to-many settings. We first", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 236, + 627 + ], + "score": 1.0, + "content": "show the results of 12 languages", + "type": "text" + }, + { + "bbox": [ + 237, + 616, + 247, + 625 + ], + "score": 0.79, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "English translations on the IWLST dataset are shown in Table 1.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "There are 3 methods for comparison: 1) Individual, each language pair with a separate model; 2)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Multi-Baseline, the baseline multilingual model, simply training all the language pairs in one model;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "score": 1.0, + "content": "3) Multi-Distillation, our multilingual model with knowledge distillation. We have several obser-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 657, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 673 + ], + "score": 1.0, + "content": "vations. First, the multilingual baseline performs worse than individual models on most languages.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "score": 1.0, + "content": "The only exception is the languages with small training data, which benefit from data augmentation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "in multilingual training. Second, our method outperforms the multilingual baseline for all the lan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "guages, demonstrating the effectiveness of our framework for multilingual NMT. More importantly,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "compared with the individual models, our method achieves similar or even better accuracy (better", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 498, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 258, + 106 + ], + "score": 1.0, + "content": "on 10 out of 12 languages), with only", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 258, + 93, + 280, + 106 + ], + "score": 0.5, + "content": "1 / 1 2", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 280, + 93, + 498, + 106 + ], + "score": 1.0, + "content": "model parameters of the sum of all individual models.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 582, + 506, + 705 + ] + } + ] + }, + { + "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": "compared with the individual models, our method achieves similar or even better accuracy (better", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 498, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 258, + 106 + ], + "score": 1.0, + "content": "on 10 out of 12 languages), with only", + "type": "text" + }, + { + "bbox": [ + 258, + 93, + 280, + 106 + ], + "score": 0.5, + "content": "1 / 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 93, + 498, + 106 + ], + "score": 1.0, + "content": "model parameters of the sum of all individual models.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "One-to-many setting is usually considered as more difficult than many-to-one setting, as it contains", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "score": 1.0, + "content": "different target languages which is hard to handle. Here we show how our method performs in one-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "to-many setting in Table 2. It can be seen that our method can maintain the accuracy (even better", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "on most languages) compared with the individual models. We still improve over the multilingual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 455, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 455, + 166 + ], + "score": 1.0, + "content": "baseline by nearly 1 BLEU score, which demonstrates the effectiveness of our method.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "table", + "bbox": [ + 145, + 177, + 466, + 260 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 177, + 466, + 260 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 177, + 466, + 260 + ], + "spans": [ + { + "bbox": [ + 145, + 177, + 466, + 260 + ], + "score": 0.978, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Cs-En25.2923.82 (-1.47)25.37 (+0.08)+1.55
De-En34.4434.21 (-0.23)36.22 (+1.78)+2.01
Fi-En21.2322.99 (+1.76)24.32 (+3.09)+1.33
Lv-En16.2616.25 (-0.01)18.43 (+2.17)+2.18
Ro-En35.8135.04 (-0.77)36.51 (+0.70)+1.47
Ru-En29.3928.92 (-0.47)30.82 (+1.43)+1.90
", + "type": "table", + "image_path": "1e6b0fc5298c46bd676cdfc3a200da9ed2ac5bb7b160bee7f11c50f69406505d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 145, + 177, + 466, + 204.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 204.66666666666666, + 466, + 232.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 232.33333333333331, + 466, + 260.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 268, + 504, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 266, + 281 + ], + "score": 1.0, + "content": "Table 3: BLEU scores of 6 languages", + "type": "text" + }, + { + "bbox": [ + 266, + 270, + 276, + 278 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "English on the WMT dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 435, + 292 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 280, + 445, + 290 + ], + "score": 0.69, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 290, + 391, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 391, + 303 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "table", + "bbox": [ + 145, + 321, + 466, + 405 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 321, + 466, + 405 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 321, + 466, + 405 + ], + "spans": [ + { + "bbox": [ + 145, + 321, + 466, + 405 + ], + "score": 0.981, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En-Cs22.5821.39 (-1.19)23.10 (+0.62)+1.81
En-De31.4030.08 3 (-1.32)31.42 (+0.02)+1.34
En-Fi22.0819.52 (-2.56)21.56 (-0.52)+2.04
En-Lv14.9214.51 (-0.41)15.32 (+0.40)+0.81
En-Ro31.6729.88 (-1.79)31.39 (-0.28)+1.51
En-Ru24.3622.96 (-1.40)24.02 (-0.34)+1.06
", + "type": "table", + "image_path": "5bc038732651465854e4327de5f088fdabda8f9db3965080476f0f77dcb1c196.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 145, + 321, + 466, + 349.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 349.0, + 466, + 377.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 145, + 377.0, + 466, + 405.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 164, + 413, + 445, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 164, + 412, + 446, + 426 + ], + "spans": [ + { + "bbox": [ + 164, + 412, + 298, + 426 + ], + "score": 1.0, + "content": "Table 4: BLEU scores of English", + "type": "text" + }, + { + "bbox": [ + 298, + 414, + 317, + 424 + ], + "score": 0.61, + "content": " 6", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 412, + 446, + 426 + ], + "score": 1.0, + "content": "languages on the WMT dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 298, + 459 + ], + "score": 1.0, + "content": "Results on WMT The results of 6 languages", + "type": "text" + }, + { + "bbox": [ + 298, + 448, + 308, + 457 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "English translations on the WMT dataset are re-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "ported in Table 3. It can be seen that the multi-baseline model performs worse than the individual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "models on 5 out of 6 languages, while in contrast, our method performs better on all the 6 languages.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Particularly, our method improves the accuracy of some languages with more than 2 BLEU scores", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "over individual models. The results of one-to-many setting on WMT dataset are reported in Table 4.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "It can be seen that our method outperforms the multilingual baseline by more than 1 BLEU score on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 511, + 206, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 206, + 526 + ], + "score": 1.0, + "content": "nearly all the languages.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + }, + { + "type": "table", + "bbox": [ + 108, + 536, + 504, + 691 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 536, + 504, + 691 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 536, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 108, + 536, + 504, + 691 + ], + "score": 0.983, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
△1-1.50-9.461.884.02-0.100.800.238.200.096.4415.8
△21.731.421.131.821.681.451.630.771.831.101.24
LanguageFrGlHeHiHrHuHyIdItJaKa
△10.1319.26-1.5910.161.46-0.118.871.36-0.56-0.0311.20
△21.481.582.261.071.211.800.921.481.480.951.55
LanguageKoKuLtMkMyNbN1PIPtbrPtRo
△1-0.427.754.4610.727.6314.07-0.201.320.138.760.66
△21.431.551.690.801.311.471.680.801.451.981.70
LanguageRuSkS1SqSrSvThTrUkViZh
△10.654.2311.875.031.582.391.17-0.792.040.156.83
△20.990.931.151.681.441.000.621.880.980.770.58
", + "type": "table", + "image_path": "1b347e2be1d6fa12f6cd5a1f003e3a4a6d4d62c2e8358b2136ae3c4e73381b74.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 108, + 536, + 504, + 587.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 587.6666666666666, + 504, + 639.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 639.3333333333333, + 504, + 690.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 699, + 502, + 722 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 698, + 503, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 439, + 711 + ], + "score": 1.0, + "content": "Table 5: BLEU scores improvements of our method over the individual models", + "type": "text" + }, + { + "bbox": [ + 439, + 699, + 458, + 710 + ], + "score": 0.78, + "content": "( \\Delta _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 503, + 711 + ], + "score": 1.0, + "content": "and multi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 710, + 405, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 169, + 722 + ], + "score": 1.0, + "content": "baseline model", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 190, + 721 + ], + "score": 0.84, + "content": "\\left( \\Delta _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 710, + 271, + 722 + ], + "score": 1.0, + "content": "on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 271, + 711, + 281, + 720 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 710, + 405, + 722 + ], + "score": 1.0, + "content": "English in the Ted talk dataset.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "One-to-many setting is usually considered as more difficult than many-to-one setting, as it contains", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "score": 1.0, + "content": "different target languages which is hard to handle. Here we show how our method performs in one-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "to-many setting in Table 2. It can be seen that our method can maintain the accuracy (even better", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "on most languages) compared with the individual models. We still improve over the multilingual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 455, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 455, + 166 + ], + "score": 1.0, + "content": "baseline by nearly 1 BLEU score, which demonstrates the effectiveness of our method.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 111, + 506, + 166 + ] + }, + { + "type": "table", + "bbox": [ + 145, + 177, + 466, + 260 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 177, + 466, + 260 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 177, + 466, + 260 + ], + "spans": [ + { + "bbox": [ + 145, + 177, + 466, + 260 + ], + "score": 0.978, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Cs-En25.2923.82 (-1.47)25.37 (+0.08)+1.55
De-En34.4434.21 (-0.23)36.22 (+1.78)+2.01
Fi-En21.2322.99 (+1.76)24.32 (+3.09)+1.33
Lv-En16.2616.25 (-0.01)18.43 (+2.17)+2.18
Ro-En35.8135.04 (-0.77)36.51 (+0.70)+1.47
Ru-En29.3928.92 (-0.47)30.82 (+1.43)+1.90
", + "type": "table", + "image_path": "1e6b0fc5298c46bd676cdfc3a200da9ed2ac5bb7b160bee7f11c50f69406505d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 145, + 177, + 466, + 204.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 204.66666666666666, + 466, + 232.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 232.33333333333331, + 466, + 260.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 268, + 504, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 266, + 281 + ], + "score": 1.0, + "content": "Table 3: BLEU scores of 6 languages", + "type": "text" + }, + { + "bbox": [ + 266, + 270, + 276, + 278 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "English on the WMT dataset. The BLEU scores in ()", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 435, + 292 + ], + "score": 1.0, + "content": "represent the difference between the multilingual model and individual models.", + "type": "text" + }, + { + "bbox": [ + 435, + 280, + 445, + 290 + ], + "score": 0.69, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 290, + 391, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 391, + 303 + ], + "score": 1.0, + "content": "improvements of our multi-distillation method over the multi-baseline.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "table", + "bbox": [ + 145, + 321, + 466, + 405 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 321, + 466, + 405 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 321, + 466, + 405 + ], + "spans": [ + { + "bbox": [ + 145, + 321, + 466, + 405 + ], + "score": 0.981, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En-Cs22.5821.39 (-1.19)23.10 (+0.62)+1.81
En-De31.4030.08 3 (-1.32)31.42 (+0.02)+1.34
En-Fi22.0819.52 (-2.56)21.56 (-0.52)+2.04
En-Lv14.9214.51 (-0.41)15.32 (+0.40)+0.81
En-Ro31.6729.88 (-1.79)31.39 (-0.28)+1.51
En-Ru24.3622.96 (-1.40)24.02 (-0.34)+1.06
", + "type": "table", + "image_path": "5bc038732651465854e4327de5f088fdabda8f9db3965080476f0f77dcb1c196.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 145, + 321, + 466, + 349.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 349.0, + 466, + 377.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 145, + 377.0, + 466, + 405.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 164, + 413, + 445, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 164, + 412, + 446, + 426 + ], + "spans": [ + { + "bbox": [ + 164, + 412, + 298, + 426 + ], + "score": 1.0, + "content": "Table 4: BLEU scores of English", + "type": "text" + }, + { + "bbox": [ + 298, + 414, + 317, + 424 + ], + "score": 0.61, + "content": " 6", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 412, + 446, + 426 + ], + "score": 1.0, + "content": "languages on the WMT dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 298, + 459 + ], + "score": 1.0, + "content": "Results on WMT The results of 6 languages", + "type": "text" + }, + { + "bbox": [ + 298, + 448, + 308, + 457 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "English translations on the WMT dataset are re-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "ported in Table 3. It can be seen that the multi-baseline model performs worse than the individual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "models on 5 out of 6 languages, while in contrast, our method performs better on all the 6 languages.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Particularly, our method improves the accuracy of some languages with more than 2 BLEU scores", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "over individual models. The results of one-to-many setting on WMT dataset are reported in Table 4.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "It can be seen that our method outperforms the multilingual baseline by more than 1 BLEU score on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 511, + 206, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 206, + 526 + ], + "score": 1.0, + "content": "nearly all the languages.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 446, + 506, + 526 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 536, + 504, + 691 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 536, + 504, + 691 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 536, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 108, + 536, + 504, + 691 + ], + "score": 0.983, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
△1-1.50-9.461.884.02-0.100.800.238.200.096.4415.8
△21.731.421.131.821.681.451.630.771.831.101.24
LanguageFrGlHeHiHrHuHyIdItJaKa
△10.1319.26-1.5910.161.46-0.118.871.36-0.56-0.0311.20
△21.481.582.261.071.211.800.921.481.480.951.55
LanguageKoKuLtMkMyNbN1PIPtbrPtRo
△1-0.427.754.4610.727.6314.07-0.201.320.138.760.66
△21.431.551.690.801.311.471.680.801.451.981.70
LanguageRuSkS1SqSrSvThTrUkViZh
△10.654.2311.875.031.582.391.17-0.792.040.156.83
△20.990.931.151.681.441.000.621.880.980.770.58
", + "type": "table", + "image_path": "1b347e2be1d6fa12f6cd5a1f003e3a4a6d4d62c2e8358b2136ae3c4e73381b74.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 108, + 536, + 504, + 587.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 587.6666666666666, + 504, + 639.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 639.3333333333333, + 504, + 690.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 699, + 502, + 722 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 698, + 503, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 439, + 711 + ], + "score": 1.0, + "content": "Table 5: BLEU scores improvements of our method over the individual models", + "type": "text" + }, + { + "bbox": [ + 439, + 699, + 458, + 710 + ], + "score": 0.78, + "content": "( \\Delta _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 503, + 711 + ], + "score": 1.0, + "content": "and multi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 710, + 405, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 169, + 722 + ], + "score": 1.0, + "content": "baseline model", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 190, + 721 + ], + "score": 0.84, + "content": "\\left( \\Delta _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 710, + 271, + 722 + ], + "score": 1.0, + "content": "on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 271, + 711, + 281, + 720 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 710, + 405, + 722 + ], + "score": 1.0, + "content": "English in the Ted talk dataset.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "Results on Ted Talk Now we study the effectiveness of our method on a large number of lan-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 348, + 106 + ], + "score": 1.0, + "content": "guages. The experiments are conducted on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 348, + 95, + 358, + 104 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "English on the Ted talk dataset. Due", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "to the large number of languages and space limitations, we just show the BLEU score improvements", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "of our method over individual models and the multi-baseline for each language in Table 5, and leave", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "the detailed experiment results to Appendix (Section 3). It can be seen that our method can improve", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "over the multi-baseline for all the languages, mostly with more than 1 BLEU score improvements.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "Our method can also match or even surpass individual models for most languages, not to mention", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 313, + 171 + ], + "score": 1.0, + "content": "that the number of parameters of our method is only", + "type": "text" + }, + { + "bbox": [ + 313, + 159, + 335, + 171 + ], + "score": 0.51, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "of that of the sum of 44 individual models.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Our method achieves larger improvements on some languages, such as Da, Et, Fi, Hi and Hy, than", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "others. We find this is correlated with the data size of the languages, which are listed in Appendix", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "(Table 13). When a language is of smaller data size, it may get more improvement due to the benefit", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 204, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 204, + 217 + ], + "score": 1.0, + "content": "of multilingual training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 107, + 228, + 175, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 177, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 177, + 241 + ], + "score": 1.0, + "content": "4.3 ANALYSIS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 480, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 482, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 482, + 262 + ], + "score": 1.0, + "content": "In this section, we conduct thorough analyses on our proposed method for multilingual NMT.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 504, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 504, + 284 + ], + "score": 1.0, + "content": "Selective Distillation We study the effectiveness of the selective distillation (discussed in Sec-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 283, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 504, + 294 + ], + "score": 1.0, + "content": "tion 3.3) on the Ted talk dataset, as shown in Table 6. We list the 16 languages on which the two", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "methods (selective distillation, and distillation all the time) that have difference bigger than 0.5 in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 305, + 504, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 504, + 316 + ], + "score": 1.0, + "content": "terms of BLEU score. It can be seen that selective distillation performs better on 13 out of 16 lan-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "guages, with large BLEU score improvements, which demonstrates the effectiveness of the selective", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 155, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 155, + 339 + ], + "score": 1.0, + "content": "distillation.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "table", + "bbox": [ + 120, + 345, + 491, + 456 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 120, + 345, + 491, + 456 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 345, + 491, + 456 + ], + "spans": [ + { + "bbox": [ + 120, + 345, + 491, + 456 + ], + "score": 0.984, + "html": "
BgEtFiFrGlHiHyKa
distillation all the time28.0712.6415.1333.6930.2818.8619.8814.04
selective distillation29.1815.6317.2334.3231.9021.0021.1718.27
+1.11+2.99+2.10+0.63+1.62+2.14+1.29+4.23
KuMkMySIZhPlSkSv
distillation all the time8.5032.1014.0222.1017.2225.0530.4537.88
selective distillation13.3832.6515.1723.6819.3924.3029.9136.92
+4.88+0.55+1.15+1.58+2.17-0.75-0.54-0.96
", + "type": "table", + "image_path": "3a715b2a40f4460b47ec408829bd4ccc96a718d67db48ddb1bcc3862b35d54a3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 120, + 345, + 491, + 382.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 120, + 382.0, + 491, + 419.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 120, + 419.0, + 491, + 456.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 464, + 503, + 486 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Table 6: BLEU scores of selective distillation (our method) and distillation all the time during the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 267, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 267, + 487 + ], + "score": 1.0, + "content": "training process on the Ted talk dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.25 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "Top-K Distillation In our experiments, the student model just matches the top-K output distribu-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "tion of the teacher model, instead of the full distribution, in order to reduce the memory cost. We", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 350, + 542 + ], + "score": 1.0, + "content": "analyze whether there is accuracy difference between the top-", + "type": "text" + }, + { + "bbox": [ + 350, + 530, + 359, + 540 + ], + "score": 0.27, + "content": "\\mathbf { \\nabla } \\cdot \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "distribution and the full distribution.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 335, + 553 + ], + "score": 1.0, + "content": "We conduct experiments on IWSLT dataset with varying", + "type": "text" + }, + { + "bbox": [ + 335, + 541, + 346, + 551 + ], + "score": 0.78, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 540, + 390, + 553 + ], + "score": 1.0, + "content": "(from 1 to", + "type": "text" + }, + { + "bbox": [ + 390, + 541, + 405, + 552 + ], + "score": 0.88, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 540, + 435, + 553 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 436, + 541, + 450, + 552 + ], + "score": 0.9, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "is the vocab-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 565 + ], + "score": 1.0, + "content": "ulary size), and just show the BLEU scores on the validation set of De-En translation due to space", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 374, + 575 + ], + "score": 1.0, + "content": "limitation, as illustrated in Table 7. It can be seen that increasing", + "type": "text" + }, + { + "bbox": [ + 374, + 563, + 385, + 573 + ], + "score": 0.75, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "from 1 to 8 will improve the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 573, + 458, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 198, + 586 + ], + "score": 1.0, + "content": "accuracy, while bigger", + "type": "text" + }, + { + "bbox": [ + 199, + 574, + 209, + 583 + ], + "score": 0.75, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 573, + 413, + 586 + ], + "score": 1.0, + "content": "will bring no gains, even with the full distribution", + "type": "text" + }, + { + "bbox": [ + 413, + 573, + 453, + 585 + ], + "score": 0.89, + "content": "( K = | V | )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 573, + 458, + 586 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "table", + "bbox": [ + 136, + 595, + 477, + 628 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 595, + 477, + 628 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 595, + 477, + 628 + ], + "spans": [ + { + "bbox": [ + 136, + 595, + 477, + 628 + ], + "score": 0.96, + "html": "
Top-K1248163264128IVI
BLEU33.4533.8634.4734.7634.6634.6834.5434.4734.49
", + "type": "table", + "image_path": "50d1aa22538b09e0bfcdb55867b96821be9bce9f851a73c00e2ed5ce1289d43f.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 595, + 477, + 606.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 606.0, + 477, + 617.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 617.0, + 477, + 628.0 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 109, + 636, + 501, + 648 + ], + "lines": [ + { + "bbox": [ + 108, + 635, + 503, + 649 + ], + "spans": [ + { + "bbox": [ + 108, + 635, + 503, + 649 + ], + "score": 1.0, + "content": "Table 7: BLEU scores on De-En translation with varying Top-K distillation on the IWSLT dataset.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Back Distillation In our current distillation algorithm, we fix the individual models and use them", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "to teach and improve the multilingual model. After such a distillation process, the multilingual", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "model outperforms the individual models on most of the languages. Then naturally, we may won-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "der whether this improved multilingual model can further be used to teach and improve individual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "models through knowledge distillation. We call such a process back distillation. We conduct the ex-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "periments on the IWSLT dataset, and find that the accuracy of 9 out of 12 languages gets improved,", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "Results on Ted Talk Now we study the effectiveness of our method on a large number of lan-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 348, + 106 + ], + "score": 1.0, + "content": "guages. The experiments are conducted on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 348, + 95, + 358, + 104 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "English on the Ted talk dataset. Due", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "to the large number of languages and space limitations, we just show the BLEU score improvements", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "of our method over individual models and the multi-baseline for each language in Table 5, and leave", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "the detailed experiment results to Appendix (Section 3). It can be seen that our method can improve", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "over the multi-baseline for all the languages, mostly with more than 1 BLEU score improvements.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "Our method can also match or even surpass individual models for most languages, not to mention", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 313, + 171 + ], + "score": 1.0, + "content": "that the number of parameters of our method is only", + "type": "text" + }, + { + "bbox": [ + 313, + 159, + 335, + 171 + ], + "score": 0.51, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "of that of the sum of 44 individual models.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Our method achieves larger improvements on some languages, such as Da, Et, Fi, Hi and Hy, than", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "others. We find this is correlated with the data size of the languages, which are listed in Appendix", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "(Table 13). When a language is of smaller data size, it may get more improvement due to the benefit", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 204, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 204, + 217 + ], + "score": 1.0, + "content": "of multilingual training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 82, + 506, + 217 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 228, + 175, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 177, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 177, + 241 + ], + "score": 1.0, + "content": "4.3 ANALYSIS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 480, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 482, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 482, + 262 + ], + "score": 1.0, + "content": "In this section, we conduct thorough analyses on our proposed method for multilingual NMT.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 248, + 482, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 504, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 504, + 284 + ], + "score": 1.0, + "content": "Selective Distillation We study the effectiveness of the selective distillation (discussed in Sec-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 283, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 504, + 294 + ], + "score": 1.0, + "content": "tion 3.3) on the Ted talk dataset, as shown in Table 6. We list the 16 languages on which the two", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "methods (selective distillation, and distillation all the time) that have difference bigger than 0.5 in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 305, + 504, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 504, + 316 + ], + "score": 1.0, + "content": "terms of BLEU score. It can be seen that selective distillation performs better on 13 out of 16 lan-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "guages, with large BLEU score improvements, which demonstrates the effectiveness of the selective", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 155, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 155, + 339 + ], + "score": 1.0, + "content": "distillation.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 271, + 506, + 339 + ] + }, + { + "type": "table", + "bbox": [ + 120, + 345, + 491, + 456 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 120, + 345, + 491, + 456 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 345, + 491, + 456 + ], + "spans": [ + { + "bbox": [ + 120, + 345, + 491, + 456 + ], + "score": 0.984, + "html": "
BgEtFiFrGlHiHyKa
distillation all the time28.0712.6415.1333.6930.2818.8619.8814.04
selective distillation29.1815.6317.2334.3231.9021.0021.1718.27
+1.11+2.99+2.10+0.63+1.62+2.14+1.29+4.23
KuMkMySIZhPlSkSv
distillation all the time8.5032.1014.0222.1017.2225.0530.4537.88
selective distillation13.3832.6515.1723.6819.3924.3029.9136.92
+4.88+0.55+1.15+1.58+2.17-0.75-0.54-0.96
", + "type": "table", + "image_path": "3a715b2a40f4460b47ec408829bd4ccc96a718d67db48ddb1bcc3862b35d54a3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 120, + 345, + 491, + 382.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 120, + 382.0, + 491, + 419.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 120, + 419.0, + 491, + 456.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 464, + 503, + 486 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Table 6: BLEU scores of selective distillation (our method) and distillation all the time during the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 267, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 267, + 487 + ], + "score": 1.0, + "content": "training process on the Ted talk dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.25 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "Top-K Distillation In our experiments, the student model just matches the top-K output distribu-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "tion of the teacher model, instead of the full distribution, in order to reduce the memory cost. We", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 350, + 542 + ], + "score": 1.0, + "content": "analyze whether there is accuracy difference between the top-", + "type": "text" + }, + { + "bbox": [ + 350, + 530, + 359, + 540 + ], + "score": 0.27, + "content": "\\mathbf { \\nabla } \\cdot \\mathbf { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "distribution and the full distribution.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 335, + 553 + ], + "score": 1.0, + "content": "We conduct experiments on IWSLT dataset with varying", + "type": "text" + }, + { + "bbox": [ + 335, + 541, + 346, + 551 + ], + "score": 0.78, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 540, + 390, + 553 + ], + "score": 1.0, + "content": "(from 1 to", + "type": "text" + }, + { + "bbox": [ + 390, + 541, + 405, + 552 + ], + "score": 0.88, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 540, + 435, + 553 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 436, + 541, + 450, + 552 + ], + "score": 0.9, + "content": "| V |", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "is the vocab-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 565 + ], + "score": 1.0, + "content": "ulary size), and just show the BLEU scores on the validation set of De-En translation due to space", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 374, + 575 + ], + "score": 1.0, + "content": "limitation, as illustrated in Table 7. It can be seen that increasing", + "type": "text" + }, + { + "bbox": [ + 374, + 563, + 385, + 573 + ], + "score": 0.75, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "from 1 to 8 will improve the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 573, + 458, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 198, + 586 + ], + "score": 1.0, + "content": "accuracy, while bigger", + "type": "text" + }, + { + "bbox": [ + 199, + 574, + 209, + 583 + ], + "score": 0.75, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 573, + 413, + 586 + ], + "score": 1.0, + "content": "will bring no gains, even with the full distribution", + "type": "text" + }, + { + "bbox": [ + 413, + 573, + 453, + 585 + ], + "score": 0.89, + "content": "( K = | V | )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 573, + 458, + 586 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 507, + 505, + 586 + ] + }, + { + "type": "table", + "bbox": [ + 136, + 595, + 477, + 628 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 595, + 477, + 628 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 595, + 477, + 628 + ], + "spans": [ + { + "bbox": [ + 136, + 595, + 477, + 628 + ], + "score": 0.96, + "html": "
Top-K1248163264128IVI
BLEU33.4533.8634.4734.7634.6634.6834.5434.4734.49
", + "type": "table", + "image_path": "50d1aa22538b09e0bfcdb55867b96821be9bce9f851a73c00e2ed5ce1289d43f.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 595, + 477, + 606.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 606.0, + 477, + 617.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 617.0, + 477, + 628.0 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 109, + 636, + 501, + 648 + ], + "lines": [ + { + "bbox": [ + 108, + 635, + 503, + 649 + ], + "spans": [ + { + "bbox": [ + 108, + 635, + 503, + 649 + ], + "score": 1.0, + "content": "Table 7: BLEU scores on De-En translation with varying Top-K distillation on the IWSLT dataset.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 108, + 635, + 503, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Back Distillation In our current distillation algorithm, we fix the individual models and use them", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "to teach and improve the multilingual model. After such a distillation process, the multilingual", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "model outperforms the individual models on most of the languages. Then naturally, we may won-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "der whether this improved multilingual model can further be used to teach and improve individual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "models through knowledge distillation. We call such a process back distillation. We conduct the ex-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "periments on the IWSLT dataset, and find that the accuracy of 9 out of 12 languages gets improved,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "score": 1.0, + "content": "as shown in Table 10. The other 3 languages (He, Pt, Zh) cannot get improvements because the", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 202, + 478, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 478, + 214 + ], + "score": 1.0, + "content": "improved multilingual model performs very close to individual models, as shown in Table 1.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 117, + 80, + 494, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 80, + 494, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 494, + 138 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 494, + 138 + ], + "score": 0.978, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
", + "type": "table", + "image_path": "e496db88ba87864dc1365cf9a64865225114731f3fe10468f2e835f31548fb65.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 494, + 99.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 99.33333333333333, + 494, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 118.66666666666666, + 494, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 146, + 503, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Table 8: BLEU score improvements of the individual models with back distillation on the IWSLT", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 155, + 141, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 141, + 170 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 190, + 504, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "score": 1.0, + "content": "as shown in Table 10. The other 3 languages (He, Pt, Zh) cannot get improvements because the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 202, + 478, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 478, + 214 + ], + "score": 1.0, + "content": "improved multilingual model performs very close to individual models, as shown in Table 1.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 108, + 226, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 240 + ], + "score": 1.0, + "content": "Comparison with Sequence-Level Knowledge Distillation We conduct experiments to compare", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "the word-level knowledge distillation (the exact method used in our paper) with sequence-level", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "score": 1.0, + "content": "knowledge distillation(Kim & Rush, 2016b) on IWSLT dataset. As shown in Table 9, sequence-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "level knowledge distillation results in consistently inferior accuracy on all languages compared with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 270, + 314, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 314, + 284 + ], + "score": 1.0, + "content": "word-level knowledge distillation used in our work.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "table", + "bbox": [ + 181, + 293, + 429, + 435 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 293, + 429, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 181, + 293, + 429, + 435 + ], + "spans": [ + { + "bbox": [ + 181, + 293, + 429, + 435 + ], + "score": 0.978, + "html": "
LanguageSequence-levelWord-level (OurMethod)
En-Ar12.7913.801.01
En-Cs17.0118.691.68
En-De25.8926.760.87
En-He22.9224.421.50
En-N129.9930.520.53
En-Pt36.1237.231.10
En-Ro25.7527.111.36
En-Ru16.3817.421.04
En-Th27.5227.620.10
En-Tr11.1112.841.73
En-Vi28.0828.690.61
En-Zh10.2510.410.16
", + "type": "table", + "image_path": "bd9f4cf042d8def04a67cb36daabcaa14298bbf7a002e581cff79b7220fb6159.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 181, + 293, + 429, + 340.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 181, + 340.3333333333333, + 429, + 387.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 181, + 387.66666666666663, + 429, + 434.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 443, + 501, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 442, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 504, + 457 + ], + "score": 1.0, + "content": "Table 9: BLEU scores of sequence-level knowledge distillation and word-level knowledge distilla-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 454, + 216, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 216, + 466 + ], + "score": 1.0, + "content": "tion on the IWSLT dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "table", + "bbox": [ + 117, + 484, + 494, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 484, + 494, + 543 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 484, + 494, + 543 + ], + "spans": [ + { + "bbox": [ + 117, + 484, + 494, + 543 + ], + "score": 0.975, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
", + "type": "table", + "image_path": "434d9dacbb2892277bb6dda4e244d8ecf4ec07d242ba36134ec8c699e3034d0d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 117, + 484, + 494, + 503.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 117, + 503.6666666666667, + 494, + 523.3333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 117, + 523.3333333333334, + 494, + 543.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 551, + 503, + 573 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Table 10: BLEU score improvements of the individual models with back distillation on the IWSLT", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 560, + 140, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 140, + 575 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.25 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Generalization Analysis Previous works (Yang et al., 2018; Lan et al., 2018) have shown that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "knowledge distillation can help a model generalize well to unseen data, and thus yield better perfor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "mance. We analyze how distillation in multilingual setting helps the model generalization. Previous", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "studies (Keskar et al., 2016; Chaudhari et al., 2016) demonstrate the relationship between model gen-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "eralization and the width of local minima in loss surface. Wider local minima can make the model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "score": 1.0, + "content": "more robust to small perturbations in testing. Therefore, we compare the generalization capability", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 659, + 479, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 479, + 673 + ], + "score": 1.0, + "content": "of the two multilingual models (our method and the baseline) by perturbing their parameters.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 239, + 689 + ], + "score": 1.0, + "content": "Specifically, we perturb a model", + "type": "text" + }, + { + "bbox": [ + 239, + 677, + 245, + 687 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 676, + 258, + 689 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 258, + 676, + 368, + 689 + ], + "score": 0.92, + "content": "\\theta _ { i } ( \\sigma ) = \\theta _ { i } + \\bar { \\theta } * \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 676, + 399, + 689 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 399, + 677, + 408, + 688 + ], + "score": 0.87, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 676, + 434, + 689 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 434, + 678, + 439, + 687 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "-th parameter of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 686, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 152, + 699 + ], + "score": 1.0, + "content": "the model,", + "type": "text" + }, + { + "bbox": [ + 152, + 687, + 159, + 698 + ], + "score": 0.8, + "content": "\\bar { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 686, + 316, + 699 + ], + "score": 1.0, + "content": "is the average of all the parameters in", + "type": "text" + }, + { + "bbox": [ + 316, + 689, + 322, + 698 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 686, + 493, + 699 + ], + "score": 1.0, + "content": ". We sample from the normal distribution", + "type": "text" + }, + { + "bbox": [ + 493, + 687, + 504, + 698 + ], + "score": 0.75, + "content": "\\mathcal { N }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 199, + 712 + ], + "score": 1.0, + "content": "with standard variance", + "type": "text" + }, + { + "bbox": [ + 199, + 701, + 207, + 709 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 699, + 251, + 712 + ], + "score": 1.0, + "content": "and larger", + "type": "text" + }, + { + "bbox": [ + 251, + 701, + 258, + 709 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "represents bigger perturbation on the parameter. We conduct", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 281, + 723 + ], + "score": 1.0, + "content": "the analyses on the IWSLT dataset and vary", + "type": "text" + }, + { + "bbox": [ + 281, + 710, + 417, + 722 + ], + "score": 0.8, + "content": "\\sigma \\in [ 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 , 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "]. Figure 1a shows the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "score": 1.0, + "content": "loss curve in the test set with varying", + "type": "text" + }, + { + "bbox": [ + 257, + 723, + 263, + 730 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ". As can be seen, while both the two losses increase with the", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 117, + 80, + 494, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 80, + 494, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 494, + 138 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 494, + 138 + ], + "score": 0.978, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
", + "type": "table", + "image_path": "e496db88ba87864dc1365cf9a64865225114731f3fe10468f2e835f31548fb65.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 494, + 99.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 99.33333333333333, + 494, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 118.66666666666666, + 494, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 146, + 503, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Table 8: BLEU score improvements of the individual models with back distillation on the IWSLT", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 155, + 141, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 141, + 170 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 190, + 504, + 214 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 190, + 505, + 214 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 108, + 226, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 240 + ], + "score": 1.0, + "content": "Comparison with Sequence-Level Knowledge Distillation We conduct experiments to compare", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "the word-level knowledge distillation (the exact method used in our paper) with sequence-level", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "score": 1.0, + "content": "knowledge distillation(Kim & Rush, 2016b) on IWSLT dataset. As shown in Table 9, sequence-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "level knowledge distillation results in consistently inferior accuracy on all languages compared with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 270, + 314, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 314, + 284 + ], + "score": 1.0, + "content": "word-level knowledge distillation used in our work.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 226, + 506, + 284 + ] + }, + { + "type": "table", + "bbox": [ + 181, + 293, + 429, + 435 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 293, + 429, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 181, + 293, + 429, + 435 + ], + "spans": [ + { + "bbox": [ + 181, + 293, + 429, + 435 + ], + "score": 0.978, + "html": "
LanguageSequence-levelWord-level (OurMethod)
En-Ar12.7913.801.01
En-Cs17.0118.691.68
En-De25.8926.760.87
En-He22.9224.421.50
En-N129.9930.520.53
En-Pt36.1237.231.10
En-Ro25.7527.111.36
En-Ru16.3817.421.04
En-Th27.5227.620.10
En-Tr11.1112.841.73
En-Vi28.0828.690.61
En-Zh10.2510.410.16
", + "type": "table", + "image_path": "bd9f4cf042d8def04a67cb36daabcaa14298bbf7a002e581cff79b7220fb6159.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 181, + 293, + 429, + 340.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 181, + 340.3333333333333, + 429, + 387.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 181, + 387.66666666666663, + 429, + 434.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 443, + 501, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 442, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 504, + 457 + ], + "score": 1.0, + "content": "Table 9: BLEU scores of sequence-level knowledge distillation and word-level knowledge distilla-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 454, + 216, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 216, + 466 + ], + "score": 1.0, + "content": "tion on the IWSLT dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "table", + "bbox": [ + 117, + 484, + 494, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 484, + 494, + 543 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 484, + 494, + 543 + ], + "spans": [ + { + "bbox": [ + 117, + 484, + 494, + 543 + ], + "score": 0.975, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
", + "type": "table", + "image_path": "434d9dacbb2892277bb6dda4e244d8ecf4ec07d242ba36134ec8c699e3034d0d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 117, + 484, + 494, + 503.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 117, + 503.6666666666667, + 494, + 523.3333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 117, + 523.3333333333334, + 494, + 543.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 551, + 503, + 573 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Table 10: BLEU score improvements of the individual models with back distillation on the IWSLT", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 560, + 140, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 140, + 575 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.25 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Generalization Analysis Previous works (Yang et al., 2018; Lan et al., 2018) have shown that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "knowledge distillation can help a model generalize well to unseen data, and thus yield better perfor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "mance. We analyze how distillation in multilingual setting helps the model generalization. Previous", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "studies (Keskar et al., 2016; Chaudhari et al., 2016) demonstrate the relationship between model gen-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "eralization and the width of local minima in loss surface. Wider local minima can make the model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "score": 1.0, + "content": "more robust to small perturbations in testing. Therefore, we compare the generalization capability", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 659, + 479, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 479, + 673 + ], + "score": 1.0, + "content": "of the two multilingual models (our method and the baseline) by perturbing their parameters.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 594, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 239, + 689 + ], + "score": 1.0, + "content": "Specifically, we perturb a model", + "type": "text" + }, + { + "bbox": [ + 239, + 677, + 245, + 687 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 676, + 258, + 689 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 258, + 676, + 368, + 689 + ], + "score": 0.92, + "content": "\\theta _ { i } ( \\sigma ) = \\theta _ { i } + \\bar { \\theta } * \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 676, + 399, + 689 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 399, + 677, + 408, + 688 + ], + "score": 0.87, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 676, + 434, + 689 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 434, + 678, + 439, + 687 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "-th parameter of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 686, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 152, + 699 + ], + "score": 1.0, + "content": "the model,", + "type": "text" + }, + { + "bbox": [ + 152, + 687, + 159, + 698 + ], + "score": 0.8, + "content": "\\bar { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 686, + 316, + 699 + ], + "score": 1.0, + "content": "is the average of all the parameters in", + "type": "text" + }, + { + "bbox": [ + 316, + 689, + 322, + 698 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 686, + 493, + 699 + ], + "score": 1.0, + "content": ". We sample from the normal distribution", + "type": "text" + }, + { + "bbox": [ + 493, + 687, + 504, + 698 + ], + "score": 0.75, + "content": "\\mathcal { N }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 199, + 712 + ], + "score": 1.0, + "content": "with standard variance", + "type": "text" + }, + { + "bbox": [ + 199, + 701, + 207, + 709 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 699, + 251, + 712 + ], + "score": 1.0, + "content": "and larger", + "type": "text" + }, + { + "bbox": [ + 251, + 701, + 258, + 709 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "represents bigger perturbation on the parameter. We conduct", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 281, + 723 + ], + "score": 1.0, + "content": "the analyses on the IWSLT dataset and vary", + "type": "text" + }, + { + "bbox": [ + 281, + 710, + 417, + 722 + ], + "score": 0.8, + "content": "\\sigma \\in [ 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 , 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "]. Figure 1a shows the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "score": 1.0, + "content": "loss curve in the test set with varying", + "type": "text" + }, + { + "bbox": [ + 257, + 723, + 263, + 730 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ". As can be seen, while both the two losses increase with the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 152, + 95 + ], + "score": 1.0, + "content": "increase of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 153, + 84, + 159, + 92 + ], + "score": 0.72, + "content": "\\sigma", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 160, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", the loss of the baseline model increases quicker than our method. We also show three", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "test BLEU curves on three translation pairs (Figure 1b: Ar-En, Figure 1c: Cs-En, Figure 1d: De-En,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "which are randomly picked from the 12 languages pairs on the IWSLT dataset). We observe that the", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "BLEU score of the multilingual baseline drops quicker than our method, which demonstrates that", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 425, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 425, + 140 + ], + "score": 1.0, + "content": "our method helps the model find wider local minima and thus generalize better.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 676, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 152, + 95 + ], + "score": 1.0, + "content": "increase of", + "type": "text" + }, + { + "bbox": [ + 153, + 84, + 159, + 92 + ], + "score": 0.72, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", the loss of the baseline model increases quicker than our method. We also show three", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "test BLEU curves on three translation pairs (Figure 1b: Ar-En, Figure 1c: Cs-En, Figure 1d: De-En,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "which are randomly picked from the 12 languages pairs on the IWSLT dataset). We observe that the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "BLEU score of the multilingual baseline drops quicker than our method, which demonstrates that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 425, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 425, + 140 + ], + "score": 1.0, + "content": "our method helps the model find wider local minima and thus generalize better.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 115, + 148, + 496, + 284 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 148, + 496, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 148, + 496, + 284 + ], + "spans": [ + { + "bbox": [ + 115, + 148, + 496, + 284 + ], + "score": 0.973, + "type": "image", + "image_path": "5e02a344e3254dec9e37d9982da94e1ca6d77df15f37ee1394cba78a00a0cd7a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 115, + 148, + 496, + 193.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 115, + 193.33333333333334, + 496, + 238.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 115, + 238.66666666666669, + 496, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 294, + 504, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Figure 1: The loss (Figure a) and BLEU score (Figure b: Ar-En, Figure c: Cs-En, Figure d: De-En)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 305, + 446, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 434, + 318 + ], + "score": 1.0, + "content": "changes on the test set of the IWSLT dataset, with varying perturbation parameter", + "type": "text" + }, + { + "bbox": [ + 435, + 308, + 442, + 315 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 305, + 446, + 318 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "title", + "bbox": [ + 108, + 338, + 195, + 350 + ], + "lines": [ + { + "bbox": [ + 104, + 336, + 197, + 353 + ], + "spans": [ + { + "bbox": [ + 104, + 336, + 197, + 353 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "In this work, we have proposed a distillation-based approach to boost the accuracy of multilingual", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "NMT, which is usually of lower accuracy than the individual models in previous works. Experiments", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "on three translation datasets with up to 44 languages demonstrate the multilingual model based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 395, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 484, + 407 + ], + "score": 1.0, + "content": "our proposed method can nearly match or even outperform the individual models, with just", + "type": "text" + }, + { + "bbox": [ + 484, + 395, + 504, + 407 + ], + "score": 0.84, + "content": "1 / N", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 407, + 319, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 319, + 419 + ], + "score": 1.0, + "content": "model parameters (N is up to 44 in our experiments).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "In the future, we will conduct more deep analyses about how distillation helps the multilingual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "model training. We will apply our method to larger datasets and more languages pairs (hundreds or", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 445, + 371, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 371, + 457 + ], + "score": 1.0, + "content": "even thousands), to study the upper limit of our proposed method.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 473, + 175, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 176, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 176, + 486 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 490, + 506, + 734 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "Rohan Anil, Gabriel Pereyra, Alexandre Passos, Robert Ormandi, George E Dahl, and Geoffrey E", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Hinton. Large scale distributed neural network training through online distillation. arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 513, + 219, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 513, + 219, + 523 + ], + "score": 1.0, + "content": "arXiv:1804.03235, 2018.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 541, + 315, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 315, + 553 + ], + "score": 1.0, + "content": "learning to align and translate. ICLR 2015, 2015.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 572 + ], + "score": 1.0, + "content": "Cristian Bucilu, Rich Caruana, and Alexandru Niculescu-Mizil. Model compression. In Proceedings", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "of the 12th ACM SIGKDD international conference on Knowledge discovery and data mining, pp.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 581, + 208, + 592 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 208, + 592 + ], + "score": 1.0, + "content": "535–541. ACM, 2006.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "Pratik Chaudhari, Anna Choromanska, Stefano Soatto, Yann LeCun, Carlo Baldassi, Christian", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Borgs, Jennifer Chayes, Levent Sagun, and Riccardo Zecchina. Entropy-sgd: Biasing gradient", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 620, + 385, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 620, + 385, + 633 + ], + "score": 1.0, + "content": "descent into wide valleys. arXiv preprint arXiv:1611.01838, 2016.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-task learning for multiple", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "language translation. In Proceedings of the 53rd Annual Meeting of the Association for Compu-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "tational Linguistics and the 7th International Joint Conference on Natural Language Processing", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 671, + 354, + 683 + ], + "spans": [ + { + "bbox": [ + 116, + 671, + 354, + 683 + ], + "score": 1.0, + "content": "(Volume 1: Long Papers), volume 1, pp. 1723–1732, 2015.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Orhan Firat, Kyunghyun Cho, and Yoshua Bengio. Multi-way, multilingual neural machine trans-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "lation with a shared attention mechanism. In NAACL HLT 2016, The 2016 Conference of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 721, + 441, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 441, + 734 + ], + "score": 1.0, + "content": "Technologies, San Diego California, USA, June 12-17, 2016, pp. 866–875, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 29 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 140 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 115, + 148, + 496, + 284 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 148, + 496, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 148, + 496, + 284 + ], + "spans": [ + { + "bbox": [ + 115, + 148, + 496, + 284 + ], + "score": 0.973, + "type": "image", + "image_path": "5e02a344e3254dec9e37d9982da94e1ca6d77df15f37ee1394cba78a00a0cd7a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 115, + 148, + 496, + 193.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 115, + 193.33333333333334, + 496, + 238.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 115, + 238.66666666666669, + 496, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 294, + 504, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Figure 1: The loss (Figure a) and BLEU score (Figure b: Ar-En, Figure c: Cs-En, Figure d: De-En)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 305, + 446, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 434, + 318 + ], + "score": 1.0, + "content": "changes on the test set of the IWSLT dataset, with varying perturbation parameter", + "type": "text" + }, + { + "bbox": [ + 435, + 308, + 442, + 315 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 305, + 446, + 318 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "title", + "bbox": [ + 108, + 338, + 195, + 350 + ], + "lines": [ + { + "bbox": [ + 104, + 336, + 197, + 353 + ], + "spans": [ + { + "bbox": [ + 104, + 336, + 197, + 353 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "In this work, we have proposed a distillation-based approach to boost the accuracy of multilingual", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "NMT, which is usually of lower accuracy than the individual models in previous works. Experiments", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "on three translation datasets with up to 44 languages demonstrate the multilingual model based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 395, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 484, + 407 + ], + "score": 1.0, + "content": "our proposed method can nearly match or even outperform the individual models, with just", + "type": "text" + }, + { + "bbox": [ + 484, + 395, + 504, + 407 + ], + "score": 0.84, + "content": "1 / N", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 407, + 319, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 319, + 419 + ], + "score": 1.0, + "content": "model parameters (N is up to 44 in our experiments).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 362, + 505, + 419 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "In the future, we will conduct more deep analyses about how distillation helps the multilingual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "model training. We will apply our method to larger datasets and more languages pairs (hundreds or", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 445, + 371, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 371, + 457 + ], + "score": 1.0, + "content": "even thousands), to study the upper limit of our proposed method.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 422, + 505, + 457 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 473, + 175, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 176, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 176, + 486 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "list", + "bbox": [ + 105, + 490, + 506, + 734 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "Rohan Anil, Gabriel Pereyra, Alexandre Passos, Robert Ormandi, George E Dahl, and Geoffrey E", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Hinton. Large scale distributed neural network training through online distillation. arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 513, + 219, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 513, + 219, + 523 + ], + "score": 1.0, + "content": "arXiv:1804.03235, 2018.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 541, + 315, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 315, + 553 + ], + "score": 1.0, + "content": "learning to align and translate. ICLR 2015, 2015.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 572 + ], + "score": 1.0, + "content": "Cristian Bucilu, Rich Caruana, and Alexandru Niculescu-Mizil. Model compression. In Proceedings", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "of the 12th ACM SIGKDD international conference on Knowledge discovery and data mining, pp.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 581, + 208, + 592 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 208, + 592 + ], + "score": 1.0, + "content": "535–541. ACM, 2006.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "Pratik Chaudhari, Anna Choromanska, Stefano Soatto, Yann LeCun, Carlo Baldassi, Christian", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Borgs, Jennifer Chayes, Levent Sagun, and Riccardo Zecchina. Entropy-sgd: Biasing gradient", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 620, + 385, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 620, + 385, + 633 + ], + "score": 1.0, + "content": "descent into wide valleys. arXiv preprint arXiv:1611.01838, 2016.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-task learning for multiple", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "language translation. In Proceedings of the 53rd Annual Meeting of the Association for Compu-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "tational Linguistics and the 7th International Joint Conference on Natural Language Processing", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 671, + 354, + 683 + ], + "spans": [ + { + "bbox": [ + 116, + 671, + 354, + 683 + ], + "score": 1.0, + "content": "(Volume 1: Long Papers), volume 1, pp. 1723–1732, 2015.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Orhan Firat, Kyunghyun Cho, and Yoshua Bengio. Multi-way, multilingual neural machine trans-", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "lation with a shared attention mechanism. In NAACL HLT 2016, The 2016 Conference of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 721, + 441, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 441, + 734 + ], + "score": 1.0, + "content": "Technologies, San Diego California, USA, June 12-17, 2016, pp. 866–875, 2016.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + } + ], + "index": 29, + "bbox_fs": [ + 105, + 491, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Markus Freitag, Yaser Al-Onaizan, and Baskaran Sankaran. Ensemble distillation for neural ma-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 351, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 351, + 105 + ], + "score": 1.0, + "content": "chine translation. arXiv preprint arXiv:1702.01802, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Tommaso Furlanello, Zachary C Lipton, Michael Tschannen, Laurent Itti, and Anima Anandkumar.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 395, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 395, + 136 + ], + "score": 1.0, + "content": "Born again neural networks. arXiv preprint arXiv:1805.04770, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 142, + 504, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Jonas Gehring, Michael Auli, David Grangier, Denis Yarats, and Yann N. Dauphin. Convolutional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "sequence to sequence learning. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 473, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 473, + 177 + ], + "score": 1.0, + "content": "Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017, pp. 1243–1252, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 503, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Chengyue Gong, Xu Tan, Di He, and Tao Qin. Sentence-wise smooth regularization for sequence", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 195, + 266, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 266, + 207 + ], + "score": 1.0, + "content": "to sequence learning. In AAAI, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 105, + 214, + 506, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Jiatao Gu, Hany Hassan, Jacob Devlin, and Victor O. K. Li. Universal neural machine translation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "for extremely low resource languages. In NAACL-HLT 2018, New Orleans, Louisiana, USA, June", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 237, + 345, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 237, + 345, + 249 + ], + "score": 1.0, + "content": "1-6, 2018, Volume 1 (Long Papers), pp. 344–354, 2018a.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 503, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 504, + 268 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for low-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 267, + 432, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 267, + 432, + 279 + ], + "score": 1.0, + "content": "resource neural machine translation. arXiv preprint arXiv:1808.08437, 2018b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "Junliang Guo, Xu Tan, Di He, Tao Qin, Linli Xu, and Tie-Yan Liu. Non-autoregressive neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 380, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 380, + 309 + ], + "score": 1.0, + "content": "machine translation with enhanced decoder input. In AAAI, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "Thanh-Le Ha, Jan Niehues, and Alexander H. Waibel. Toward multilingual neural machine", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "translation with universal encoder and decoder. CoRR, abs/1611.04798, 2016. URL http:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 117, + 339, + 276, + 350 + ], + "spans": [ + { + "bbox": [ + 117, + 339, + 276, + 350 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1611.04798.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "Hany Hassan, Anthony Aue, Chang Chen, Vishal Chowdhary, Jonathan Clark, Christian Federmann,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "Xuedong Huang, Marcin Junczys-Dowmunt, William Lewis, Mu Li, Shujie Liu, Tie-Yan Liu,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Renqian Luo, Arul Menezes, Tao Qin, Frank Seide, Xu Tan, Fei Tian, Lijun Wu, Shuangzhi", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "Wu, Yingce Xia, Dongdong Zhang, Zhirui Zhang, and Ming Zhou. Achieving human parity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "on automatic chinese to english news translation. CoRR, abs/1803.05567, 2018. URL http:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 413, + 277, + 424 + ], + "spans": [ + { + "bbox": [ + 117, + 413, + 277, + 424 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1803.05567.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "Tianyu He, Xu Tan, Yingce Xia, Di He, Tao Qin, Zhibo Chen, and Tie-Yan Liu. Layer-wise coor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "dination between encoder and decoder for neural machine translation. In NIPS, pp. 7955–7965,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 453, + 142, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 142, + 465 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 504, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 484, + 254, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 254, + 496 + ], + "score": 1.0, + "content": "preprint arXiv:1503.02531, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "Melvin Johnson, Mike Schuster, Quoc V. Le, Maxim Krikun, Yonghui Wu, Zhifeng Chen, Nikhil", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Thorat, Fernanda B. Viegas, Martin Wattenberg, Greg Corrado, Macduff Hughes, and Jeffrey ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 504, + 537 + ], + "score": 1.0, + "content": "Dean. Google’s multilingual neural machine translation system: Enabling zero-shot transla-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "tion. TACL, 5:339–351, 2017. URL https://transacl.org/ojs/index.php/tacl/", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 547, + 223, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 223, + 559 + ], + "score": 1.0, + "content": "article/view/1081.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 504, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 504, + 579 + ], + "score": 1.0, + "content": "Nitish Shirish Keskar, Dheevatsa Mudigere, Jorge Nocedal, Mikhail Smelyanskiy, and Ping Tak Pe-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 116, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "ter Tang. On large-batch training for deep learning: Generalization gap and sharp minima. arXiv", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 589, + 254, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 589, + 254, + 600 + ], + "score": 1.0, + "content": "preprint arXiv:1609.04836, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proceedings of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 618, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 504, + 632 + ], + "score": 1.0, + "content": "2016 Conference on Empirical Methods in Natural Language Processing, EMNLP 2016, Austin,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 630, + 348, + 642 + ], + "spans": [ + { + "bbox": [ + 117, + 630, + 348, + 642 + ], + "score": 1.0, + "content": "Texas, USA, November 1-4, 2016, pp. 1317–1327, 2016a.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 104, + 648, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M Rush. Sequence-level knowledge distillation. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 659, + 225, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 225, + 672 + ], + "score": 1.0, + "content": "arXiv:1606.07947, 2016b.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 105, + 679, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 690, + 216, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 216, + 702 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Xu Lan, Xiatian Zhu, and Shaogang Gong. Knowledge distillation by on-the-fly native ensemble.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 279, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 279, + 732 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1806.04606, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Markus Freitag, Yaser Al-Onaizan, and Baskaran Sankaran. Ensemble distillation for neural ma-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 351, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 351, + 105 + ], + "score": 1.0, + "content": "chine translation. arXiv preprint arXiv:1702.01802, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Tommaso Furlanello, Zachary C Lipton, Michael Tschannen, Laurent Itti, and Anima Anandkumar.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 395, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 395, + 136 + ], + "score": 1.0, + "content": "Born again neural networks. arXiv preprint arXiv:1805.04770, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 142, + 504, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Jonas Gehring, Michael Auli, David Grangier, Denis Yarats, and Yann N. Dauphin. Convolutional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "sequence to sequence learning. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 473, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 473, + 177 + ], + "score": 1.0, + "content": "Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017, pp. 1243–1252, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 142, + 505, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 503, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Chengyue Gong, Xu Tan, Di He, and Tao Qin. Sentence-wise smooth regularization for sequence", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 195, + 266, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 266, + 207 + ], + "score": 1.0, + "content": "to sequence learning. In AAAI, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 183, + 505, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 214, + 506, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Jiatao Gu, Hany Hassan, Jacob Devlin, and Victor O. K. Li. Universal neural machine translation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "for extremely low resource languages. In NAACL-HLT 2018, New Orleans, Louisiana, USA, June", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 237, + 345, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 237, + 345, + 249 + ], + "score": 1.0, + "content": "1-6, 2018, Volume 1 (Long Papers), pp. 344–354, 2018a.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 214, + 505, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 503, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 504, + 268 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for low-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 267, + 432, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 267, + 432, + 279 + ], + "score": 1.0, + "content": "resource neural machine translation. arXiv preprint arXiv:1808.08437, 2018b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 256, + 504, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "Junliang Guo, Xu Tan, Di He, Tao Qin, Linli Xu, and Tie-Yan Liu. Non-autoregressive neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 380, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 380, + 309 + ], + "score": 1.0, + "content": "machine translation with enhanced decoder input. In AAAI, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 285, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "Thanh-Le Ha, Jan Niehues, and Alexander H. Waibel. Toward multilingual neural machine", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "translation with universal encoder and decoder. CoRR, abs/1611.04798, 2016. URL http:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 117, + 339, + 276, + 350 + ], + "spans": [ + { + "bbox": [ + 117, + 339, + 276, + 350 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1611.04798.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 316, + 505, + 350 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "Hany Hassan, Anthony Aue, Chang Chen, Vishal Chowdhary, Jonathan Clark, Christian Federmann,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "Xuedong Huang, Marcin Junczys-Dowmunt, William Lewis, Mu Li, Shujie Liu, Tie-Yan Liu,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Renqian Luo, Arul Menezes, Tao Qin, Frank Seide, Xu Tan, Fei Tian, Lijun Wu, Shuangzhi", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "Wu, Yingce Xia, Dongdong Zhang, Zhirui Zhang, and Ming Zhou. Achieving human parity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "on automatic chinese to english news translation. CoRR, abs/1803.05567, 2018. URL http:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 413, + 277, + 424 + ], + "spans": [ + { + "bbox": [ + 117, + 413, + 277, + 424 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1803.05567.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 356, + 506, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "Tianyu He, Xu Tan, Yingce Xia, Di He, Tao Qin, Zhibo Chen, and Tie-Yan Liu. Layer-wise coor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "dination between encoder and decoder for neural machine translation. In NIPS, pp. 7955–7965,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 453, + 142, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 142, + 465 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 430, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 504, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 484, + 254, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 254, + 496 + ], + "score": 1.0, + "content": "preprint arXiv:1503.02531, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 473, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "Melvin Johnson, Mike Schuster, Quoc V. Le, Maxim Krikun, Yonghui Wu, Zhifeng Chen, Nikhil", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Thorat, Fernanda B. Viegas, Martin Wattenberg, Greg Corrado, Macduff Hughes, and Jeffrey ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 504, + 537 + ], + "score": 1.0, + "content": "Dean. Google’s multilingual neural machine translation system: Enabling zero-shot transla-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "tion. TACL, 5:339–351, 2017. URL https://transacl.org/ojs/index.php/tacl/", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 547, + 223, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 223, + 559 + ], + "score": 1.0, + "content": "article/view/1081.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 503, + 505, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 504, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 504, + 579 + ], + "score": 1.0, + "content": "Nitish Shirish Keskar, Dheevatsa Mudigere, Jorge Nocedal, Mikhail Smelyanskiy, and Ping Tak Pe-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 116, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "ter Tang. On large-batch training for deep learning: Generalization gap and sharp minima. arXiv", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 589, + 254, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 589, + 254, + 600 + ], + "score": 1.0, + "content": "preprint arXiv:1609.04836, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 566, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M. Rush. Sequence-level knowledge distillation. In Proceedings of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 618, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 504, + 632 + ], + "score": 1.0, + "content": "2016 Conference on Empirical Methods in Natural Language Processing, EMNLP 2016, Austin,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 630, + 348, + 642 + ], + "spans": [ + { + "bbox": [ + 117, + 630, + 348, + 642 + ], + "score": 1.0, + "content": "Texas, USA, November 1-4, 2016, pp. 1317–1327, 2016a.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 606, + 506, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 648, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "Yoon Kim and Alexander M Rush. Sequence-level knowledge distillation. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 659, + 225, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 225, + 672 + ], + "score": 1.0, + "content": "arXiv:1606.07947, 2016b.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 647, + 505, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 679, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 693 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 690, + 216, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 216, + 702 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 677, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Xu Lan, Xiatian Zhu, and Shaogang Gong. Knowledge distillation by on-the-fly native ensemble.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 279, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 279, + 732 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1806.04606, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yuncheng Li, Jianchao Yang, Yale Song, Liangliang Cao, Jiebo Luo, and Li-Jia Li. Learning from", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 364, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 364, + 105 + ], + "score": 1.0, + "content": "noisy labels with distillation. In ICCV, pp. 1928–1936, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 502, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "score": 1.0, + "content": "Yichao Lu, Phillip Keung, Faisal Ladhak, Vikas Bhardwaj, Shaonan Zhang, and Jason Sun. A", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 504, + 136 + ], + "score": 1.0, + "content": "neural interlingua for multilingual machine translation. CoRR, abs/1804.08198, 2018. URL", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 136, + 307, + 148 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 307, + 148 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1804.08198.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 155, + 506, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 504, + 179 + ], + "score": 1.0, + "content": "sequence to sequence learning. CoRR, abs/1511.06114, 2015a. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 178, + 205, + 189 + ], + "spans": [ + { + "bbox": [ + 117, + 178, + 205, + 189 + ], + "score": 1.0, + "content": "abs/1511.06114.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "Thang Luong, Hieu Pham, and Christopher D. Manning. Effective approaches to attention-based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 208, + 504, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 208, + 504, + 219 + ], + "score": 1.0, + "content": "neural machine translation. In Proceedings of the 2015 Conference on Empirical Methods in Nat-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "ural Language Processing, EMNLP 2015, Lisbon, Portugal, September 17-21, 2015, pp. 1412–", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 230, + 171, + 241 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 171, + 241 + ], + "score": 1.0, + "content": "1421, 2015b.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 105, + 249, + 504, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "score": 1.0, + "content": "Graham Neubig and Junjie Hu. Rapid adaptation of neural machine translation to new languages.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 261, + 279, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 261, + 279, + 272 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1808.04189, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "Kishore Papineni, Salim Roukos, Todd Ward, and Wei-Jing Zhu. Bleu: a method for automatic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "evaluation of machine translation. In Proceedings of the 40th Annual Meeting of the Association", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "for Computational Linguistics, July 6-12, 2002, Philadelphia, PA, USA., pp. 311–318, 2002. URL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 314, + 385, + 326 + ], + "spans": [ + { + "bbox": [ + 115, + 314, + 385, + 326 + ], + "score": 1.0, + "content": "http://www.aclweb.org/anthology/P02-1040.pdf.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "Adriana Romero, Nicolas Ballas, Samira Ebrahimi Kahou, Antoine Chassang, Carlo Gatta, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 344, + 473, + 357 + ], + "spans": [ + { + "bbox": [ + 117, + 344, + 473, + 357 + ], + "score": 1.0, + "content": "Yoshua Bengio. Fitnets: Hints for thin deep nets. arXiv preprint arXiv:1412.6550, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "Rico Sennrich, Barry Haddow, and Alexandra Birch. Neural machine translation of rare words with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 375, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 116, + 375, + 504, + 387 + ], + "score": 1.0, + "content": "subword units. In ACL 2016, August 7-12, 2016, Berlin, Germany, Volume 1: Long Papers, 2016.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 385, + 420, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 420, + 399 + ], + "score": 1.0, + "content": "URL http://aclweb.org/anthology/P/P16/P16-1162.pdf.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "Yanyao Shen, Xu Tan, Di He, Tao Qin, and Tie-Yan Liu. Dense information flow for neural machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 343, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 343, + 429 + ], + "score": 1.0, + "content": "translation. In NAACL, volume 1, pp. 1294–1303, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "score": 1.0, + "content": "Kaitao Song, Xu Tan, Di He, Jianfeng Lu, Tao Qin, and Tie-Yan Liu. Double path networks for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 448, + 386, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 386, + 460 + ], + "score": 1.0, + "content": "sequence to sequence learning. In COLING, pp. 3064–3074, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 104, + 467, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V. Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 468, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 468, + 491 + ], + "score": 1.0, + "content": "In NIPS 2014, December 8-13 2014, Montreal, Quebec, Canada, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NIPS 2017, 4-9 December", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 519, + 325, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 325, + 533 + ], + "score": 1.0, + "content": "2017, Long Beach, CA, USA, pp. 6000–6010, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "Lijun Wu, Xu Tan, Di He, Fei Tian, Tao Qin, Jianhuang Lai, and Tie-Yan Liu. Beyond error", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "propagation in neural machine translation: Characteristics of language also matter. In EMNLP,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 563, + 206, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 206, + 574 + ], + "score": 1.0, + "content": "pp. 3602–3611, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 596 + ], + "score": 1.0, + "content": "Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 115, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin John-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 603, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 114, + 603, + 506, + 618 + ], + "score": 1.0, + "content": "son, Xiaobing Liu, Lukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean. Google’s neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "machine translation system: Bridging the gap between human and machine translation. CoRR,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 648, + 424, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 424, + 660 + ], + "score": 1.0, + "content": "abs/1609.08144, 2016. URL http://arxiv.org/abs/1609.08144.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Chenglin Yang, Lingxi Xie, Siyuan Qiao, and Alan Yuille. Knowledge distillation in generations:", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 679, + 467, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 467, + 690 + ], + "score": 1.0, + "content": "More tolerant teachers educate better students. arXiv preprint arXiv:1805.05551, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Qi Ye, Sachan Devendra, Felix Matthieu, Padmanabhan Sarguna, and Neubig Graham. When and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 114, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "why are pre-trained word embeddings useful for neural machine translation. In HLT-NAACL,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 718, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 718, + 143, + 733 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yuncheng Li, Jianchao Yang, Yale Song, Liangliang Cao, Jiebo Luo, and Li-Jia Li. Learning from", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 364, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 364, + 105 + ], + "score": 1.0, + "content": "noisy labels with distillation. In ICCV, pp. 1928–1936, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 502, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "score": 1.0, + "content": "Yichao Lu, Phillip Keung, Faisal Ladhak, Vikas Bhardwaj, Shaonan Zhang, and Jason Sun. A", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 504, + 136 + ], + "score": 1.0, + "content": "neural interlingua for multilingual machine translation. CoRR, abs/1804.08198, 2018. URL", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 136, + 307, + 148 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 307, + 148 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1804.08198.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 113, + 504, + 148 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 155, + 506, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 504, + 179 + ], + "score": 1.0, + "content": "sequence to sequence learning. CoRR, abs/1511.06114, 2015a. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 178, + 205, + 189 + ], + "spans": [ + { + "bbox": [ + 117, + 178, + 205, + 189 + ], + "score": 1.0, + "content": "abs/1511.06114.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 155, + 505, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "Thang Luong, Hieu Pham, and Christopher D. Manning. Effective approaches to attention-based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 208, + 504, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 208, + 504, + 219 + ], + "score": 1.0, + "content": "neural machine translation. In Proceedings of the 2015 Conference on Empirical Methods in Nat-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "ural Language Processing, EMNLP 2015, Lisbon, Portugal, September 17-21, 2015, pp. 1412–", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 230, + 171, + 241 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 171, + 241 + ], + "score": 1.0, + "content": "1421, 2015b.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 197, + 506, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 249, + 504, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "score": 1.0, + "content": "Graham Neubig and Junjie Hu. Rapid adaptation of neural machine translation to new languages.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 261, + 279, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 261, + 279, + 272 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1808.04189, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 248, + 505, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "Kishore Papineni, Salim Roukos, Todd Ward, and Wei-Jing Zhu. Bleu: a method for automatic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "evaluation of machine translation. In Proceedings of the 40th Annual Meeting of the Association", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "for Computational Linguistics, July 6-12, 2002, Philadelphia, PA, USA., pp. 311–318, 2002. URL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 314, + 385, + 326 + ], + "spans": [ + { + "bbox": [ + 115, + 314, + 385, + 326 + ], + "score": 1.0, + "content": "http://www.aclweb.org/anthology/P02-1040.pdf.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 280, + 505, + 326 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "Adriana Romero, Nicolas Ballas, Samira Ebrahimi Kahou, Antoine Chassang, Carlo Gatta, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 344, + 473, + 357 + ], + "spans": [ + { + "bbox": [ + 117, + 344, + 473, + 357 + ], + "score": 1.0, + "content": "Yoshua Bengio. Fitnets: Hints for thin deep nets. arXiv preprint arXiv:1412.6550, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 334, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "Rico Sennrich, Barry Haddow, and Alexandra Birch. Neural machine translation of rare words with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 375, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 116, + 375, + 504, + 387 + ], + "score": 1.0, + "content": "subword units. In ACL 2016, August 7-12, 2016, Berlin, Germany, Volume 1: Long Papers, 2016.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 385, + 420, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 420, + 399 + ], + "score": 1.0, + "content": "URL http://aclweb.org/anthology/P/P16/P16-1162.pdf.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 364, + 505, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "Yanyao Shen, Xu Tan, Di He, Tao Qin, and Tie-Yan Liu. Dense information flow for neural machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 343, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 343, + 429 + ], + "score": 1.0, + "content": "translation. In NAACL, volume 1, pp. 1294–1303, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 406, + 505, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "score": 1.0, + "content": "Kaitao Song, Xu Tan, Di He, Jianfeng Lu, Tao Qin, and Tie-Yan Liu. Double path networks for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 448, + 386, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 386, + 460 + ], + "score": 1.0, + "content": "sequence to sequence learning. In COLING, pp. 3064–3074, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 436, + 506, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 467, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V. Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 468, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 468, + 491 + ], + "score": 1.0, + "content": "In NIPS 2014, December 8-13 2014, Montreal, Quebec, Canada, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 467, + 505, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NIPS 2017, 4-9 December", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 519, + 325, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 325, + 533 + ], + "score": 1.0, + "content": "2017, Long Beach, CA, USA, pp. 6000–6010, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 497, + 506, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "Lijun Wu, Xu Tan, Di He, Fei Tian, Tao Qin, Jianhuang Lai, and Tie-Yan Liu. Beyond error", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "propagation in neural machine translation: Characteristics of language also matter. In EMNLP,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 563, + 206, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 206, + 574 + ], + "score": 1.0, + "content": "pp. 3602–3611, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 540, + 506, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 596 + ], + "score": 1.0, + "content": "Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 115, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin John-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 603, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 114, + 603, + 506, + 618 + ], + "score": 1.0, + "content": "son, Xiaobing Liu, Lukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean. Google’s neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "machine translation system: Bridging the gap between human and machine translation. CoRR,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 648, + 424, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 424, + 660 + ], + "score": 1.0, + "content": "abs/1609.08144, 2016. URL http://arxiv.org/abs/1609.08144.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 581, + 506, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Chenglin Yang, Lingxi Xie, Siyuan Qiao, and Alan Yuille. Knowledge distillation in generations:", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 679, + 467, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 467, + 690 + ], + "score": 1.0, + "content": "More tolerant teachers educate better students. arXiv preprint arXiv:1805.05551, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 666, + 506, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Qi Ye, Sachan Devendra, Felix Matthieu, Padmanabhan Sarguna, and Neubig Graham. When and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 114, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "why are pre-trained word embeddings useful for neural machine translation. In HLT-NAACL,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 718, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 718, + 143, + 733 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Junho Yim, Donggyu Joo, Jihoon Bae, and Junmo Kim. A gift from knowledge distillation: Fast", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "optimization, network minimization and transfer learning. In The IEEE Conference on Computer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 348, + 117 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 348, + 117 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), volume 2, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ying Zhang, Tao Xiang, Timothy M Hospedales, and Huchuan Lu. Deep mutual learning. arXiv", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 264, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 264, + 146 + ], + "score": 1.0, + "content": "preprint arXiv:1706.00384, 6, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Junho Yim, Donggyu Joo, Jihoon Bae, and Junmo Kim. A gift from knowledge distillation: Fast", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "optimization, network minimization and transfer learning. In The IEEE Conference on Computer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 348, + 117 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 348, + 117 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), volume 2, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ying Zhang, Tao Xiang, Timothy M Hospedales, and Huchuan Lu. Deep mutual learning. arXiv", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 264, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 264, + 146 + ], + "score": 1.0, + "content": "preprint arXiv:1706.00384, 6, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 123, + 505, + 146 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 107, + 247, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 248, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 248, + 122 + ], + "score": 1.0, + "content": "1 DATASET DESCRIPTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 131, + 493, + 143 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 495, + 145 + ], + "score": 1.0, + "content": "We give a detailed description about the IWSLT,WMT and Ted Talk datasets used in experiments.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 148, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 235, + 161 + ], + "score": 1.0, + "content": "IWSLT: We collect 12 languages", + "type": "text" + }, + { + "bbox": [ + 235, + 150, + 246, + 159 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "English translation pairs from IWSLT evaluation campaign8 from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "year 2014 to 2016. Each language pair contains roughly 80K to 200K sentence pairs. We use the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "official validation and test sets for each language pair. The data sizes of the training set for each", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 182, + 291, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 143, + 193 + ], + "score": 1.0, + "content": "language", + "type": "text" + }, + { + "bbox": [ + 143, + 183, + 153, + 191 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 182, + 291, + 193 + ], + "score": 1.0, + "content": "English pair are listed in Table 11.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "table", + "bbox": [ + 177, + 201, + 434, + 263 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 177, + 201, + 434, + 263 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 177, + 201, + 434, + 263 + ], + "spans": [ + { + "bbox": [ + 177, + 201, + 434, + 263 + ], + "score": 0.977, + "html": "
LanguageArCsDeHeN1Pt
Training Data174K114K167K180K174K167K
LanguageRoRuThTrViZh
Training Data177K173K83K150K131K209K
", + "type": "table", + "image_path": "c03e6691604534996e6f5ac772ee9d52a46386363e82446498a61391212b920f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 177, + 201, + 434, + 221.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 177, + 221.66666666666666, + 434, + 242.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 177, + 242.33333333333331, + 434, + 263.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 133, + 270, + 477, + 282 + ], + "lines": [ + { + "bbox": [ + 132, + 269, + 479, + 284 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 342, + 284 + ], + "score": 1.0, + "content": "Table 11: The training data size on the 12 languages", + "type": "text" + }, + { + "bbox": [ + 342, + 272, + 353, + 281 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 269, + 479, + 284 + ], + "score": 1.0, + "content": "English on the IWSLT dataset.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 506, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 230, + 306 + ], + "score": 1.0, + "content": "WMT: We collect 6 languages", + "type": "text" + }, + { + "bbox": [ + 230, + 294, + 240, + 303 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 292, + 506, + 306 + ], + "score": 1.0, + "content": "English translation pairs from WMT translation task9. We use 5", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 143, + 316 + ], + "score": 1.0, + "content": "language", + "type": "text" + }, + { + "bbox": [ + 143, + 305, + 153, + 315 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "English translation pairs from WMT 2016 dataset: Cs-En, De-En, Fi-En, Ro-En, Ru-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "En and one other translation pair from WMT 2017 dataset: Lv-En. We use the official released", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 462, + 339 + ], + "score": 1.0, + "content": "validation and test sets for each language pair. The training data sizes of each language", + "type": "text" + }, + { + "bbox": [ + 463, + 327, + 473, + 336 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "English", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 337, + 231, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 231, + 348 + ], + "score": 1.0, + "content": "pair are shown in the Table 12.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 179, + 357, + 431, + 391 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 179, + 357, + 431, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 179, + 357, + 431, + 391 + ], + "spans": [ + { + "bbox": [ + 179, + 357, + 431, + 391 + ], + "score": 0.962, + "html": "
LanguageCsDeFiLvRoRu
Training Data1.0M4.5M2.5M4.5M2.2M2.1M
", + "type": "table", + "image_path": "c5ffc0cd70615b977bdc69f9b923c93a944d372f80e98a031e985bc0f177dc79.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 179, + 357, + 431, + 368.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 179, + 368.3333333333333, + 431, + 379.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 179, + 379.66666666666663, + 431, + 390.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 138, + 398, + 470, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 398, + 471, + 412 + ], + "spans": [ + { + "bbox": [ + 138, + 398, + 343, + 412 + ], + "score": 1.0, + "content": "Table 12: The training data size on the 6 languages", + "type": "text" + }, + { + "bbox": [ + 343, + 400, + 354, + 408 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 398, + 471, + 412 + ], + "score": 1.0, + "content": "English on the WMT dataset.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 506, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "Ted Talk: We use the common corpus of TED talk which contains translations between multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "languages (Ye et al., 2018)10. We select 44 languages in this corpus that has sufficient data for our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "experiments. We use the official validation and test sets for each language pair. The data sizes of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 374, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 225, + 466 + ], + "score": 1.0, + "content": "training set for each language", + "type": "text" + }, + { + "bbox": [ + 225, + 456, + 235, + 465 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 455, + 374, + 466 + ], + "score": 1.0, + "content": "English pair are listed in Table 13.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "table", + "bbox": [ + 106, + 474, + 515, + 590 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 474, + 515, + 590 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 474, + 515, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 515, + 590 + ], + "score": 0.98, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
Training Data214K174k103k45k168k134k196k11k151k24k20k
LanguageFrGlHeHiHrHuHyIdItJaKa
Training Data192K10K212K19K122K147K21K87K205K204K13K
LanguageKoKuLtMkMyNbNIPlPtbrPtRo
Training Data206K10K42K25K21K16K184K176K185K52K180K
LanguageRuSkS1SqSrSvThTrUkViZh
Training Data208K61K20K45K137K57K98K182K108K172K200K
", + "type": "table", + "image_path": "46e89d9b78b5e8969ab45f89aa283a9d330eaff05c618bad1c7ebfebf4396610.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 106, + 474, + 515, + 512.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 106, + 512.6666666666666, + 515, + 551.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 106, + 551.3333333333333, + 515, + 589.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 131, + 598, + 479, + 610 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 597, + 480, + 611 + ], + "spans": [ + { + "bbox": [ + 131, + 597, + 340, + 611 + ], + "score": 1.0, + "content": "Table 13: The training data size on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 340, + 599, + 352, + 608 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 597, + 480, + 611 + ], + "score": 1.0, + "content": "English on the Ted talk dataset.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + } + ], + "index": 26.0 + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 278, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 635, + 280, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 280, + 652 + ], + "score": 1.0, + "content": "2 LANGUAGE NAME AND CODE", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 675 + ], + "score": 1.0, + "content": "The language names and their corresponding language codes according to ISO 639-1 standard11 are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 672, + 180, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 180, + 684 + ], + "score": 1.0, + "content": "listed in Table 14.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 117, + 689, + 496, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 687, + 194, + 700 + ], + "spans": [ + { + "bbox": [ + 118, + 687, + 194, + 700 + ], + "score": 1.0, + "content": "8https://wit3.fbk.eu/", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 697, + 495, + 712 + ], + "spans": [ + { + "bbox": [ + 117, + 697, + 495, + 712 + ], + "score": 1.0, + "content": "9http://www.statmt.org/wmt16/translation-task.html, http://www.statmt.org/wmt17/translation-task.html", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 707, + 316, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 707, + 316, + 724 + ], + "score": 1.0, + "content": "10https://github.com/neulab/word-embeddings-for-nmt", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 719, + 333, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 333, + 734 + ], + "score": 1.0, + "content": "11https://www.loc.gov/standards/iso639-2/php/code list.php", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 107, + 247, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 248, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 248, + 122 + ], + "score": 1.0, + "content": "1 DATASET DESCRIPTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 131, + 493, + 143 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 495, + 145 + ], + "score": 1.0, + "content": "We give a detailed description about the IWSLT,WMT and Ted Talk datasets used in experiments.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 129, + 495, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 148, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 235, + 161 + ], + "score": 1.0, + "content": "IWSLT: We collect 12 languages", + "type": "text" + }, + { + "bbox": [ + 235, + 150, + 246, + 159 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "English translation pairs from IWSLT evaluation campaign8 from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "year 2014 to 2016. Each language pair contains roughly 80K to 200K sentence pairs. We use the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "official validation and test sets for each language pair. The data sizes of the training set for each", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 182, + 291, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 143, + 193 + ], + "score": 1.0, + "content": "language", + "type": "text" + }, + { + "bbox": [ + 143, + 183, + 153, + 191 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 182, + 291, + 193 + ], + "score": 1.0, + "content": "English pair are listed in Table 11.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 148, + 505, + 193 + ] + }, + { + "type": "table", + "bbox": [ + 177, + 201, + 434, + 263 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 177, + 201, + 434, + 263 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 177, + 201, + 434, + 263 + ], + "spans": [ + { + "bbox": [ + 177, + 201, + 434, + 263 + ], + "score": 0.977, + "html": "
LanguageArCsDeHeN1Pt
Training Data174K114K167K180K174K167K
LanguageRoRuThTrViZh
Training Data177K173K83K150K131K209K
", + "type": "table", + "image_path": "c03e6691604534996e6f5ac772ee9d52a46386363e82446498a61391212b920f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 177, + 201, + 434, + 221.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 177, + 221.66666666666666, + 434, + 242.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 177, + 242.33333333333331, + 434, + 263.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 133, + 270, + 477, + 282 + ], + "lines": [ + { + "bbox": [ + 132, + 269, + 479, + 284 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 342, + 284 + ], + "score": 1.0, + "content": "Table 11: The training data size on the 12 languages", + "type": "text" + }, + { + "bbox": [ + 342, + 272, + 353, + 281 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 269, + 479, + 284 + ], + "score": 1.0, + "content": "English on the IWSLT dataset.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 132, + 269, + 479, + 284 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 506, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 230, + 306 + ], + "score": 1.0, + "content": "WMT: We collect 6 languages", + "type": "text" + }, + { + "bbox": [ + 230, + 294, + 240, + 303 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 292, + 506, + 306 + ], + "score": 1.0, + "content": "English translation pairs from WMT translation task9. We use 5", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 143, + 316 + ], + "score": 1.0, + "content": "language", + "type": "text" + }, + { + "bbox": [ + 143, + 305, + 153, + 315 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "English translation pairs from WMT 2016 dataset: Cs-En, De-En, Fi-En, Ro-En, Ru-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "En and one other translation pair from WMT 2017 dataset: Lv-En. We use the official released", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 462, + 339 + ], + "score": 1.0, + "content": "validation and test sets for each language pair. The training data sizes of each language", + "type": "text" + }, + { + "bbox": [ + 463, + 327, + 473, + 336 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "English", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 337, + 231, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 231, + 348 + ], + "score": 1.0, + "content": "pair are shown in the Table 12.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 292, + 506, + 348 + ] + }, + { + "type": "table", + "bbox": [ + 179, + 357, + 431, + 391 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 179, + 357, + 431, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 179, + 357, + 431, + 391 + ], + "spans": [ + { + "bbox": [ + 179, + 357, + 431, + 391 + ], + "score": 0.962, + "html": "
LanguageCsDeFiLvRoRu
Training Data1.0M4.5M2.5M4.5M2.2M2.1M
", + "type": "table", + "image_path": "c5ffc0cd70615b977bdc69f9b923c93a944d372f80e98a031e985bc0f177dc79.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 179, + 357, + 431, + 368.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 179, + 368.3333333333333, + 431, + 379.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 179, + 379.66666666666663, + 431, + 390.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 138, + 398, + 470, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 398, + 471, + 412 + ], + "spans": [ + { + "bbox": [ + 138, + 398, + 343, + 412 + ], + "score": 1.0, + "content": "Table 12: The training data size on the 6 languages", + "type": "text" + }, + { + "bbox": [ + 343, + 400, + 354, + 408 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 398, + 471, + 412 + ], + "score": 1.0, + "content": "English on the WMT dataset.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 506, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "Ted Talk: We use the common corpus of TED talk which contains translations between multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "languages (Ye et al., 2018)10. We select 44 languages in this corpus that has sufficient data for our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "experiments. We use the official validation and test sets for each language pair. The data sizes of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 374, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 225, + 466 + ], + "score": 1.0, + "content": "training set for each language", + "type": "text" + }, + { + "bbox": [ + 225, + 456, + 235, + 465 + ], + "score": 0.81, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 455, + 374, + 466 + ], + "score": 1.0, + "content": "English pair are listed in Table 13.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 420, + 506, + 466 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 474, + 515, + 590 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 474, + 515, + 590 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 474, + 515, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 515, + 590 + ], + "score": 0.98, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
Training Data214K174k103k45k168k134k196k11k151k24k20k
LanguageFrGlHeHiHrHuHyIdItJaKa
Training Data192K10K212K19K122K147K21K87K205K204K13K
LanguageKoKuLtMkMyNbNIPlPtbrPtRo
Training Data206K10K42K25K21K16K184K176K185K52K180K
LanguageRuSkS1SqSrSvThTrUkViZh
Training Data208K61K20K45K137K57K98K182K108K172K200K
", + "type": "table", + "image_path": "46e89d9b78b5e8969ab45f89aa283a9d330eaff05c618bad1c7ebfebf4396610.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 106, + 474, + 515, + 512.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 106, + 512.6666666666666, + 515, + 551.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 106, + 551.3333333333333, + 515, + 589.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 131, + 598, + 479, + 610 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 597, + 480, + 611 + ], + "spans": [ + { + "bbox": [ + 131, + 597, + 340, + 611 + ], + "score": 1.0, + "content": "Table 13: The training data size on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 340, + 599, + 352, + 608 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 597, + 480, + 611 + ], + "score": 1.0, + "content": "English on the Ted talk dataset.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + } + ], + "index": 26.0 + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 278, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 635, + 280, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 280, + 652 + ], + "score": 1.0, + "content": "2 LANGUAGE NAME AND CODE", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 675 + ], + "score": 1.0, + "content": "The language names and their corresponding language codes according to ISO 639-1 standard11 are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 672, + 180, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 180, + 684 + ], + "score": 1.0, + "content": "listed in Table 14.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 659, + 506, + 684 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 127, + 80, + 486, + 225 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 127, + 80, + 486, + 225 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 80, + 486, + 225 + ], + "spans": [ + { + "bbox": [ + 127, + 80, + 486, + 225 + ], + "score": 0.983, + "html": "
LanguageCodeLanguageCodeLanguageCodeLanguageCode
ArabicArBulgarianBgCzechCsDanishDa
GermanDeGreekElEnglishEnSpanishEs
PersianFaFinnishFiFrenchFrGalicianGl
HebrewHeHindiHiCroatianHrHungarianHu
ArmenianHyIndonesianIdItalianItJapaneseJa
GeorgianKaKoreanKoKurdishKuLithuanianLt
LatvianLvMacedonianMkBurmeseMyNorwegianNb
DutchN1PolishPlPortuguesePtRomanianRo
RussianRuSlovakSkSlovenianS1AlbanianSq
SerbianSrSwedishSvThaiThTurkishTr
UkrainianUkVietnameseViChineseZh
", + "type": "table", + "image_path": "97fa5db2adf2374211e6086c20a0156114c3741b48fd080f72f2b3771edc56b7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 80, + 486, + 128.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 128.33333333333334, + 486, + 176.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 176.66666666666669, + 486, + 225.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 232, + 506, + 266 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "score": 1.0, + "content": "Table 14: The ISO 639-1 code of each language in our experiments. There are two extra language", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "codes in our datasets: Ptbr represents Portuguese spoken in Brazil, Frca represents French spoken", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 253, + 152, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 152, + 267 + ], + "score": 1.0, + "content": "in Canada.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 286, + 296, + 300 + ], + "lines": [ + { + "bbox": [ + 104, + 285, + 298, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 298, + 302 + ], + "score": 1.0, + "content": "3 RESULTS ON TED TALK DATASET", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 105, + 378, + 506, + 657 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 311, + 505, + 367 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 267, + 323 + ], + "score": 1.0, + "content": "The detailed results of the 44 languages", + "type": "text" + }, + { + "bbox": [ + 268, + 313, + 278, + 322 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "English on the Ted talk dataset are listed in Table 15. It", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "can be seen that while multilingual baseline performs worse than the individual model, multilingual", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 345 + ], + "score": 1.0, + "content": "model based on our method nearly matches and even outperforms the individual model. Note that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "the multilingual model handles 44 languages in total, which means our method can reduce the model", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 355, + 304, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 181, + 369 + ], + "score": 1.0, + "content": "parameters size to", + "type": "text" + }, + { + "bbox": [ + 181, + 355, + 202, + 367 + ], + "score": 0.54, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 355, + 304, + 369 + ], + "score": 1.0, + "content": "without loss of accuracy.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "table_body", + "bbox": [ + 105, + 378, + 506, + 657 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 657 + ], + "score": 0.986, + "html": "
LanguageArBgCsDaDeE1EsEtFa
Individual31.0738.6426.4238.2134.6336.6941.207.4326.67
Multilingual (Baseline)27.8427.7627.1740.4132.8536.0439.8014.8624.93
Multilingual (Our method)29.5729.1828.3042.2334.5337.4941.4315.6326.76
LanguageFiFrcaFrGlHeHiHrHuHy
Individual10.7818.5239.6212.6436.8110.8434.1424.6712.30
Multilingual (Baseline)16.1233.0838.2730.3232.9619.9334.3922.7620.25
Multilingual (Our method)17.2234.3239.7531.935.2221.0035.624.5621.17
LanguageIdItJaKaKoKuLtMkMy
Individual29.2038.0613.317.0618.545.6318.1921.937.53
Multilingual (Baseline)29.0836.0212.3316.7116.7111.8320.9631.8513.85
Multilingual (Our method)30.5637.5013.2818.2618.1413.3822.6532.6515.16
LanguageNbNIPIPtbrPtRoRuSkSI
Individual27.2835.8522.9844.2833.8134.0724.3625.6711.80
Multilingual (Baseline)39.8833.9723.5042.9640.5933.0324.0228.9722.52
Multilingual (Our method)41.3535.6524.3044.4142.5734.7325.0129.9023.67
LanguageSqSrSvThTrUkViZh
Individual29.7032.1334.5320.9524.4625.7626.3812.56
Multilingual (Baseline)33.0532.2735.9221.5021.7926.8225.7618.81
Multilingual (Our method)34.7333.7136.9222.1223.6727.8026.5319.39
", + "type": "table", + "image_path": "1aaa1a1b862bd77c4e97c9a0be8d1e051b43dac324a8086882a849cbbff2b76f.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 105, + 378, + 506, + 471.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 105, + 471.0, + 506, + 564.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 564.0, + 506, + 657.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 664, + 504, + 686 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 662, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 450, + 677 + ], + "score": 1.0, + "content": "Table 15: BLEU scores of the individual and multilingual models on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 451, + 665, + 461, + 674 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 662, + 505, + 677 + ], + "score": 1.0, + "content": "English on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 674, + 189, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 189, + 687 + ], + "score": 1.0, + "content": "the Ted talk dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 13 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 127, + 80, + 486, + 225 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 127, + 80, + 486, + 225 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 80, + 486, + 225 + ], + "spans": [ + { + "bbox": [ + 127, + 80, + 486, + 225 + ], + "score": 0.983, + "html": "
LanguageCodeLanguageCodeLanguageCodeLanguageCode
ArabicArBulgarianBgCzechCsDanishDa
GermanDeGreekElEnglishEnSpanishEs
PersianFaFinnishFiFrenchFrGalicianGl
HebrewHeHindiHiCroatianHrHungarianHu
ArmenianHyIndonesianIdItalianItJapaneseJa
GeorgianKaKoreanKoKurdishKuLithuanianLt
LatvianLvMacedonianMkBurmeseMyNorwegianNb
DutchN1PolishPlPortuguesePtRomanianRo
RussianRuSlovakSkSlovenianS1AlbanianSq
SerbianSrSwedishSvThaiThTurkishTr
UkrainianUkVietnameseViChineseZh
", + "type": "table", + "image_path": "97fa5db2adf2374211e6086c20a0156114c3741b48fd080f72f2b3771edc56b7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 80, + 486, + 128.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 128.33333333333334, + 486, + 176.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 176.66666666666669, + 486, + 225.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 232, + 506, + 266 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "score": 1.0, + "content": "Table 14: The ISO 639-1 code of each language in our experiments. There are two extra language", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "codes in our datasets: Ptbr represents Portuguese spoken in Brazil, Frca represents French spoken", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 253, + 152, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 152, + 267 + ], + "score": 1.0, + "content": "in Canada.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 286, + 296, + 300 + ], + "lines": [ + { + "bbox": [ + 104, + 285, + 298, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 298, + 302 + ], + "score": 1.0, + "content": "3 RESULTS ON TED TALK DATASET", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 105, + 378, + 506, + 657 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 311, + 505, + 367 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 267, + 323 + ], + "score": 1.0, + "content": "The detailed results of the 44 languages", + "type": "text" + }, + { + "bbox": [ + 268, + 313, + 278, + 322 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "English on the Ted talk dataset are listed in Table 15. It", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "can be seen that while multilingual baseline performs worse than the individual model, multilingual", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 345 + ], + "score": 1.0, + "content": "model based on our method nearly matches and even outperforms the individual model. Note that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "the multilingual model handles 44 languages in total, which means our method can reduce the model", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 355, + 304, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 181, + 369 + ], + "score": 1.0, + "content": "parameters size to", + "type": "text" + }, + { + "bbox": [ + 181, + 355, + 202, + 367 + ], + "score": 0.54, + "content": "1 / 4 4", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 355, + 304, + 369 + ], + "score": 1.0, + "content": "without loss of accuracy.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "table_body", + "bbox": [ + 105, + 378, + 506, + 657 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 657 + ], + "score": 0.986, + "html": "
LanguageArBgCsDaDeE1EsEtFa
Individual31.0738.6426.4238.2134.6336.6941.207.4326.67
Multilingual (Baseline)27.8427.7627.1740.4132.8536.0439.8014.8624.93
Multilingual (Our method)29.5729.1828.3042.2334.5337.4941.4315.6326.76
LanguageFiFrcaFrGlHeHiHrHuHy
Individual10.7818.5239.6212.6436.8110.8434.1424.6712.30
Multilingual (Baseline)16.1233.0838.2730.3232.9619.9334.3922.7620.25
Multilingual (Our method)17.2234.3239.7531.935.2221.0035.624.5621.17
LanguageIdItJaKaKoKuLtMkMy
Individual29.2038.0613.317.0618.545.6318.1921.937.53
Multilingual (Baseline)29.0836.0212.3316.7116.7111.8320.9631.8513.85
Multilingual (Our method)30.5637.5013.2818.2618.1413.3822.6532.6515.16
LanguageNbNIPIPtbrPtRoRuSkSI
Individual27.2835.8522.9844.2833.8134.0724.3625.6711.80
Multilingual (Baseline)39.8833.9723.5042.9640.5933.0324.0228.9722.52
Multilingual (Our method)41.3535.6524.3044.4142.5734.7325.0129.9023.67
LanguageSqSrSvThTrUkViZh
Individual29.7032.1334.5320.9524.4625.7626.3812.56
Multilingual (Baseline)33.0532.2735.9221.5021.7926.8225.7618.81
Multilingual (Our method)34.7333.7136.9222.1223.6727.8026.5319.39
", + "type": "table", + "image_path": "1aaa1a1b862bd77c4e97c9a0be8d1e051b43dac324a8086882a849cbbff2b76f.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 105, + 378, + 506, + 471.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 105, + 471.0, + 506, + 564.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 564.0, + 506, + 657.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 664, + 504, + 686 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 662, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 450, + 677 + ], + "score": 1.0, + "content": "Table 15: BLEU scores of the individual and multilingual models on the 44 languages", + "type": "text" + }, + { + "bbox": [ + 451, + 665, + 461, + 674 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 662, + 505, + 677 + ], + "score": 1.0, + "content": "English on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 674, + 189, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 189, + 687 + ], + "score": 1.0, + "content": "the Ted talk dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 13 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S1gUsoR9YX/S1gUsoR9YX_model.json b/parse/train/S1gUsoR9YX/S1gUsoR9YX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..ecd4b4884aefb89adf4d298328ff9e1408f19b93 --- /dev/null +++ b/parse/train/S1gUsoR9YX/S1gUsoR9YX_model.json @@ -0,0 +1,17254 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 838, + 1301, + 838, + 1301, + 1233, + 398, + 1233 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1367, + 1404, + 1367, + 1404, + 1643, + 298, + 1643 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1657, + 1403, + 1657, + 1403, + 1873, + 298, + 1873 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 301, + 218, + 1398, + 218, + 1398, + 323, + 301, + 323 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 315, + 438, + 862, + 438, + 862, + 500, + 315, + 500 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 315, + 530, + 767, + 530, + 767, + 592, + 315, + 592 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 332, + 1975, + 737, + 1975, + 737, + 2033, + 332, + 2033 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 300, + 1888, + 1399, + 1888, + 1399, + 1950, + 300, + 1950 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 316, + 372, + 1175, + 372, + 1175, + 408, + 316, + 408 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 314, + 622, + 1249, + 622, + 1249, + 684, + 314, + 684 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 302, + 1296, + 573, + 1296, + 573, + 1331, + 302, + 1331 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.874 + }, + { + "category_id": 0, + "poly": [ + 773, + 766, + 926, + 766, + 926, + 799, + 773, + 799 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.715 + }, + { + "category_id": 13, + "poly": [ + 603, + 374, + 653, + 374, + 653, + 406, + 603, + 406 + ], + "score": 0.58, + "latex": "\\mathbf { H e ^ { 3 } }" + }, + { + "category_id": 13, + "poly": [ + 729, + 373, + 788, + 373, + 788, + 408, + 729, + 408 + ], + "score": 0.53, + "latex": "{ \\bf { Q } i n } ^ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1404.0, + 217.0, + 1404.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 273.0, + 1005.0, + 273.0, + 1005.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1971.0, + 739.0, + 1971.0, + 739.0, + 2005.0, + 331.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2001.0, + 716.0, + 2001.0, + 716.0, + 2038.0, + 332.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1293.0, + 579.0, + 1293.0, + 579.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 765.0, + 932.0, + 765.0, + 932.0, + 802.0, + 769.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 835.0, + 1303.0, + 835.0, + 1303.0, + 873.0, + 393.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 865.0, + 1306.0, + 865.0, + 1306.0, + 906.0, + 393.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 898.0, + 1306.0, + 898.0, + 1306.0, + 933.0, + 394.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 928.0, + 1306.0, + 928.0, + 1306.0, + 963.0, + 394.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 959.0, + 1306.0, + 959.0, + 1306.0, + 994.0, + 393.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 991.0, + 1305.0, + 991.0, + 1305.0, + 1022.0, + 393.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1021.0, + 1305.0, + 1021.0, + 1305.0, + 1053.0, + 393.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1050.0, + 1305.0, + 1050.0, + 1305.0, + 1085.0, + 393.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1080.0, + 1305.0, + 1080.0, + 1305.0, + 1114.0, + 394.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1112.0, + 1306.0, + 1112.0, + 1306.0, + 1147.0, + 395.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1142.0, + 1304.0, + 1142.0, + 1304.0, + 1174.0, + 395.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1172.0, + 1305.0, + 1172.0, + 1305.0, + 1208.0, + 392.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1204.0, + 1118.0, + 1204.0, + 1118.0, + 1236.0, + 395.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1369.0, + 1405.0, + 1369.0, + 1405.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1432.0, + 292.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1465.0, + 293.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1458.0, + 1406.0, + 1458.0, + 1406.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1488.0, + 1406.0, + 1488.0, + 1406.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1518.0, + 1405.0, + 1518.0, + 1405.0, + 1557.0, + 293.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 1404.0, + 1548.0, + 1404.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1621.0, + 291.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1612.0, + 1186.0, + 1612.0, + 1186.0, + 1647.0, + 292.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 1407.0, + 1688.0, + 1407.0, + 1727.0, + 293.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1407.0, + 1749.0, + 1407.0, + 1787.0, + 293.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1780.0, + 1407.0, + 1780.0, + 1407.0, + 1818.0, + 293.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1845.0, + 294.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1839.0, + 1004.0, + 1839.0, + 1004.0, + 1880.0, + 292.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 433.0, + 610.0, + 433.0, + 610.0, + 471.0, + 314.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 467.0, + 863.0, + 467.0, + 863.0, + 502.0, + 315.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 525.0, + 556.0, + 525.0, + 556.0, + 569.0, + 311.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 562.0, + 768.0, + 562.0, + 768.0, + 596.0, + 313.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1887.0, + 1404.0, + 1887.0, + 1404.0, + 1923.0, + 295.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1918.0, + 1403.0, + 1918.0, + 1403.0, + 1953.0, + 295.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 367.0, + 602.0, + 367.0, + 602.0, + 414.0, + 308.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 367.0, + 728.0, + 367.0, + 728.0, + 414.0, + 654.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 367.0, + 1182.0, + 367.0, + 1182.0, + 414.0, + 789.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 619.0, + 1251.0, + 619.0, + 1251.0, + 660.0, + 313.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 653.0, + 580.0, + 653.0, + 580.0, + 689.0, + 313.0, + 689.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1404, + 1637, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 550, + 1404, + 550, + 1404, + 886, + 298, + 886 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 535, + 298, + 535 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 903, + 1403, + 903, + 1403, + 1056, + 299, + 1056 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1231, + 1403, + 1231, + 1403, + 1370, + 298, + 1370 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1384, + 1403, + 1384, + 1403, + 1538, + 299, + 1538 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 300, + 1102, + 557, + 1102, + 557, + 1139, + 300, + 1139 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1578, + 625, + 1578, + 625, + 1610, + 300, + 1610 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 300, + 1174, + 770, + 1174, + 770, + 1206, + 300, + 1206 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.702 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.175 + }, + { + "category_id": 13, + "poly": [ + 498, + 1446, + 607, + 1446, + 607, + 1480, + 498, + 1480 + ], + "score": 0.95, + "latex": "P ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 496, + 1300, + 735, + 1300, + 735, + 1342, + 496, + 1342 + ], + "score": 0.93, + "latex": "\\prod _ { t = 1 } ^ { T _ { y } } P ( y _ { t } | y _ { < t } , x ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 717, + 1232, + 974, + 1232, + 974, + 1266, + 717, + 1266 + ], + "score": 0.89, + "latex": "D = \\{ ( x , y ) \\in \\mathcal { X } { \\times } \\mathcal { Y } \\}" + }, + { + "category_id": 13, + "poly": [ + 824, + 1313, + 868, + 1313, + 868, + 1340, + 824, + 1340 + ], + "score": 0.88, + "latex": "y _ { < t }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1481, + 1282, + 1481, + 1282, + 1509, + 1238, + 1509 + ], + "score": 0.88, + "latex": "y _ { < t }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1339, + 330, + 1339, + 330, + 1373, + 297, + 1373 + ], + "score": 0.87, + "latex": "T _ { y }" + }, + { + "category_id": 13, + "poly": [ + 796, + 1481, + 823, + 1481, + 823, + 1508, + 796, + 1508 + ], + "score": 0.83, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 513, + 1509, + 531, + 1509, + 531, + 1535, + 513, + 1535 + ], + "score": 0.8, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1447, + 1402, + 1447, + 1402, + 1474, + 1381, + 1474 + ], + "score": 0.78, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 608, + 1346, + 626, + 1346, + 626, + 1371, + 608, + 1371 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1311, + 1345, + 1311, + 1345, + 1335, + 1332, + 1335 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 771, + 1264, + 1185, + 1264, + 1185, + 1304, + 771, + 1304 + ], + "score": 0.75, + "latex": "\\begin{array} { r } { - \\sum _ { ( x , y ) \\in D } \\log { P ( y | x ; \\theta ) } . \\ P ( y | x ; \\theta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1235, + 1401, + 1235, + 1401, + 1261, + 1384, + 1261 + ], + "score": 0.73, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1263, + 1185, + 1263, + 1185, + 1297, + 1076, + 1297 + ], + "score": 0.67, + "latex": "P ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 1169, + 994, + 1229, + 994, + 1229, + 1028, + 1169, + 1028 + ], + "score": 0.56, + "latex": "1 / 4 4" + }, + { + "category_id": 13, + "poly": [ + 740, + 1669, + 813, + 1669, + 813, + 1698, + 740, + 1698 + ], + "score": 0.36, + "latex": "2 0 1 5 \\mathrm { a }" + }, + { + "category_id": 13, + "poly": [ + 772, + 1266, + 921, + 1266, + 921, + 1304, + 772, + 1304 + ], + "score": 0.27, + "latex": "- \\sum _ { ( x , y ) \\in D } ]" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1099.0, + 561.0, + 1099.0, + 561.0, + 1146.0, + 291.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1578.0, + 630.0, + 1578.0, + 630.0, + 1614.0, + 295.0, + 1614.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, + 1174.0, + 774.0, + 1174.0, + 774.0, + 1210.0, + 295.0, + 1210.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": [ + 292.0, + 1635.0, + 1403.0, + 1635.0, + 1403.0, + 1672.0, + 292.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1667.0, + 739.0, + 1667.0, + 739.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1667.0, + 1405.0, + 1667.0, + 1405.0, + 1703.0, + 814.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1405.0, + 1696.0, + 1405.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1404.0, + 1759.0, + 1404.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1824.0, + 292.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1887.0, + 291.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1408.0, + 1940.0, + 1408.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1402.0, + 551.0, + 1402.0, + 585.0, + 293.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 1406.0, + 583.0, + 1406.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 1405.0, + 610.0, + 1405.0, + 647.0, + 292.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 706.0, + 296.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 1404.0, + 703.0, + 1404.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 733.0, + 1404.0, + 733.0, + 1404.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 761.0, + 1405.0, + 761.0, + 1405.0, + 802.0, + 292.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1404.0, + 794.0, + 1404.0, + 831.0, + 293.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 825.0, + 1406.0, + 825.0, + 1406.0, + 863.0, + 292.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 857.0, + 574.0, + 857.0, + 574.0, + 888.0, + 293.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 415.0, + 294.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 448.0, + 293.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 442.0, + 1405.0, + 442.0, + 1405.0, + 478.0, + 293.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 1404.0, + 476.0, + 1404.0, + 508.0, + 296.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 505.0, + 556.0, + 505.0, + 556.0, + 537.0, + 296.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 902.0, + 1407.0, + 902.0, + 1407.0, + 939.0, + 297.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 931.0, + 1404.0, + 931.0, + 1404.0, + 968.0, + 295.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 961.0, + 1407.0, + 961.0, + 1407.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1168.0, + 994.0, + 1168.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 994.0, + 1405.0, + 994.0, + 1405.0, + 1031.0, + 1230.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1026.0, + 1144.0, + 1026.0, + 1144.0, + 1059.0, + 297.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1230.0, + 716.0, + 1230.0, + 716.0, + 1268.0, + 293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1230.0, + 1383.0, + 1230.0, + 1383.0, + 1268.0, + 975.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1230.0, + 1407.0, + 1230.0, + 1407.0, + 1268.0, + 1402.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1256.0, + 770.0, + 1256.0, + 770.0, + 1309.0, + 287.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1256.0, + 1412.0, + 1256.0, + 1412.0, + 1309.0, + 1186.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1297.0, + 495.0, + 1297.0, + 495.0, + 1352.0, + 288.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1297.0, + 823.0, + 1297.0, + 823.0, + 1352.0, + 736.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1297.0, + 1331.0, + 1297.0, + 1331.0, + 1352.0, + 869.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1297.0, + 1409.0, + 1297.0, + 1409.0, + 1352.0, + 1346.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1335.0, + 296.0, + 1335.0, + 296.0, + 1378.0, + 293.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1335.0, + 607.0, + 1335.0, + 607.0, + 1378.0, + 331.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1335.0, + 638.0, + 1335.0, + 638.0, + 1378.0, + 627.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 1407.0, + 1384.0, + 1407.0, + 1421.0, + 295.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 1403.0, + 1412.0, + 1403.0, + 1450.0, + 294.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 497.0, + 1445.0, + 497.0, + 1482.0, + 295.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1445.0, + 1380.0, + 1445.0, + 1380.0, + 1482.0, + 608.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1474.0, + 795.0, + 1474.0, + 795.0, + 1514.0, + 293.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1474.0, + 1237.0, + 1474.0, + 1237.0, + 1514.0, + 824.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1474.0, + 1405.0, + 1474.0, + 1405.0, + 1514.0, + 1283.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 512.0, + 1507.0, + 512.0, + 1543.0, + 293.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1507.0, + 542.0, + 1507.0, + 542.0, + 1543.0, + 532.0, + 1543.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 546, + 1405, + 546, + 1405, + 913, + 298, + 913 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 308, + 1402, + 308, + 1402, + 430, + 299, + 430 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 929, + 1403, + 929, + 1403, + 1052, + 299, + 1052 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1403, + 1942, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 303, + 1833, + 1398, + 1833, + 1398, + 1926, + 303, + 1926 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1190, + 1403, + 1190, + 1403, + 1405, + 299, + 1405 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 513, + 1626, + 1184, + 1626, + 1184, + 1807, + 513, + 1807 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 1519, + 1403, + 1519, + 1403, + 1613, + 298, + 1613 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1399, + 229, + 1399, + 293, + 294, + 293 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 300, + 1457, + 782, + 1457, + 782, + 1490, + 300, + 1490 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 299, + 1112, + 481, + 1112, + 481, + 1147, + 299, + 1147 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1701, + 1400, + 1701, + 1400, + 1731, + 1366, + 1731 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 484, + 702, + 484, + 702, + 514, + 301, + 514 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.656 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.42 + }, + { + "category_id": 14, + "poly": [ + 512, + 1622, + 1186, + 1622, + 1186, + 1810, + 512, + 1810 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { { \\mathcal { L } } _ { \\mathrm { N L L } } ( D ; \\theta ) = - \\displaystyle \\sum _ { ( x , y ) \\in D } \\log P ( y | x ; \\theta ) , } \\\\ & { \\log P ( y | x ; \\theta ) = \\displaystyle \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } \\mathbb { 1 } \\{ y _ { t } = k \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1091, + 2003, + 1278, + 2003, + 1278, + 2036, + 1091, + 2036 + ], + "score": 0.93, + "latex": "Q \\big ( y _ { t } | y _ { < t } , x ; \\theta _ { T } \\big )" + }, + { + "category_id": 13, + "poly": [ + 385, + 1520, + 658, + 1520, + 658, + 1555, + 385, + 1555 + ], + "score": 0.93, + "latex": "D = \\{ ( x , y ) \\in \\mathcal { X } \\times \\mathcal { Y } \\}" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1865, + 1335, + 1865, + 1335, + 1898, + 1267, + 1898 + ], + "score": 0.92, + "latex": "P ( \\cdot | \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 530, + 1864, + 583, + 1864, + 583, + 1897, + 530, + 1897 + ], + "score": 0.91, + "latex": "\\mathbb { 1 } \\{ \\cdot \\}" + }, + { + "category_id": 13, + "poly": [ + 803, + 1835, + 843, + 1835, + 843, + 1868, + 803, + 1868 + ], + "score": 0.9, + "latex": "| V |" + }, + { + "category_id": 13, + "poly": [ + 372, + 1836, + 404, + 1836, + 404, + 1868, + 372, + 1868 + ], + "score": 0.89, + "latex": "T _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1841, + 1374, + 1841, + 1374, + 1866, + 1348, + 1866 + ], + "score": 0.85, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 801, + 1554, + 827, + 1554, + 827, + 1580, + 801, + 1580 + ], + "score": 0.85, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1030, + 2007, + 1056, + 2007, + 1056, + 2035, + 1030, + 2035 + ], + "score": 0.84, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 691, + 1900, + 705, + 1900, + 705, + 1922, + 691, + 1922 + ], + "score": 0.84, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 297, + 2003, + 332, + 2003, + 332, + 2034, + 297, + 2034 + ], + "score": 0.82, + "latex": "\\theta _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1554, + 1192, + 1554, + 1192, + 1580, + 1175, + 1580 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 338, + 1867, + 351, + 1867, + 351, + 1892, + 338, + 1892 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 977, + 1946, + 993, + 1946, + 993, + 1969, + 977, + 1969 + ], + "score": 0.76, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1456.0, + 785.0, + 1456.0, + 785.0, + 1492.0, + 293.0, + 1492.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": [ + 290.0, + 1106.0, + 487.0, + 1106.0, + 487.0, + 1156.0, + 290.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 706.0, + 482.0, + 706.0, + 520.0, + 294.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 1406.0, + 546.0, + 1406.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 577.0, + 1405.0, + 577.0, + 1405.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 609.0, + 1406.0, + 609.0, + 1406.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 672.0, + 295.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 665.0, + 1406.0, + 665.0, + 1406.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 699.0, + 1406.0, + 699.0, + 1406.0, + 737.0, + 293.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1403.0, + 731.0, + 1403.0, + 765.0, + 293.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 757.0, + 1406.0, + 757.0, + 1406.0, + 798.0, + 291.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 790.0, + 1406.0, + 790.0, + 1406.0, + 824.0, + 295.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 1403.0, + 821.0, + 1403.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 886.0, + 295.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 500.0, + 882.0, + 500.0, + 921.0, + 294.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 344.0, + 293.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1406.0, + 338.0, + 1406.0, + 374.0, + 293.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 367.0, + 1406.0, + 367.0, + 1406.0, + 404.0, + 292.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 400.0, + 1099.0, + 400.0, + 1099.0, + 433.0, + 294.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 928.0, + 1407.0, + 928.0, + 1407.0, + 963.0, + 292.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 1403.0, + 960.0, + 1403.0, + 993.0, + 295.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1405.0, + 991.0, + 1405.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 714.0, + 1021.0, + 714.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 976.0, + 1940.0, + 976.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1978.0, + 994.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 2002.0, + 1029.0, + 2002.0, + 1029.0, + 2039.0, + 333.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 2002.0, + 1090.0, + 2002.0, + 1090.0, + 2039.0, + 1057.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2039.0, + 1279.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 371.0, + 1830.0, + 371.0, + 1871.0, + 295.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1830.0, + 802.0, + 1830.0, + 802.0, + 1871.0, + 405.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1830.0, + 1347.0, + 1830.0, + 1347.0, + 1871.0, + 844.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1830.0, + 1406.0, + 1830.0, + 1406.0, + 1871.0, + 1375.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1861.0, + 337.0, + 1861.0, + 337.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1861.0, + 529.0, + 1861.0, + 529.0, + 1900.0, + 352.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1861.0, + 1266.0, + 1861.0, + 1266.0, + 1900.0, + 584.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1861.0, + 1404.0, + 1861.0, + 1404.0, + 1900.0, + 1336.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1894.0, + 690.0, + 1894.0, + 690.0, + 1928.0, + 297.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1894.0, + 717.0, + 1894.0, + 717.0, + 1928.0, + 706.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1192.0, + 1403.0, + 1192.0, + 1403.0, + 1226.0, + 295.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1257.0, + 295.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1253.0, + 1404.0, + 1253.0, + 1404.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1283.0, + 1404.0, + 1283.0, + 1404.0, + 1317.0, + 295.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 1404.0, + 1315.0, + 1404.0, + 1345.0, + 295.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1339.0, + 1407.0, + 1339.0, + 1407.0, + 1381.0, + 292.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 1280.0, + 1374.0, + 1280.0, + 1408.0, + 295.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1517.0, + 384.0, + 1517.0, + 384.0, + 1556.0, + 293.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1517.0, + 1404.0, + 1517.0, + 1404.0, + 1556.0, + 659.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 800.0, + 1551.0, + 800.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1551.0, + 1174.0, + 1551.0, + 1174.0, + 1585.0, + 828.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1585.0, + 1193.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1579.0, + 427.0, + 1579.0, + 427.0, + 1617.0, + 292.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1404.0, + 225.0, + 1404.0, + 269.0, + 292.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1213.0, + 261.0, + 1213.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 916, + 1405, + 916, + 1405, + 1222, + 297, + 1222 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 712, + 1404, + 712, + 1404, + 902, + 296, + 902 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 395, + 1402, + 395, + 1402, + 520, + 299, + 520 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 302, + 1301, + 1405, + 1301, + 1405, + 2009, + 302, + 2009 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 386, + 279, + 1312, + 279, + 1312, + 379, + 386, + 379 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 522, + 534, + 1175, + 534, + 1175, + 573, + 522, + 573 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1008, + 228, + 1008, + 263, + 296, + 263 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 299, + 587, + 924, + 587, + 924, + 620, + 299, + 620 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 314, + 1400, + 314, + 1400, + 345, + 1366, + 345 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 539, + 1400, + 539, + 1400, + 570, + 1366, + 570 + ], + "score": 0.873 + }, + { + "category_id": 0, + "poly": [ + 295, + 655, + 1306, + 655, + 1306, + 690, + 295, + 690 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.753 + }, + { + "category_id": 0, + "poly": [ + 298, + 1255, + 963, + 1255, + 963, + 1289, + 298, + 1289 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 295, + 655, + 1306, + 655, + 1306, + 690, + 295, + 690 + ], + "score": 0.113 + }, + { + "category_id": 14, + "poly": [ + 384, + 275, + 1313, + 275, + 1313, + 382, + 384, + 382 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) = - \\sum _ { ( x , y ) \\in D } \\sum _ { t = 1 } ^ { T _ { y } } \\sum _ { k = 1 } ^ { | V | } Q \\{ y _ { t } = k | y _ { < t } , x ; \\theta _ { T } \\} \\log P ( y _ { t } = k | y _ { < t } , x ; \\theta ) ." + }, + { + "category_id": 13, + "poly": [ + 385, + 835, + 587, + 835, + 587, + 870, + 385, + 870 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { A L L } } ( \\bar { D ^ { l } } ; \\bar { \\theta } _ { M } , \\theta _ { I } ^ { l } )" + }, + { + "category_id": 13, + "poly": [ + 694, + 806, + 850, + 806, + 850, + 838, + 694, + 838 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { N L L } } ( \\mathrm { \\bar { \\it D } } ; \\theta _ { M } )" + }, + { + "category_id": 13, + "poly": [ + 807, + 976, + 906, + 976, + 906, + 1012, + 807, + 1012 + ], + "score": 0.93, + "latex": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 298, + 427, + 463, + 427, + 463, + 461, + 298, + 461 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 810, + 396, + 977, + 396, + 977, + 431, + 810, + 431 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 607, + 1302, + 705, + 1302, + 705, + 1338, + 607, + 1338 + ], + "score": 0.93, + "latex": "\\{ D ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 602, + 396, + 736, + 396, + 736, + 431, + 602, + 431 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1113, + 746, + 1153, + 746, + 1153, + 776, + 1113, + 776 + ], + "score": 0.92, + "latex": "\\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1302, + 1166, + 1302, + 1166, + 1338, + 1075, + 1338 + ], + "score": 0.92, + "latex": "\\{ \\theta _ { I } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1426, + 1016, + 1426, + 1016, + 1459, + 936, + 1459 + ], + "score": 0.92, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 955, + 1576, + 1034, + 1576, + 1034, + 1612, + 955, + 1612 + ], + "score": 0.92, + "latex": "( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } )" + }, + { + "category_id": 13, + "poly": [ + 1128, + 714, + 1210, + 714, + 1210, + 747, + 1128, + 747 + ], + "score": 0.92, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1131, + 1338, + 1131, + 1338, + 1162, + 1271, + 1162 + ], + "score": 0.91, + "latex": "\\tau _ { \\mathrm { c h e c k } }" + }, + { + "category_id": 13, + "poly": [ + 538, + 1428, + 600, + 1428, + 600, + 1458, + 538, + 1458 + ], + "score": 0.91, + "latex": "g = \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 911, + 1191, + 973, + 1191, + 973, + 1222, + 911, + 1222 + ], + "score": 0.9, + "latex": "{ \\mathcal { L } } _ { \\mathrm { N L L } }" + }, + { + "category_id": 13, + "poly": [ + 939, + 1696, + 1149, + 1696, + 1149, + 1733, + 939, + 1733 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { \\mathrm { N L L } } \\big ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } \\big )" + }, + { + "category_id": 13, + "poly": [ + 935, + 1101, + 996, + 1101, + 996, + 1130, + 935, + 1130 + ], + "score": 0.9, + "latex": "{ \\mathcal { L } } _ { \\mathrm { A L L } }" + }, + { + "category_id": 13, + "poly": [ + 414, + 1457, + 498, + 1457, + 498, + 1485, + 414, + 1485 + ], + "score": 0.89, + "latex": "T < \\tau" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1397, + 1325, + 1397, + 1325, + 1424, + 1255, + 1424 + ], + "score": 0.89, + "latex": "T = 0" + }, + { + "category_id": 14, + "poly": [ + 524, + 533, + 1174, + 533, + 1174, + 573, + 524, + 573 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { \\mathrm { A L L } } ( D ; \\theta , \\theta _ { T } ) = ( 1 - \\lambda ) \\mathcal { L } _ { \\mathrm { N L L } } ( D ; \\theta ) + \\lambda \\mathcal { L } _ { \\mathrm { K D } } ( D ; \\theta , \\theta _ { T } ) ," + }, + { + "category_id": 13, + "poly": [ + 488, + 743, + 522, + 743, + 522, + 773, + 488, + 773 + ], + "score": 0.88, + "latex": "D ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 867, + 1368, + 867, + 1368, + 904, + 1340, + 904 + ], + "score": 0.88, + "latex": "\\theta _ { I } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 919, + 1396, + 959, + 1396, + 959, + 1426, + 919, + 1426 + ], + "score": 0.88, + "latex": "\\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 835, + 1054, + 835, + 1054, + 865, + 1019, + 865 + ], + "score": 0.88, + "latex": "\\bar { D } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1336, + 1098, + 1336, + 1098, + 1366, + 1034, + 1366 + ], + "score": 0.88, + "latex": "\\tau _ { \\mathrm { c h e c k } }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1576, + 1134, + 1576, + 1134, + 1606, + 1099, + 1606 + ], + "score": 0.88, + "latex": "D ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 930, + 1635, + 1178, + 1635, + 1178, + 1673, + 930, + 1673 + ], + "score": 0.87, + "latex": "\\mathcal { L } _ { \\mathrm { A L L } } ( ( \\mathbf { x } ^ { l } , \\mathbf { y } ^ { l } ) ; \\theta _ { M } , \\theta _ { I } ^ { l } )" + }, + { + "category_id": 13, + "poly": [ + 448, + 1853, + 528, + 1853, + 528, + 1885, + 448, + 1885 + ], + "score": 0.86, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 403, + 1823, + 585, + 1823, + 585, + 1852, + 403, + 1852 + ], + "score": 0.86, + "latex": "T \\% \\ T _ { \\mathrm { c h e c k } } = = 0" + }, + { + "category_id": 13, + "poly": [ + 748, + 774, + 777, + 774, + 777, + 808, + 748, + 808 + ], + "score": 0.86, + "latex": "\\theta _ { I } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1698, + 1367, + 1698, + 1367, + 1733, + 1162, + 1733 + ], + "score": 0.85, + "latex": "g + = \\partial \\mathcal { L } _ { \\mathrm { N L L } } / \\partial \\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 420, + 1548, + 500, + 1548, + 500, + 1580, + 420, + 1580 + ], + "score": 0.85, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 372, + 589, + 391, + 589, + 391, + 615, + 372, + 615 + ], + "score": 0.82, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 742, + 1336, + 767, + 1336, + 767, + 1363, + 742, + 1363 + ], + "score": 0.8, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 341, + 716, + 364, + 716, + 364, + 742, + 341, + 742 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 494, + 1340, + 512, + 1340, + 512, + 1367, + 494, + 1367 + ], + "score": 0.78, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 298, + 838, + 324, + 838, + 324, + 864, + 298, + 864 + ], + "score": 0.77, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1339, + 1243, + 1339, + 1243, + 1362, + 1222, + 1362 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1306, + 1229, + 1306, + 1229, + 1333, + 1207, + 1333 + ], + "score": 0.76, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 798, + 1135, + 819, + 1135, + 819, + 1158, + 798, + 1158 + ], + "score": 0.75, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 786, + 1424, + 895, + 1424, + 895, + 1458, + 786, + 1458 + ], + "score": 0.75, + "latex": "{ \\bf { \\bar { \\boldsymbol { f } } } } ^ { l } = T r u e" + }, + { + "category_id": 13, + "poly": [ + 465, + 1792, + 505, + 1792, + 505, + 1822, + 465, + 1822 + ], + "score": 0.73, + "latex": "\\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 378, + 1487, + 483, + 1487, + 483, + 1516, + 378, + 1516 + ], + "score": 0.73, + "latex": "T = T { + } 1" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1637, + 1394, + 1637, + 1394, + 1672, + 1192, + 1672 + ], + "score": 0.71, + "latex": "g + = \\partial \\mathcal { L } _ { \\mathrm { A L L } } / \\partial \\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1880, + 861, + 1880, + 861, + 1917, + 768, + 1917 + ], + "score": 0.71, + "latex": "( \\theta _ { I } ^ { l } ) + \\tau" + }, + { + "category_id": 13, + "poly": [ + 340, + 808, + 352, + 808, + 352, + 833, + 340, + 833 + ], + "score": 0.69, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 431, + 1606, + 556, + 1606, + 556, + 1640, + 431, + 1640 + ], + "score": 0.67, + "latex": "f ^ { l } = = \\dot { T } r u e" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1880, + 1117, + 1880, + 1117, + 1915, + 1063, + 1915 + ], + "score": 0.66, + "latex": "f ^ { l } =" + }, + { + "category_id": 13, + "poly": [ + 520, + 1792, + 707, + 1792, + 707, + 1824, + 520, + 1824 + ], + "score": 0.61, + "latex": "\\theta _ { M } = \\theta _ { M } - \\eta * g" + }, + { + "category_id": 13, + "poly": [ + 907, + 747, + 918, + 747, + 918, + 772, + 907, + 772 + ], + "score": 0.59, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 900, + 1880, + 1009, + 1880, + 1009, + 1915, + 900, + 1915 + ], + "score": 0.57, + "latex": "f ^ { l } = T r u e" + }, + { + "category_id": 13, + "poly": [ + 379, + 1519, + 444, + 1519, + 444, + 1549, + 379, + 1549 + ], + "score": 0.53, + "latex": "g = \\mathbf { 0 }" + }, + { + "category_id": 14, + "poly": [ + 378, + 1487, + 482, + 1487, + 482, + 1515, + 378, + 1515 + ], + "score": 0.51, + "latex": "T = T { + } 1" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 655.0, + 1310.0, + 655.0, + 1310.0, + 691.0, + 294.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1252.0, + 966.0, + 1252.0, + 966.0, + 1295.0, + 296.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 952.0, + 295.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 947.0, + 1405.0, + 947.0, + 1405.0, + 983.0, + 295.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 966.0, + 806.0, + 966.0, + 806.0, + 1022.0, + 289.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 966.0, + 1411.0, + 966.0, + 1411.0, + 1022.0, + 907.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1008.0, + 1405.0, + 1008.0, + 1405.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 1405.0, + 1040.0, + 1405.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1070.0, + 1403.0, + 1070.0, + 1403.0, + 1102.0, + 294.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1101.0, + 934.0, + 1101.0, + 934.0, + 1132.0, + 296.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1101.0, + 1403.0, + 1101.0, + 1403.0, + 1132.0, + 997.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 797.0, + 1125.0, + 797.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1125.0, + 1270.0, + 1125.0, + 1270.0, + 1168.0, + 820.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1168.0, + 1339.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1193.0, + 296.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 910.0, + 1190.0, + 910.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1190.0, + 1159.0, + 1190.0, + 1159.0, + 1226.0, + 974.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 340.0, + 712.0, + 340.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 712.0, + 1127.0, + 712.0, + 1127.0, + 749.0, + 365.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 749.0, + 1211.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 487.0, + 741.0, + 487.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 741.0, + 906.0, + 741.0, + 906.0, + 780.0, + 523.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 741.0, + 1112.0, + 741.0, + 1112.0, + 780.0, + 919.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 741.0, + 1406.0, + 741.0, + 1406.0, + 780.0, + 1154.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 773.0, + 747.0, + 773.0, + 747.0, + 810.0, + 294.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 773.0, + 1405.0, + 773.0, + 1405.0, + 810.0, + 778.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 801.0, + 339.0, + 801.0, + 339.0, + 843.0, + 291.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 801.0, + 693.0, + 801.0, + 693.0, + 843.0, + 353.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 801.0, + 1407.0, + 801.0, + 1407.0, + 843.0, + 851.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 297.0, + 833.0, + 297.0, + 873.0, + 294.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 833.0, + 384.0, + 833.0, + 384.0, + 873.0, + 325.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 833.0, + 1018.0, + 833.0, + 1018.0, + 873.0, + 588.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 833.0, + 1406.0, + 833.0, + 1406.0, + 873.0, + 1055.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 865.0, + 1339.0, + 865.0, + 1339.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 865.0, + 1380.0, + 865.0, + 1380.0, + 905.0, + 1369.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 395.0, + 601.0, + 395.0, + 601.0, + 432.0, + 294.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 395.0, + 809.0, + 395.0, + 809.0, + 432.0, + 737.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 395.0, + 1407.0, + 395.0, + 1407.0, + 432.0, + 978.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 425.0, + 1407.0, + 425.0, + 1407.0, + 462.0, + 464.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 1406.0, + 460.0, + 1406.0, + 493.0, + 294.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 1090.0, + 489.0, + 1090.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1299.0, + 606.0, + 1299.0, + 606.0, + 1342.0, + 307.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1299.0, + 1074.0, + 1299.0, + 1074.0, + 1342.0, + 706.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1299.0, + 1206.0, + 1299.0, + 1206.0, + 1342.0, + 1167.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1342.0, + 1230.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1333.0, + 493.0, + 1333.0, + 493.0, + 1368.0, + 341.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1333.0, + 741.0, + 1333.0, + 741.0, + 1368.0, + 513.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1333.0, + 1033.0, + 1333.0, + 1033.0, + 1368.0, + 768.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1333.0, + 1221.0, + 1333.0, + 1221.0, + 1368.0, + 1099.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1333.0, + 1404.0, + 1333.0, + 1404.0, + 1368.0, + 1244.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1366.0, + 453.0, + 1366.0, + 453.0, + 1399.0, + 342.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1392.0, + 918.0, + 1392.0, + 918.0, + 1429.0, + 310.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1392.0, + 1254.0, + 1392.0, + 1254.0, + 1429.0, + 960.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1392.0, + 1404.0, + 1392.0, + 1404.0, + 1429.0, + 1326.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1421.0, + 537.0, + 1421.0, + 537.0, + 1462.0, + 340.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1421.0, + 785.0, + 1421.0, + 785.0, + 1462.0, + 601.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1421.0, + 935.0, + 1421.0, + 935.0, + 1462.0, + 896.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1421.0, + 1029.0, + 1421.0, + 1029.0, + 1462.0, + 1017.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1458.0, + 336.0, + 1458.0, + 336.0, + 1487.0, + 311.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1456.0, + 413.0, + 1456.0, + 413.0, + 1488.0, + 341.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1456.0, + 536.0, + 1456.0, + 536.0, + 1488.0, + 499.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1486.0, + 337.0, + 1486.0, + 337.0, + 1519.0, + 307.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1485.0, + 377.0, + 1485.0, + 377.0, + 1517.0, + 374.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1516.0, + 337.0, + 1516.0, + 337.0, + 1551.0, + 307.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1520.0, + 378.0, + 1520.0, + 378.0, + 1548.0, + 371.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1520.0, + 448.0, + 1520.0, + 448.0, + 1548.0, + 445.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1548.0, + 337.0, + 1548.0, + 337.0, + 1579.0, + 307.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1545.0, + 419.0, + 1545.0, + 419.0, + 1582.0, + 375.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1545.0, + 543.0, + 1545.0, + 543.0, + 1582.0, + 501.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1577.0, + 337.0, + 1577.0, + 337.0, + 1612.0, + 307.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1574.0, + 954.0, + 1574.0, + 954.0, + 1613.0, + 399.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1574.0, + 1098.0, + 1574.0, + 1098.0, + 1613.0, + 1035.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1574.0, + 1145.0, + 1574.0, + 1145.0, + 1613.0, + 1135.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1608.0, + 338.0, + 1608.0, + 338.0, + 1641.0, + 307.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1607.0, + 430.0, + 1607.0, + 430.0, + 1640.0, + 404.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1607.0, + 595.0, + 1607.0, + 595.0, + 1640.0, + 557.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1639.0, + 337.0, + 1639.0, + 337.0, + 1671.0, + 306.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1631.0, + 929.0, + 1631.0, + 929.0, + 1678.0, + 418.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1631.0, + 1191.0, + 1631.0, + 1191.0, + 1678.0, + 1179.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1631.0, + 1404.0, + 1631.0, + 1404.0, + 1678.0, + 1395.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 338.0, + 1669.0, + 338.0, + 1702.0, + 296.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1664.0, + 461.0, + 1664.0, + 461.0, + 1704.0, + 403.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1699.0, + 338.0, + 1699.0, + 338.0, + 1733.0, + 296.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1697.0, + 938.0, + 1697.0, + 938.0, + 1736.0, + 422.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1697.0, + 1161.0, + 1697.0, + 1161.0, + 1736.0, + 1150.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1697.0, + 1379.0, + 1697.0, + 1379.0, + 1736.0, + 1368.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1729.0, + 338.0, + 1729.0, + 338.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1728.0, + 485.0, + 1728.0, + 485.0, + 1762.0, + 402.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1760.0, + 338.0, + 1760.0, + 338.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1760.0, + 472.0, + 1760.0, + 472.0, + 1790.0, + 374.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 338.0, + 1791.0, + 338.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1786.0, + 464.0, + 1786.0, + 464.0, + 1828.0, + 375.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1786.0, + 519.0, + 1786.0, + 519.0, + 1828.0, + 506.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1786.0, + 712.0, + 1786.0, + 712.0, + 1828.0, + 708.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 338.0, + 1820.0, + 338.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1818.0, + 402.0, + 1818.0, + 402.0, + 1857.0, + 374.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1818.0, + 627.0, + 1818.0, + 627.0, + 1857.0, + 586.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 338.0, + 1852.0, + 338.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1849.0, + 447.0, + 1849.0, + 447.0, + 1886.0, + 402.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1849.0, + 569.0, + 1849.0, + 569.0, + 1886.0, + 529.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 338.0, + 1882.0, + 338.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1878.0, + 767.0, + 1878.0, + 767.0, + 1918.0, + 427.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1878.0, + 899.0, + 1878.0, + 899.0, + 1918.0, + 862.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1878.0, + 1062.0, + 1878.0, + 1062.0, + 1918.0, + 1010.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1878.0, + 1261.0, + 1878.0, + 1261.0, + 1918.0, + 1118.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 338.0, + 1913.0, + 338.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1911.0, + 499.0, + 1911.0, + 499.0, + 1944.0, + 404.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 340.0, + 1943.0, + 340.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1941.0, + 458.0, + 1941.0, + 458.0, + 1975.0, + 372.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1973.0, + 463.0, + 1973.0, + 463.0, + 2003.0, + 297.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1011.0, + 229.0, + 1011.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 371.0, + 585.0, + 371.0, + 622.0, + 295.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 585.0, + 927.0, + 585.0, + 927.0, + 622.0, + 392.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 655.0, + 1310.0, + 655.0, + 1310.0, + 691.0, + 294.0, + 691.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1101, + 1404, + 1101, + 1404, + 1437, + 298, + 1437 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 289, + 1403, + 289, + 1403, + 564, + 298, + 564 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 602, + 1403, + 602, + 1403, + 817, + 299, + 817 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1476, + 1404, + 1476, + 1404, + 1661, + 298, + 1661 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1699, + 1404, + 1699, + 1404, + 1883, + 299, + 1883 + ], + "score": 0.975 + }, + { + "category_id": 2, + "poly": [ + 331, + 1916, + 1374, + 1916, + 1374, + 2034, + 331, + 2034 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 937, + 1400, + 937, + 1400, + 1000, + 299, + 1000 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 514, + 229, + 514, + 261, + 300, + 261 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 867, + 557, + 867, + 557, + 901, + 300, + 901 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 299, + 1042, + 486, + 1042, + 486, + 1074, + 299, + 1074 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.743 + }, + { + "category_id": 13, + "poly": [ + 884, + 1569, + 951, + 1569, + 951, + 1600, + 884, + 1600 + ], + "score": 0.91, + "latex": "d _ { \\mathrm { m o d e l } }" + }, + { + "category_id": 13, + "poly": [ + 433, + 755, + 473, + 755, + 473, + 789, + 433, + 789 + ], + "score": 0.88, + "latex": "| V |" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1570, + 1274, + 1570, + 1274, + 1599, + 1242, + 1599 + ], + "score": 0.87, + "latex": "d _ { \\mathrm { f f } }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1106, + 1315, + 1106, + 1315, + 1130, + 1287, + 1130 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 410, + 1166, + 438, + 1166, + 438, + 1192, + 410, + 1192 + ], + "score": 0.8, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 787, + 385, + 807, + 385, + 807, + 409, + 787, + 409 + ], + "score": 0.75, + "latex": "\\tau" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1910.0, + 540.0, + 1910.0, + 540.0, + 1946.0, + 330.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1937.0, + 1376.0, + 1937.0, + 1376.0, + 1978.0, + 327.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1969.0, + 928.0, + 1969.0, + 928.0, + 2009.0, + 328.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2000.0, + 1230.0, + 2000.0, + 1230.0, + 2037.0, + 329.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 521.0, + 225.0, + 521.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 864.0, + 561.0, + 864.0, + 561.0, + 907.0, + 293.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1039.0, + 489.0, + 1039.0, + 489.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 1286.0, + 1102.0, + 1286.0, + 1136.0, + 293.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1136.0, + 1316.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1134.0, + 1406.0, + 1134.0, + 1406.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 409.0, + 1161.0, + 409.0, + 1200.0, + 293.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1200.0, + 439.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 292.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1222.0, + 1406.0, + 1222.0, + 1406.0, + 1258.0, + 292.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1253.0, + 1405.0, + 1253.0, + 1405.0, + 1290.0, + 293.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 1404.0, + 1283.0, + 1404.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1355.0, + 291.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 558.0, + 1405.0, + 558.0, + 1443.0, + 292.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 322.0, + 296.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 1405.0, + 317.0, + 1405.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1405.0, + 348.0, + 1405.0, + 386.0, + 292.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 378.0, + 786.0, + 378.0, + 786.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 378.0, + 1405.0, + 378.0, + 1405.0, + 417.0, + 808.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 410.0, + 1405.0, + 410.0, + 1405.0, + 447.0, + 294.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1405.0, + 441.0, + 1405.0, + 477.0, + 294.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 472.0, + 1407.0, + 472.0, + 1407.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 503.0, + 1402.0, + 503.0, + 1402.0, + 536.0, + 296.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 1151.0, + 532.0, + 1151.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 602.0, + 1404.0, + 602.0, + 1404.0, + 637.0, + 297.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 629.0, + 1404.0, + 629.0, + 1404.0, + 671.0, + 293.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 698.0, + 294.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 729.0, + 295.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 723.0, + 1403.0, + 723.0, + 1403.0, + 760.0, + 293.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 756.0, + 432.0, + 756.0, + 432.0, + 791.0, + 295.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 756.0, + 1404.0, + 756.0, + 1404.0, + 791.0, + 474.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1141.0, + 786.0, + 1141.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1477.0, + 1404.0, + 1477.0, + 1404.0, + 1509.0, + 296.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1570.0, + 294.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1567.0, + 883.0, + 1567.0, + 883.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1567.0, + 1241.0, + 1567.0, + 1241.0, + 1603.0, + 952.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1603.0, + 1275.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 1404.0, + 1596.0, + 1404.0, + 1635.0, + 293.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1631.0, + 772.0, + 1631.0, + 772.0, + 1663.0, + 296.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1697.0, + 1403.0, + 1697.0, + 1403.0, + 1733.0, + 297.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1406.0, + 1758.0, + 1406.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1406.0, + 1790.0, + 1406.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 935.0, + 1401.0, + 935.0, + 1401.0, + 971.0, + 297.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 967.0, + 1380.0, + 967.0, + 1380.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 404, + 439, + 1297, + 439, + 1297, + 835, + 404, + 835 + ], + "score": 0.983, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Ar→En31.1929.24 (-1.95)31.25 (+0.06)+2.01
Cs-→En28.0426.09 (-1.95)27.09 (-0.95)+1.00
De→En33.0732.74 (-0.33)34.02 (+0.95)+1.28
He-→En37.4235.18 (-2.24)37.33 (-0.09)+2.15
N1-→En35.9436.54 (+0.60)37.69 (+1.75)+1.15
Pt-→En44.3043.49 (-0.81)44.69 (+0.39)+1.20
Ro-→En36.9236.41 1 (-0.51)38.01 (+1.09)+1.60
Ru→En23.0423.12 (+0.08)23.76 (+0.72)+0.64
Th→En18.2419.33 3 (+1.09)19.90 (+1.66)+0.57
Tr→En22.7422.42 (-0.32)23.75 (+1.01)+1.33
Vi→En26.0626.37 (+0.31)27.04 4 (+0.98)+0.67
Zh→En19.4418.82 2 (-0.62)19.52 (+0.08)+0.70
" + }, + { + "category_id": 5, + "poly": [ + 405, + 994, + 1297, + 994, + 1297, + 1391, + 405, + 1391 + ], + "score": 0.982, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En→Ar13.6712.73 (-0.94)13.80 (+0.13)+1.07
En→Cs17.8117.33 (-0.48)18.69 (+0.88)+1.37
En→De26.1325.16 (-0.97)26.76 (+0.63)+1.60
En→He24.1522.73 (-1.42)24.42 (+0.27)+1.69
En-→Nl30.8829.51 (-1.37)30.52 (-0.36)+1.01
En→Pt37.6335.93 (-1.70)37.23 (-0.40)+1.30
En→Ro27.2325.68 (-1.55)27.11 (-0.12)+1.42
En→Ru17.4016.26 (-1.14)17.42 (+0.02)+1.16
En→Th26.4527.18 (+0.73)27.62 (+1.17)+0.45
En→Tr12.4711.63 (-0.84)12.84 (+0.37)+1.21
En→Vi27.8828.04 (+0.16)28.69 (+0.81)+0.65
En→Zh10.9510.12 (-0.83)10.41 (-0.54)+0.29
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1616, + 1404, + 1616, + 1404, + 1954, + 297, + 1954 + ], + "score": 0.979 + }, + { + "category_id": 2, + "poly": [ + 328, + 1975, + 1226, + 1975, + 1226, + 2034, + 328, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 415, + 299, + 415 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 299, + 1560, + 474, + 1560, + 474, + 1590, + 299, + 1590 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.789 + }, + { + "category_id": 6, + "poly": [ + 300, + 858, + 1403, + 858, + 1403, + 953, + 300, + 953 + ], + "score": 0.775 + }, + { + "category_id": 6, + "poly": [ + 299, + 1413, + 1403, + 1413, + 1403, + 1507, + 299, + 1507 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 299, + 1413, + 1403, + 1413, + 1403, + 1507, + 299, + 1507 + ], + "score": 0.354 + }, + { + "category_id": 1, + "poly": [ + 300, + 858, + 1403, + 858, + 1403, + 953, + 300, + 953 + ], + "score": 0.171 + }, + { + "category_id": 13, + "poly": [ + 881, + 262, + 983, + 262, + 983, + 291, + 881, + 291 + ], + "score": 0.92, + "latex": "\\lambda = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 632, + 231, + 789, + 231, + 789, + 262, + 632, + 262 + ], + "score": 0.91, + "latex": "\\mathcal { T } _ { \\mathrm { c h e c k } } = 3 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 760, + 323, + 854, + 323, + 854, + 351, + 760, + 351 + ], + "score": 0.9, + "latex": "\\alpha = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 293, + 386, + 293, + 386, + 320, + 297, + 320 + ], + "score": 0.9, + "latex": "K = 8" + }, + { + "category_id": 13, + "poly": [ + 342, + 263, + 422, + 263, + 422, + 290, + 342, + 290 + ], + "score": 0.89, + "latex": "\\tau = 1" + }, + { + "category_id": 13, + "poly": [ + 680, + 1415, + 737, + 1415, + 737, + 1444, + 680, + 1444 + ], + "score": 0.85, + "latex": " 1 2" + }, + { + "category_id": 13, + "poly": [ + 743, + 863, + 771, + 863, + 771, + 887, + 743, + 887 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 659, + 1713, + 687, + 1713, + 687, + 1737, + 659, + 1737 + ], + "score": 0.79, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 1210, + 890, + 1238, + 890, + 1238, + 918, + 1210, + 918 + ], + "score": 0.7, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1445, + 1237, + 1445, + 1237, + 1473, + 1210, + 1473 + ], + "score": 0.7, + "latex": "\\Delta" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1970.0, + 1224.0, + 1970.0, + 1224.0, + 2008.0, + 330.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2001.0, + 689.0, + 2001.0, + 689.0, + 2038.0, + 331.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1555.0, + 477.0, + 1555.0, + 477.0, + 1596.0, + 293.0, + 1596.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, + 853.0, + 742.0, + 853.0, + 742.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 853.0, + 1404.0, + 853.0, + 1404.0, + 897.0, + 772.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 1209.0, + 888.0, + 1209.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 888.0, + 1403.0, + 888.0, + 1403.0, + 923.0, + 1239.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 920.0, + 1086.0, + 920.0, + 1086.0, + 954.0, + 295.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 679.0, + 1410.0, + 679.0, + 1450.0, + 292.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1410.0, + 1404.0, + 1410.0, + 1404.0, + 1450.0, + 738.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1444.0, + 1209.0, + 1444.0, + 1209.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1444.0, + 1405.0, + 1444.0, + 1405.0, + 1478.0, + 1238.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1085.0, + 1475.0, + 1085.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1617.0, + 1404.0, + 1617.0, + 1404.0, + 1652.0, + 295.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 658.0, + 1709.0, + 658.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1709.0, + 1404.0, + 1709.0, + 1404.0, + 1744.0, + 688.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1738.0, + 1405.0, + 1738.0, + 1405.0, + 1774.0, + 294.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1769.0, + 1405.0, + 1769.0, + 1405.0, + 1806.0, + 292.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1802.0, + 1402.0, + 1802.0, + 1402.0, + 1834.0, + 296.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1827.0, + 1405.0, + 1827.0, + 1405.0, + 1870.0, + 292.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1892.0, + 1404.0, + 1892.0, + 1404.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1922.0, + 1405.0, + 1922.0, + 1405.0, + 1959.0, + 292.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 631.0, + 228.0, + 631.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 267.0, + 790.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 341.0, + 258.0, + 341.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 258.0, + 880.0, + 258.0, + 880.0, + 296.0, + 423.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 258.0, + 1405.0, + 258.0, + 1405.0, + 296.0, + 984.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 326.0, + 387.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 759.0, + 321.0, + 759.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 356.0, + 855.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1407.0, + 349.0, + 1407.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 382.0, + 1292.0, + 382.0, + 1292.0, + 418.0, + 295.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 679.0, + 1410.0, + 679.0, + 1450.0, + 292.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1410.0, + 1404.0, + 1410.0, + 1404.0, + 1450.0, + 738.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1444.0, + 1209.0, + 1444.0, + 1209.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1444.0, + 1405.0, + 1444.0, + 1405.0, + 1478.0, + 1238.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1085.0, + 1475.0, + 1085.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 853.0, + 742.0, + 853.0, + 742.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 853.0, + 1404.0, + 853.0, + 1404.0, + 897.0, + 772.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 1209.0, + 888.0, + 1209.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 888.0, + 1403.0, + 888.0, + 1403.0, + 923.0, + 1239.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 920.0, + 1086.0, + 920.0, + 1086.0, + 954.0, + 295.0, + 954.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 301, + 1489, + 1400, + 1489, + 1400, + 1920, + 301, + 1920 + ], + "score": 0.983, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
△1-1.50-9.461.884.02-0.100.800.238.200.096.4415.8
△21.731.421.131.821.681.451.630.771.831.101.24
LanguageFrGlHeHiHrHuHyIdItJaKa
△10.1319.26-1.5910.161.46-0.118.871.36-0.56-0.0311.20
△21.481.582.261.071.211.800.921.481.480.951.55
LanguageKoKuLtMkMyNbN1PIPtbrPtRo
△1-0.427.754.4610.727.6314.07-0.201.320.138.760.66
△21.431.551.690.801.311.471.680.801.451.981.70
LanguageRuSkS1SqSrSvThTrUkViZh
△10.654.2311.875.031.582.391.17-0.792.040.156.83
△20.990.931.151.681.441.000.621.880.980.770.58
" + }, + { + "category_id": 5, + "poly": [ + 404, + 894, + 1295, + 894, + 1295, + 1126, + 404, + 1126 + ], + "score": 0.981, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
En-Cs22.5821.39 (-1.19)23.10 (+0.62)+1.81
En-De31.4030.08 3 (-1.32)31.42 (+0.02)+1.34
En-Fi22.0819.52 (-2.56)21.56 (-0.52)+2.04
En-Lv14.9214.51 (-0.41)15.32 (+0.40)+0.81
En-Ro31.6729.88 (-1.79)31.39 (-0.28)+1.51
En-Ru24.3622.96 (-1.40)24.02 (-0.34)+1.06
" + }, + { + "category_id": 5, + "poly": [ + 403, + 492, + 1296, + 492, + 1296, + 724, + 403, + 724 + ], + "score": 0.978, + "html": "
LanguageIndividualMulti-BaselineMulti-Distillation
Cs-En25.2923.82 (-1.47)25.37 (+0.08)+1.55
De-En34.4434.21 (-0.23)36.22 (+1.78)+2.01
Fi-En21.2322.99 (+1.76)24.32 (+3.09)+1.33
Lv-En16.2616.25 (-0.01)18.43 (+2.17)+2.18
Ro-En35.8135.04 (-0.77)36.51 (+0.70)+1.47
Ru-En29.3928.92 (-0.47)30.82 (+1.43)+1.90
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1241, + 1404, + 1241, + 1404, + 1457, + 297, + 1457 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1402, + 229, + 1402, + 294, + 295, + 294 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 299, + 307, + 1402, + 307, + 1402, + 462, + 299, + 462 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.906 + }, + { + "category_id": 6, + "poly": [ + 299, + 746, + 1400, + 746, + 1400, + 841, + 299, + 841 + ], + "score": 0.86 + }, + { + "category_id": 6, + "poly": [ + 297, + 1942, + 1395, + 1942, + 1395, + 2006, + 297, + 2006 + ], + "score": 0.699 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.691 + }, + { + "category_id": 6, + "poly": [ + 457, + 1148, + 1238, + 1148, + 1238, + 1181, + 457, + 1181 + ], + "score": 0.675 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.302 + }, + { + "category_id": 7, + "poly": [ + 457, + 1148, + 1238, + 1148, + 1238, + 1181, + 457, + 1181 + ], + "score": 0.138 + }, + { + "category_id": 1, + "poly": [ + 299, + 746, + 1400, + 746, + 1400, + 841, + 299, + 841 + ], + "score": 0.131 + }, + { + "category_id": 7, + "poly": [ + 297, + 1942, + 1395, + 1942, + 1395, + 2006, + 297, + 2006 + ], + "score": 0.127 + }, + { + "category_id": 13, + "poly": [ + 472, + 1974, + 528, + 1974, + 528, + 2005, + 472, + 2005 + ], + "score": 0.84, + "latex": "\\left( \\Delta _ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 741, + 750, + 768, + 750, + 768, + 774, + 741, + 774 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 829, + 1246, + 857, + 1246, + 857, + 1270, + 829, + 1270 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 755, + 1976, + 783, + 1976, + 783, + 2002, + 755, + 2002 + ], + "score": 0.8, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1943, + 1273, + 1943, + 1273, + 1974, + 1221, + 1974 + ], + "score": 0.78, + "latex": "( \\Delta _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1210, + 778, + 1238, + 778, + 1238, + 806, + 1210, + 806 + ], + "score": 0.69, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 830, + 1150, + 881, + 1150, + 881, + 1178, + 830, + 1178 + ], + "score": 0.61, + "latex": " 6" + }, + { + "category_id": 13, + "poly": [ + 719, + 261, + 779, + 261, + 779, + 295, + 719, + 295 + ], + "score": 0.5, + "latex": "1 / 1 2" + }, + { + "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, + 742.0, + 740.0, + 742.0, + 740.0, + 783.0, + 293.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 742.0, + 1404.0, + 742.0, + 1404.0, + 783.0, + 769.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 1209.0, + 778.0, + 1209.0, + 812.0, + 295.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 778.0, + 1404.0, + 778.0, + 1404.0, + 812.0, + 1239.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 1087.0, + 808.0, + 1087.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1939.0, + 1220.0, + 1939.0, + 1220.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1939.0, + 1398.0, + 1939.0, + 1398.0, + 1975.0, + 1274.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 471.0, + 1974.0, + 471.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1974.0, + 754.0, + 1974.0, + 754.0, + 2006.0, + 529.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1974.0, + 1127.0, + 1974.0, + 1127.0, + 2006.0, + 784.0, + 2006.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": [ + 458.0, + 1146.0, + 829.0, + 1146.0, + 829.0, + 1184.0, + 458.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1146.0, + 1241.0, + 1146.0, + 1241.0, + 1184.0, + 882.0, + 1184.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": [ + 458.0, + 1146.0, + 829.0, + 1146.0, + 829.0, + 1184.0, + 458.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1146.0, + 1241.0, + 1146.0, + 1241.0, + 1184.0, + 882.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1939.0, + 1220.0, + 1939.0, + 1220.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1939.0, + 1398.0, + 1939.0, + 1398.0, + 1975.0, + 1274.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 471.0, + 1974.0, + 471.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1974.0, + 754.0, + 1974.0, + 754.0, + 2006.0, + 529.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1974.0, + 1127.0, + 1974.0, + 1127.0, + 2006.0, + 784.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 828.0, + 1240.0, + 828.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1240.0, + 1405.0, + 1240.0, + 1405.0, + 1277.0, + 858.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1307.0, + 292.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 1404.0, + 1302.0, + 1404.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1369.0, + 295.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1398.0, + 294.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1422.0, + 574.0, + 1422.0, + 574.0, + 1462.0, + 294.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 718.0, + 260.0, + 718.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 260.0, + 1385.0, + 260.0, + 1385.0, + 295.0, + 780.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 309.0, + 1404.0, + 309.0, + 1404.0, + 342.0, + 297.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 335.0, + 1404.0, + 335.0, + 1404.0, + 375.0, + 294.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 367.0, + 1406.0, + 367.0, + 1406.0, + 403.0, + 293.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 1265.0, + 428.0, + 1265.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 740.0, + 742.0, + 740.0, + 783.0, + 293.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 742.0, + 1404.0, + 742.0, + 1404.0, + 783.0, + 769.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 1209.0, + 778.0, + 1209.0, + 812.0, + 295.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 778.0, + 1404.0, + 778.0, + 1404.0, + 812.0, + 1239.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 1087.0, + 808.0, + 1087.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 336, + 961, + 1365, + 961, + 1365, + 1269, + 336, + 1269 + ], + "score": 0.984, + "html": "
BgEtFiFrGlHiHyKa
distillation all the time28.0712.6415.1333.6930.2818.8619.8814.04
selective distillation29.1815.6317.2334.3231.9021.0021.1718.27
+1.11+2.99+2.10+0.63+1.62+2.14+1.29+4.23
KuMkMySIZhPlSkSv
distillation all the time8.5032.1014.0222.1017.2225.0530.4537.88
selective distillation13.3832.6515.1723.6819.3924.3029.9136.92
+4.88+0.55+1.15+1.58+2.17-0.75-0.54-0.96
" + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1405, + 229, + 1405, + 597, + 297, + 597 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1849, + 1402, + 1849, + 1402, + 2034, + 297, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1409, + 1403, + 1409, + 1403, + 1627, + 298, + 1627 + ], + "score": 0.967 + }, + { + "category_id": 5, + "poly": [ + 380, + 1655, + 1325, + 1655, + 1325, + 1746, + 380, + 1746 + ], + "score": 0.96, + "html": "
Top-K1248163264128IVI
BLEU33.4533.8634.4734.7634.6634.6834.5434.4734.49
" + }, + { + "category_id": 1, + "poly": [ + 297, + 755, + 1404, + 755, + 1404, + 939, + 297, + 939 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 295, + 690, + 1334, + 690, + 1334, + 723, + 295, + 723 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 634, + 488, + 634, + 488, + 665, + 299, + 665 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 304, + 1767, + 1393, + 1767, + 1393, + 1800, + 304, + 1800 + ], + "score": 0.667 + }, + { + "category_id": 6, + "poly": [ + 300, + 1291, + 1399, + 1291, + 1399, + 1352, + 300, + 1352 + ], + "score": 0.459 + }, + { + "category_id": 6, + "poly": [ + 304, + 1767, + 1393, + 1767, + 1393, + 1800, + 304, + 1800 + ], + "score": 0.121 + }, + { + "category_id": 13, + "poly": [ + 1212, + 1503, + 1252, + 1503, + 1252, + 1536, + 1212, + 1536 + ], + "score": 0.9, + "latex": "| V |" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1594, + 1260, + 1594, + 1260, + 1627, + 1149, + 1627 + ], + "score": 0.89, + "latex": "( K = | V | )" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1503, + 1125, + 1503, + 1125, + 1535, + 1085, + 1535 + ], + "score": 0.88, + "latex": "| V |" + }, + { + "category_id": 13, + "poly": [ + 968, + 264, + 997, + 264, + 997, + 289, + 968, + 289 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 932, + 1504, + 962, + 1504, + 962, + 1531, + 932, + 1531 + ], + "score": 0.78, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1564, + 1071, + 1564, + 1071, + 1592, + 1041, + 1592 + ], + "score": 0.75, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 553, + 1595, + 582, + 1595, + 582, + 1621, + 553, + 1621 + ], + "score": 0.75, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 872, + 443, + 931, + 443, + 931, + 476, + 872, + 476 + ], + "score": 0.51, + "latex": "1 / 4 4" + }, + { + "category_id": 13, + "poly": [ + 974, + 1473, + 998, + 1473, + 998, + 1500, + 974, + 1500 + ], + "score": 0.27, + "latex": "\\mathbf { \\nabla } \\cdot \\mathbf { K }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 629.0, + 493.0, + 629.0, + 493.0, + 670.0, + 293.0, + 670.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, + 1290.0, + 1403.0, + 1290.0, + 1403.0, + 1325.0, + 296.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1322.0, + 743.0, + 1322.0, + 743.0, + 1354.0, + 294.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1764.0, + 1398.0, + 1764.0, + 1398.0, + 1803.0, + 301.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1402.0, + 230.0, + 1402.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 262.0, + 967.0, + 262.0, + 967.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 296.0, + 998.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 326.0, + 292.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1405.0, + 319.0, + 1405.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 417.0, + 292.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 1403.0, + 414.0, + 1403.0, + 448.0, + 295.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 871.0, + 442.0, + 871.0, + 476.0, + 295.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 442.0, + 1405.0, + 442.0, + 1405.0, + 476.0, + 932.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1405.0, + 473.0, + 1405.0, + 509.0, + 294.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 503.0, + 1403.0, + 503.0, + 1403.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 1405.0, + 532.0, + 1405.0, + 570.0, + 294.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 568.0, + 563.0, + 568.0, + 603.0, + 294.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1403.0, + 1879.0, + 1403.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1410.0, + 1403.0, + 1410.0, + 1403.0, + 1445.0, + 296.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1443.0, + 1404.0, + 1443.0, + 1404.0, + 1475.0, + 296.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 973.0, + 1471.0, + 973.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1471.0, + 1403.0, + 1471.0, + 1403.0, + 1506.0, + 999.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1502.0, + 931.0, + 1502.0, + 931.0, + 1537.0, + 296.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1502.0, + 1084.0, + 1502.0, + 1084.0, + 1537.0, + 963.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1502.0, + 1211.0, + 1502.0, + 1211.0, + 1537.0, + 1126.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1502.0, + 1403.0, + 1502.0, + 1403.0, + 1537.0, + 1253.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1040.0, + 1564.0, + 1040.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1599.0, + 1072.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1594.0, + 552.0, + 1594.0, + 552.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1594.0, + 1148.0, + 1594.0, + 1148.0, + 1629.0, + 583.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1594.0, + 1273.0, + 1594.0, + 1273.0, + 1629.0, + 1261.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 1402.0, + 754.0, + 1402.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1402.0, + 787.0, + 1402.0, + 819.0, + 295.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 852.0, + 294.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 848.0, + 1401.0, + 848.0, + 1401.0, + 880.0, + 296.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 877.0, + 1407.0, + 877.0, + 1407.0, + 913.0, + 292.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 906.0, + 431.0, + 906.0, + 431.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 689.0, + 1339.0, + 689.0, + 1339.0, + 728.0, + 292.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1764.0, + 1398.0, + 1764.0, + 1398.0, + 1803.0, + 301.0, + 1803.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1650, + 1403, + 1650, + 1403, + 1867, + 297, + 1867 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 327, + 224, + 1374, + 224, + 1374, + 385, + 327, + 385 + ], + "score": 0.978, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
" + }, + { + "category_id": 5, + "poly": [ + 505, + 814, + 1194, + 814, + 1194, + 1209, + 505, + 1209 + ], + "score": 0.978, + "html": "
LanguageSequence-levelWord-level (OurMethod)
En-Ar12.7913.801.01
En-Cs17.0118.691.68
En-De25.8926.760.87
En-He22.9224.421.50
En-N129.9930.520.53
En-Pt36.1237.231.10
En-Ro25.7527.111.36
En-Ru16.3817.421.04
En-Th27.5227.620.10
En-Tr11.1112.841.73
En-Vi28.0828.690.61
En-Zh10.2510.410.16
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1878, + 1403, + 1878, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 327, + 1347, + 1374, + 1347, + 1374, + 1509, + 327, + 1509 + ], + "score": 0.975, + "html": "
LanguageArCsDeN1RoRuThTrVi
Individual31.1928.0433.0735.9436.9223.0418.2422.7426.06
+Back Distillation31.3929.4433.7136.8637.2823.3619.4223.5827.17
+0.20+1.40+0.64+0.92+0.36+0.32+1.18+0.84+1.11
" + }, + { + "category_id": 1, + "poly": [ + 298, + 530, + 1400, + 530, + 1400, + 595, + 298, + 595 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 300, + 629, + 1401, + 629, + 1401, + 784, + 300, + 784 + ], + "score": 0.899 + }, + { + "category_id": 6, + "poly": [ + 295, + 1233, + 1394, + 1233, + 1394, + 1296, + 295, + 1296 + ], + "score": 0.833 + }, + { + "category_id": 6, + "poly": [ + 301, + 1531, + 1399, + 1531, + 1399, + 1593, + 301, + 1593 + ], + "score": 0.802 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.801 + }, + { + "category_id": 6, + "poly": [ + 299, + 407, + 1398, + 407, + 1398, + 469, + 299, + 469 + ], + "score": 0.794 + }, + { + "category_id": 6, + "poly": [ + 295, + 1233, + 1397, + 1233, + 1397, + 1295, + 295, + 1295 + ], + "score": 0.271 + }, + { + "category_id": 6, + "poly": [ + 300, + 629, + 1401, + 629, + 1401, + 784, + 300, + 784 + ], + "score": 0.092 + }, + { + "category_id": 13, + "poly": [ + 718, + 1878, + 1023, + 1878, + 1023, + 1915, + 718, + 1915 + ], + "score": 0.92, + "latex": "\\theta _ { i } ( \\sigma ) = \\theta _ { i } + \\bar { \\theta } * \\mathcal { N } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1882, + 1136, + 1882, + 1136, + 1912, + 1110, + 1912 + ], + "score": 0.87, + "latex": "\\theta _ { i }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1973, + 1159, + 1973, + 1159, + 2006, + 783, + 2006 + ], + "score": 0.8, + "latex": "\\sigma \\in [ 0 . 0 5 , 0 . 1 , 0 . 1 5 , 0 . 2 , 0 . 2 5 , 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 424, + 1910, + 443, + 1910, + 443, + 1940, + 424, + 1940 + ], + "score": 0.8, + "latex": "\\bar { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 665, + 1883, + 683, + 1883, + 683, + 1909, + 665, + 1909 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 699, + 1948, + 719, + 1948, + 719, + 1970, + 699, + 1970 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 555, + 1948, + 576, + 1948, + 576, + 1970, + 555, + 1970 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 714, + 2009, + 733, + 2009, + 733, + 2030, + 714, + 2030 + ], + "score": 0.75, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1371, + 1911, + 1401, + 1911, + 1401, + 1939, + 1371, + 1939 + ], + "score": 0.75, + "latex": "\\mathcal { N }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1884, + 1221, + 1884, + 1221, + 1909, + 1208, + 1909 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 879, + 1915, + 895, + 1915, + 895, + 1939, + 879, + 1939 + ], + "score": 0.7, + "latex": "\\theta" + }, + { + "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, + 1229.0, + 1400.0, + 1229.0, + 1400.0, + 1270.0, + 292.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1262.0, + 602.0, + 1262.0, + 602.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1529.0, + 1404.0, + 1529.0, + 1404.0, + 1565.0, + 296.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 391.0, + 1557.0, + 391.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 405.0, + 1403.0, + 405.0, + 1403.0, + 441.0, + 295.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 433.0, + 392.0, + 433.0, + 392.0, + 474.0, + 292.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1229.0, + 1403.0, + 1229.0, + 1403.0, + 1269.0, + 293.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1264.0, + 602.0, + 1264.0, + 602.0, + 1296.0, + 296.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 629.0, + 1405.0, + 629.0, + 1405.0, + 667.0, + 296.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 697.0, + 294.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 728.0, + 294.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 718.0, + 1406.0, + 718.0, + 1406.0, + 758.0, + 293.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 874.0, + 752.0, + 874.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1685.0, + 295.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1403.0, + 1682.0, + 1403.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1403.0, + 1713.0, + 1403.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 1403.0, + 1741.0, + 1403.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1807.0, + 295.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1401.0, + 1803.0, + 1401.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1833.0, + 1331.0, + 1833.0, + 1331.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1879.0, + 664.0, + 1879.0, + 664.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1879.0, + 717.0, + 1879.0, + 717.0, + 1916.0, + 684.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1879.0, + 1109.0, + 1879.0, + 1109.0, + 1916.0, + 1024.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1879.0, + 1207.0, + 1879.0, + 1207.0, + 1916.0, + 1137.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1879.0, + 1407.0, + 1879.0, + 1407.0, + 1916.0, + 1222.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 423.0, + 1908.0, + 423.0, + 1944.0, + 293.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1908.0, + 878.0, + 1908.0, + 878.0, + 1944.0, + 444.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1908.0, + 1370.0, + 1908.0, + 1370.0, + 1944.0, + 896.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1944.0, + 1402.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 554.0, + 1942.0, + 554.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1942.0, + 698.0, + 1942.0, + 698.0, + 1979.0, + 577.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1979.0, + 720.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 782.0, + 1969.0, + 782.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2009.0, + 1160.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 713.0, + 2003.0, + 713.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2037.0, + 734.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 530.0, + 1404.0, + 530.0, + 1404.0, + 566.0, + 294.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1328.0, + 563.0, + 1328.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 629.0, + 1405.0, + 629.0, + 1405.0, + 667.0, + 296.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 697.0, + 294.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 728.0, + 294.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 718.0, + 1406.0, + 718.0, + 1406.0, + 758.0, + 293.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 874.0, + 752.0, + 874.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 322, + 413, + 1378, + 413, + 1378, + 791, + 322, + 791 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 384, + 298, + 384 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1006, + 1403, + 1006, + 1403, + 1161, + 298, + 1161 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1176, + 1404, + 1176, + 1404, + 1270, + 299, + 1270 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 293, + 817, + 1401, + 817, + 1401, + 882, + 293, + 882 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 939, + 544, + 939, + 544, + 974, + 300, + 974 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 299, + 1314, + 488, + 1314, + 488, + 1346, + 299, + 1346 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 293, + 1362, + 1407, + 1362, + 1407, + 2040, + 293, + 2040 + ], + "score": 0.802 + }, + { + "category_id": 13, + "poly": [ + 1346, + 1098, + 1401, + 1098, + 1401, + 1132, + 1346, + 1132 + ], + "score": 0.84, + "latex": "1 / N" + }, + { + "category_id": 13, + "poly": [ + 1209, + 856, + 1229, + 856, + 1229, + 877, + 1209, + 877 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 425, + 236, + 444, + 236, + 444, + 258, + 425, + 258 + ], + "score": 0.72, + "latex": "\\sigma" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 409.0, + 1178.0, + 409.0, + 1178.0, + 438.0, + 1145.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 439.0, + 359.0, + 439.0, + 359.0, + 460.0, + 339.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 428.0, + 516.0, + 428.0, + 516.0, + 476.0, + 409.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 429.0, + 631.0, + 429.0, + 631.0, + 454.0, + 601.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 440.0, + 904.0, + 440.0, + 904.0, + 469.0, + 872.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 459.0, + 1178.0, + 459.0, + 1178.0, + 489.0, + 1144.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 478.0, + 632.0, + 478.0, + 632.0, + 506.0, + 598.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 496.0, + 360.0, + 496.0, + 360.0, + 520.0, + 339.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 495.0, + 905.0, + 495.0, + 905.0, + 524.0, + 872.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 511.0, + 1176.0, + 511.0, + 1176.0, + 540.0, + 1145.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 526.0, + 633.0, + 526.0, + 633.0, + 553.0, + 598.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 541.0, + 359.0, + 541.0, + 359.0, + 588.0, + 323.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 539.0, + 608.0, + 539.0, + 608.0, + 595.0, + 579.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 537.0, + 904.0, + 537.0, + 904.0, + 595.0, + 852.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 539.0, + 1176.0, + 539.0, + 1176.0, + 593.0, + 1121.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 576.0, + 631.0, + 576.0, + 631.0, + 601.0, + 602.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 609.0, + 359.0, + 609.0, + 359.0, + 631.0, + 341.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 623.0, + 633.0, + 623.0, + 633.0, + 652.0, + 598.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 606.0, + 905.0, + 606.0, + 905.0, + 634.0, + 872.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 612.0, + 1178.0, + 612.0, + 1178.0, + 641.0, + 1144.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 667.0, + 359.0, + 667.0, + 359.0, + 688.0, + 341.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 675.0, + 631.0, + 675.0, + 631.0, + 698.0, + 612.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 652.0, + 771.0, + 652.0, + 771.0, + 700.0, + 674.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 658.0, + 910.0, + 658.0, + 910.0, + 689.0, + 881.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 652.0, + 1043.0, + 652.0, + 1043.0, + 700.0, + 948.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 663.0, + 1180.0, + 663.0, + 1180.0, + 690.0, + 1144.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 653.0, + 1315.0, + 653.0, + 1315.0, + 702.0, + 1219.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 704.0, + 562.0, + 704.0, + 562.0, + 728.0, + 348.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 703.0, + 836.0, + 703.0, + 836.0, + 730.0, + 618.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 703.0, + 1109.0, + 703.0, + 1109.0, + 730.0, + 890.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 707.0, + 1380.0, + 707.0, + 1380.0, + 730.0, + 1163.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 721.0, + 541.0, + 721.0, + 541.0, + 745.0, + 372.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 719.0, + 813.0, + 719.0, + 813.0, + 749.0, + 641.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 721.0, + 1084.0, + 721.0, + 1084.0, + 745.0, + 915.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 720.0, + 1356.0, + 720.0, + 1356.0, + 748.0, + 1186.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 756.0, + 465.0, + 756.0, + 465.0, + 795.0, + 419.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 758.0, + 732.0, + 758.0, + 732.0, + 796.0, + 685.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 758.0, + 1004.0, + 758.0, + 1004.0, + 796.0, + 958.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 759.0, + 1276.0, + 759.0, + 1276.0, + 797.0, + 1229.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 817.0, + 1403.0, + 817.0, + 1403.0, + 853.0, + 295.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 848.0, + 1208.0, + 848.0, + 1208.0, + 886.0, + 295.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 848.0, + 1241.0, + 848.0, + 1241.0, + 886.0, + 1230.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 935.0, + 548.0, + 935.0, + 548.0, + 983.0, + 291.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1311.0, + 491.0, + 1311.0, + 491.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 424.0, + 229.0, + 424.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 264.0, + 445.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 356.0, + 296.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1181.0, + 350.0, + 1181.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1008.0, + 1403.0, + 1008.0, + 1403.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1098.0, + 1345.0, + 1098.0, + 1345.0, + 1133.0, + 293.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1131.0, + 887.0, + 1131.0, + 887.0, + 1165.0, + 296.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1212.0, + 293.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1206.0, + 1405.0, + 1206.0, + 1405.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1238.0, + 1032.0, + 1238.0, + 1032.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1396.0, + 296.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1394.0, + 1405.0, + 1394.0, + 1405.0, + 1430.0, + 323.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1425.0, + 610.0, + 1425.0, + 610.0, + 1455.0, + 323.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 1403.0, + 1471.0, + 1403.0, + 1509.0, + 294.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1505.0, + 875.0, + 1505.0, + 875.0, + 1537.0, + 321.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 1404.0, + 1549.0, + 1404.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1581.0, + 1404.0, + 1581.0, + 1404.0, + 1620.0, + 323.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1614.0, + 579.0, + 1614.0, + 579.0, + 1646.0, + 324.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1663.0, + 1403.0, + 1663.0, + 1403.0, + 1695.0, + 296.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1728.0, + 321.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1723.0, + 1070.0, + 1723.0, + 1070.0, + 1759.0, + 323.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1807.0, + 295.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1801.0, + 1404.0, + 1801.0, + 1404.0, + 1839.0, + 320.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1871.0, + 320.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1864.0, + 985.0, + 1864.0, + 985.0, + 1899.0, + 324.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1945.0, + 297.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1979.0, + 321.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2011.0, + 320.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1226.0, + 2003.0, + 1226.0, + 2039.0, + 324.0, + 2039.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.888 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 295, + 1313, + 1400, + 1313, + 1400, + 1378, + 295, + 1378 + ], + "score": 0.789 + }, + { + "category_id": 1, + "poly": [ + 296, + 1574, + 1401, + 1574, + 1401, + 1668, + 296, + 1668 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 295, + 794, + 1400, + 794, + 1400, + 859, + 295, + 859 + ], + "score": 0.729 + }, + { + "category_id": 1, + "poly": [ + 298, + 1688, + 1402, + 1688, + 1402, + 1784, + 298, + 1784 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 296, + 1397, + 1404, + 1397, + 1404, + 1554, + 296, + 1554 + ], + "score": 0.72 + }, + { + "category_id": 1, + "poly": [ + 295, + 710, + 1398, + 710, + 1398, + 775, + 295, + 775 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 297, + 993, + 1404, + 993, + 1404, + 1179, + 297, + 1179 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 290, + 229, + 1401, + 229, + 1401, + 294, + 290, + 294 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 296, + 878, + 1406, + 878, + 1406, + 973, + 296, + 973 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 297, + 1199, + 1405, + 1199, + 1405, + 1293, + 297, + 1293 + ], + "score": 0.675 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1398, + 1971, + 1398, + 2034, + 296, + 2034 + ], + "score": 0.643 + }, + { + "category_id": 1, + "poly": [ + 294, + 1887, + 1401, + 1887, + 1401, + 1951, + 294, + 1951 + ], + "score": 0.617 + }, + { + "category_id": 1, + "poly": [ + 291, + 1802, + 1407, + 1802, + 1407, + 1867, + 291, + 1867 + ], + "score": 0.612 + }, + { + "category_id": 1, + "poly": [ + 293, + 312, + 1401, + 312, + 1401, + 378, + 293, + 378 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 295, + 512, + 1399, + 512, + 1399, + 576, + 295, + 576 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 302, + 396, + 1400, + 396, + 1400, + 493, + 302, + 493 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 294, + 596, + 1407, + 596, + 1407, + 692, + 294, + 692 + ], + "score": 0.477 + }, + { + "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, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1346.0, + 707.0, + 1346.0, + 707.0, + 1379.0, + 320.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1402.0, + 1574.0, + 1402.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1606.0, + 1403.0, + 1606.0, + 1403.0, + 1640.0, + 324.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1637.0, + 706.0, + 1637.0, + 706.0, + 1668.0, + 321.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 792.0, + 1404.0, + 792.0, + 1404.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 827.0, + 1057.0, + 827.0, + 1057.0, + 859.0, + 323.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1719.0, + 1402.0, + 1719.0, + 1402.0, + 1756.0, + 322.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1751.0, + 967.0, + 1751.0, + 967.0, + 1785.0, + 325.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1399.0, + 1404.0, + 1399.0, + 1404.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1429.0, + 1404.0, + 1429.0, + 1404.0, + 1466.0, + 324.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1461.0, + 1402.0, + 1461.0, + 1402.0, + 1494.0, + 323.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1488.0, + 1404.0, + 1488.0, + 1404.0, + 1526.0, + 320.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1522.0, + 622.0, + 1522.0, + 622.0, + 1554.0, + 321.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 713.0, + 1400.0, + 713.0, + 1400.0, + 745.0, + 296.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 743.0, + 1200.0, + 743.0, + 1200.0, + 776.0, + 320.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1032.0, + 292.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1027.0, + 1404.0, + 1027.0, + 1404.0, + 1059.0, + 324.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1055.0, + 1404.0, + 1055.0, + 1404.0, + 1091.0, + 322.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1085.0, + 1404.0, + 1085.0, + 1404.0, + 1123.0, + 321.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1113.0, + 1404.0, + 1113.0, + 1404.0, + 1155.0, + 319.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1149.0, + 771.0, + 1149.0, + 771.0, + 1180.0, + 325.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 263.0, + 975.0, + 263.0, + 975.0, + 292.0, + 323.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1404.0, + 878.0, + 1404.0, + 913.0, + 295.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 906.0, + 1403.0, + 906.0, + 1403.0, + 947.0, + 322.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 943.0, + 769.0, + 943.0, + 769.0, + 973.0, + 327.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1229.0, + 1405.0, + 1229.0, + 1405.0, + 1265.0, + 321.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1259.0, + 397.0, + 1259.0, + 397.0, + 1293.0, + 321.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2001.0, + 776.0, + 2001.0, + 776.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1925.0, + 293.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1917.0, + 600.0, + 1917.0, + 600.0, + 1951.0, + 321.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1841.0, + 294.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1832.0, + 625.0, + 1832.0, + 625.0, + 1868.0, + 321.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 311.0, + 1403.0, + 311.0, + 1403.0, + 350.0, + 295.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 344.0, + 1099.0, + 344.0, + 1099.0, + 379.0, + 322.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 509.0, + 1404.0, + 509.0, + 1404.0, + 550.0, + 295.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 544.0, + 740.0, + 544.0, + 740.0, + 576.0, + 321.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 464.0, + 321.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 459.0, + 1314.0, + 459.0, + 1314.0, + 494.0, + 322.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 596.0, + 1405.0, + 596.0, + 1405.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 627.0, + 1404.0, + 627.0, + 1404.0, + 661.0, + 322.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 659.0, + 959.0, + 659.0, + 959.0, + 693.0, + 324.0, + 693.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.887 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.819 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1403, + 1942, + 1403, + 2033, + 299, + 2033 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 296, + 546, + 1405, + 546, + 1405, + 672, + 296, + 672 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 298, + 1128, + 1400, + 1128, + 1400, + 1193, + 298, + 1193 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 294, + 1855, + 1401, + 1855, + 1401, + 1919, + 294, + 1919 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 295, + 1212, + 1401, + 1212, + 1401, + 1279, + 295, + 1279 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 292, + 694, + 1401, + 694, + 1401, + 757, + 292, + 757 + ], + "score": 0.662 + }, + { + "category_id": 1, + "poly": [ + 290, + 1299, + 1401, + 1299, + 1401, + 1364, + 290, + 1364 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 297, + 925, + 1401, + 925, + 1401, + 990, + 297, + 990 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 297, + 1500, + 1402, + 1500, + 1402, + 1595, + 297, + 1595 + ], + "score": 0.604 + }, + { + "category_id": 1, + "poly": [ + 297, + 778, + 1405, + 778, + 1405, + 906, + 297, + 906 + ], + "score": 0.604 + }, + { + "category_id": 1, + "poly": [ + 299, + 1385, + 1402, + 1385, + 1402, + 1481, + 299, + 1481 + ], + "score": 0.601 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1402, + 229, + 1402, + 295, + 293, + 295 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 299, + 1617, + 1404, + 1617, + 1404, + 1834, + 299, + 1834 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 301, + 314, + 1397, + 314, + 1397, + 410, + 301, + 410 + ], + "score": 0.572 + }, + { + "category_id": 1, + "poly": [ + 297, + 431, + 1406, + 431, + 1406, + 525, + 297, + 525 + ], + "score": 0.308 + }, + { + "category_id": 1, + "poly": [ + 299, + 1012, + 1403, + 1012, + 1403, + 1107, + 299, + 1107 + ], + "score": 0.107 + }, + { + "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, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 319.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1997.0, + 399.0, + 1997.0, + 399.0, + 2037.0, + 319.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 549.0, + 1405.0, + 549.0, + 1405.0, + 582.0, + 296.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 578.0, + 1402.0, + 578.0, + 1402.0, + 611.0, + 323.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 609.0, + 1406.0, + 609.0, + 1406.0, + 645.0, + 320.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 640.0, + 475.0, + 640.0, + 475.0, + 670.0, + 324.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1128.0, + 1404.0, + 1128.0, + 1404.0, + 1164.0, + 297.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1159.0, + 954.0, + 1159.0, + 954.0, + 1193.0, + 322.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1893.0, + 293.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1887.0, + 1299.0, + 1887.0, + 1299.0, + 1919.0, + 323.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1406.0, + 1212.0, + 1406.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1246.0, + 1073.0, + 1246.0, + 1073.0, + 1279.0, + 322.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 1404.0, + 690.0, + 1404.0, + 733.0, + 294.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 726.0, + 775.0, + 726.0, + 775.0, + 756.0, + 324.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1298.0, + 1403.0, + 1298.0, + 1403.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1328.0, + 1301.0, + 1328.0, + 1301.0, + 1364.0, + 322.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 928.0, + 1403.0, + 928.0, + 1403.0, + 960.0, + 297.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 956.0, + 1316.0, + 956.0, + 1316.0, + 992.0, + 325.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1532.0, + 1407.0, + 1532.0, + 1407.0, + 1568.0, + 320.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1565.0, + 574.0, + 1565.0, + 574.0, + 1595.0, + 321.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 780.0, + 1403.0, + 780.0, + 1403.0, + 813.0, + 296.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 812.0, + 1405.0, + 812.0, + 1405.0, + 846.0, + 324.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 875.0, + 320.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 874.0, + 1070.0, + 874.0, + 1070.0, + 907.0, + 321.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1416.0, + 1404.0, + 1416.0, + 1404.0, + 1450.0, + 323.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1444.0, + 904.0, + 1444.0, + 904.0, + 1483.0, + 322.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 1012.0, + 261.0, + 1012.0, + 294.0, + 322.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1615.0, + 1404.0, + 1615.0, + 1404.0, + 1656.0, + 296.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1683.0, + 322.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1677.0, + 1406.0, + 1677.0, + 1406.0, + 1717.0, + 319.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1711.0, + 1404.0, + 1711.0, + 1404.0, + 1745.0, + 323.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1739.0, + 1403.0, + 1739.0, + 1403.0, + 1774.0, + 323.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1770.0, + 1404.0, + 1770.0, + 1404.0, + 1805.0, + 322.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1800.0, + 1179.0, + 1800.0, + 1179.0, + 1836.0, + 321.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 315.0, + 1402.0, + 315.0, + 1402.0, + 350.0, + 297.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 347.0, + 1402.0, + 347.0, + 1402.0, + 379.0, + 321.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 378.0, + 855.0, + 378.0, + 855.0, + 412.0, + 323.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 432.0, + 1403.0, + 432.0, + 1403.0, + 466.0, + 295.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 461.0, + 1402.0, + 461.0, + 1402.0, + 499.0, + 321.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 495.0, + 572.0, + 495.0, + 572.0, + 525.0, + 325.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1013.0, + 1403.0, + 1013.0, + 1403.0, + 1047.0, + 295.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1042.0, + 1402.0, + 1042.0, + 1402.0, + 1077.0, + 324.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1072.0, + 1167.0, + 1072.0, + 1167.0, + 1110.0, + 324.0, + 1110.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1402, + 229, + 1402, + 323, + 301, + 323 + ], + "score": 0.762 + }, + { + "category_id": 1, + "poly": [ + 296, + 343, + 1400, + 343, + 1400, + 405, + 296, + 405 + ], + "score": 0.759 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 297.0, + 324.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 292.0, + 967.0, + 292.0, + 967.0, + 326.0, + 326.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 379.0, + 297.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 375.0, + 736.0, + 375.0, + 736.0, + 407.0, + 320.0, + 407.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 1319, + 1431, + 1319, + 1431, + 1641, + 296, + 1641 + ], + "score": 0.98, + "html": "
LanguageArBgCsDaDeE1EsEtFaFiFrca
Training Data214K174k103k45k168k134k196k11k151k24k20k
LanguageFrGlHeHiHrHuHyIdItJaKa
Training Data192K10K212K19K122K147K21K87K205K204K13K
LanguageKoKuLtMkMyNbNIPlPtbrPtRo
Training Data206K10K42K25K21K16K184K176K185K52K180K
LanguageRuSkS1SqSrSvThTrUkViZh
Training Data208K61K20K45K137K57K98K182K108K172K200K
" + }, + { + "category_id": 5, + "poly": [ + 493, + 561, + 1207, + 561, + 1207, + 732, + 493, + 732 + ], + "score": 0.977, + "html": "
LanguageArCsDeHeN1Pt
Training Data174K114K167K180K174K167K
LanguageRoRuThTrViZh
Training Data177K173K83K150K131K209K
" + }, + { + "category_id": 5, + "poly": [ + 499, + 994, + 1198, + 994, + 1198, + 1087, + 499, + 1087 + ], + "score": 0.962, + "html": "
LanguageCsDeFiLvRoRu
Training Data1.0M4.5M2.5M4.5M2.2M2.1M
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1837, + 1405, + 1837, + 1405, + 1901, + 296, + 1901 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 299, + 1770, + 774, + 1770, + 774, + 1807, + 299, + 1807 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 1170, + 1406, + 1170, + 1406, + 1296, + 297, + 1296 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 302, + 298, + 687, + 298, + 687, + 336, + 302, + 336 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 450, + 227, + 450, + 262, + 301, + 262 + ], + "score": 0.86 + }, + { + "category_id": 1, + "poly": [ + 299, + 413, + 1404, + 413, + 1404, + 537, + 299, + 537 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 325, + 1914, + 1378, + 1914, + 1378, + 2036, + 325, + 2036 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 294, + 365, + 1372, + 365, + 1372, + 399, + 294, + 399 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 297, + 814, + 1406, + 814, + 1406, + 969, + 297, + 969 + ], + "score": 0.727 + }, + { + "category_id": 6, + "poly": [ + 366, + 1662, + 1333, + 1662, + 1333, + 1696, + 366, + 1696 + ], + "score": 0.644 + }, + { + "category_id": 6, + "poly": [ + 386, + 1107, + 1307, + 1107, + 1307, + 1141, + 386, + 1141 + ], + "score": 0.597 + }, + { + "category_id": 6, + "poly": [ + 297, + 814, + 1406, + 814, + 1406, + 969, + 297, + 969 + ], + "score": 0.437 + }, + { + "category_id": 1, + "poly": [ + 372, + 751, + 1327, + 751, + 1327, + 786, + 372, + 786 + ], + "score": 0.434 + }, + { + "category_id": 1, + "poly": [ + 386, + 1107, + 1307, + 1107, + 1307, + 1141, + 386, + 1141 + ], + "score": 0.28 + }, + { + "category_id": 7, + "poly": [ + 372, + 751, + 1327, + 751, + 1327, + 786, + 372, + 786 + ], + "score": 0.192 + }, + { + "category_id": 6, + "poly": [ + 299, + 413, + 1404, + 413, + 1404, + 537, + 299, + 537 + ], + "score": 0.165 + }, + { + "category_id": 7, + "poly": [ + 366, + 1662, + 1333, + 1662, + 1333, + 1696, + 366, + 1696 + ], + "score": 0.145 + }, + { + "category_id": 0, + "poly": [ + 294, + 365, + 1372, + 365, + 1372, + 399, + 294, + 399 + ], + "score": 0.104 + }, + { + "category_id": 13, + "poly": [ + 947, + 1666, + 979, + 1666, + 979, + 1691, + 947, + 1691 + ], + "score": 0.83, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 951, + 756, + 982, + 756, + 982, + 781, + 951, + 781 + ], + "score": 0.83, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 655, + 418, + 685, + 418, + 685, + 442, + 655, + 442 + ], + "score": 0.83, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 1287, + 910, + 1315, + 910, + 1315, + 936, + 1287, + 936 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 399, + 509, + 427, + 509, + 427, + 533, + 399, + 533 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 641, + 819, + 669, + 819, + 669, + 843, + 641, + 843 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 399, + 849, + 427, + 849, + 427, + 875, + 399, + 875 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 626, + 1267, + 655, + 1267, + 655, + 1292, + 626, + 1292 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 955, + 1112, + 984, + 1112, + 984, + 1136, + 955, + 1136 + ], + "score": 0.81, + "latex": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1765.0, + 778.0, + 1765.0, + 778.0, + 1812.0, + 291.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 296.0, + 691.0, + 296.0, + 691.0, + 341.0, + 295.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 453.0, + 225.0, + 453.0, + 269.0, + 296.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1909.0, + 539.0, + 1909.0, + 539.0, + 1945.0, + 329.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1937.0, + 1376.0, + 1937.0, + 1376.0, + 1979.0, + 327.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1966.0, + 878.0, + 1966.0, + 878.0, + 2012.0, + 320.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1999.0, + 926.0, + 1999.0, + 926.0, + 2040.0, + 321.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1660.0, + 946.0, + 1660.0, + 946.0, + 1699.0, + 365.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1660.0, + 1335.0, + 1660.0, + 1335.0, + 1699.0, + 980.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1106.0, + 954.0, + 1106.0, + 954.0, + 1145.0, + 386.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1106.0, + 1311.0, + 1106.0, + 1311.0, + 1145.0, + 985.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 813.0, + 640.0, + 813.0, + 640.0, + 850.0, + 296.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 813.0, + 1407.0, + 813.0, + 1407.0, + 850.0, + 670.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 845.0, + 398.0, + 845.0, + 398.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 845.0, + 1404.0, + 845.0, + 1404.0, + 880.0, + 428.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 909.0, + 296.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 906.0, + 1286.0, + 906.0, + 1286.0, + 943.0, + 295.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 906.0, + 1406.0, + 906.0, + 1406.0, + 943.0, + 1316.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 938.0, + 643.0, + 938.0, + 643.0, + 967.0, + 293.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 748.0, + 950.0, + 748.0, + 950.0, + 790.0, + 367.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 748.0, + 1332.0, + 748.0, + 1332.0, + 790.0, + 983.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 654.0, + 412.0, + 654.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 412.0, + 1404.0, + 412.0, + 1404.0, + 448.0, + 686.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 1405.0, + 444.0, + 1405.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 473.0, + 1405.0, + 473.0, + 1405.0, + 511.0, + 293.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 398.0, + 507.0, + 398.0, + 537.0, + 294.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 507.0, + 811.0, + 507.0, + 811.0, + 537.0, + 428.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1660.0, + 946.0, + 1660.0, + 946.0, + 1699.0, + 365.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1660.0, + 1335.0, + 1660.0, + 1335.0, + 1699.0, + 980.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 1375.0, + 361.0, + 1375.0, + 404.0, + 296.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 1408.0, + 1833.0, + 1408.0, + 1877.0, + 293.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1868.0, + 502.0, + 1868.0, + 502.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1169.0, + 1404.0, + 1169.0, + 1404.0, + 1204.0, + 295.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1198.0, + 1408.0, + 1198.0, + 1408.0, + 1238.0, + 292.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1267.0, + 292.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 625.0, + 1264.0, + 625.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1264.0, + 1039.0, + 1264.0, + 1039.0, + 1297.0, + 656.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 654.0, + 412.0, + 654.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 412.0, + 1404.0, + 412.0, + 1404.0, + 448.0, + 686.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 1405.0, + 444.0, + 1405.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 473.0, + 1405.0, + 473.0, + 1405.0, + 511.0, + 293.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 398.0, + 507.0, + 398.0, + 537.0, + 294.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 507.0, + 811.0, + 507.0, + 811.0, + 537.0, + 428.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 1375.0, + 361.0, + 1375.0, + 404.0, + 296.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 813.0, + 640.0, + 813.0, + 640.0, + 850.0, + 296.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 813.0, + 1407.0, + 813.0, + 1407.0, + 850.0, + 670.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 845.0, + 398.0, + 845.0, + 398.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 845.0, + 1404.0, + 845.0, + 1404.0, + 880.0, + 428.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 909.0, + 296.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 906.0, + 1286.0, + 906.0, + 1286.0, + 943.0, + 295.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 906.0, + 1406.0, + 906.0, + 1406.0, + 943.0, + 1316.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 938.0, + 643.0, + 938.0, + 643.0, + 967.0, + 293.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 748.0, + 950.0, + 748.0, + 950.0, + 790.0, + 367.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 748.0, + 1332.0, + 748.0, + 1332.0, + 790.0, + 983.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1106.0, + 954.0, + 1106.0, + 954.0, + 1145.0, + 386.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1106.0, + 1311.0, + 1106.0, + 1311.0, + 1145.0, + 985.0, + 1145.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 294, + 1050, + 1408, + 1050, + 1408, + 1826, + 294, + 1826 + ], + "score": 0.986, + "html": "
LanguageArBgCsDaDeE1EsEtFa
Individual31.0738.6426.4238.2134.6336.6941.207.4326.67
Multilingual (Baseline)27.8427.7627.1740.4132.8536.0439.8014.8624.93
Multilingual (Our method)29.5729.1828.3042.2334.5337.4941.4315.6326.76
LanguageFiFrcaFrGlHeHiHrHuHy
Individual10.7818.5239.6212.6436.8110.8434.1424.6712.30
Multilingual (Baseline)16.1233.0838.2730.3232.9619.9334.3922.7620.25
Multilingual (Our method)17.2234.3239.7531.935.2221.0035.624.5621.17
LanguageIdItJaKaKoKuLtMkMy
Individual29.2038.0613.317.0618.545.6318.1921.937.53
Multilingual (Baseline)29.0836.0212.3316.7116.7111.8320.9631.8513.85
Multilingual (Our method)30.5637.5013.2818.2618.1413.3822.6532.6515.16
LanguageNbNIPIPtbrPtRoRuSkSI
Individual27.2835.8522.9844.2833.8134.0724.3625.6711.80
Multilingual (Baseline)39.8833.9723.5042.9640.5933.0324.0228.9722.52
Multilingual (Our method)41.3535.6524.3044.4142.5734.7325.0129.9023.67
LanguageSqSrSvThTrUkViZh
Individual29.7032.1334.5320.9524.4625.7626.3812.56
Multilingual (Baseline)33.0532.2735.9221.5021.7926.8225.7618.81
Multilingual (Our method)34.7333.7136.9222.1223.6727.8026.5319.39
" + }, + { + "category_id": 5, + "poly": [ + 354, + 224, + 1350, + 224, + 1350, + 625, + 354, + 625 + ], + "score": 0.983, + "html": "
LanguageCodeLanguageCodeLanguageCodeLanguageCode
ArabicArBulgarianBgCzechCsDanishDa
GermanDeGreekElEnglishEnSpanishEs
PersianFaFinnishFiFrenchFrGalicianGl
HebrewHeHindiHiCroatianHrHungarianHu
ArmenianHyIndonesianIdItalianItJapaneseJa
GeorgianKaKoreanKoKurdishKuLithuanianLt
LatvianLvMacedonianMkBurmeseMyNorwegianNb
DutchN1PolishPlPortuguesePtRomanianRo
RussianRuSlovakSkSlovenianS1AlbanianSq
SerbianSrSwedishSvThaiThTurkishTr
UkrainianUkVietnameseViChineseZh
" + }, + { + "category_id": 0, + "poly": [ + 302, + 796, + 824, + 796, + 824, + 834, + 302, + 834 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 6, + "poly": [ + 297, + 865, + 1405, + 865, + 1405, + 1021, + 297, + 1021 + ], + "score": 0.86 + }, + { + "category_id": 6, + "poly": [ + 299, + 1845, + 1401, + 1845, + 1401, + 1907, + 299, + 1907 + ], + "score": 0.659 + }, + { + "category_id": 7, + "poly": [ + 297, + 647, + 1406, + 647, + 1406, + 740, + 297, + 740 + ], + "score": 0.584 + }, + { + "category_id": 6, + "poly": [ + 297, + 647, + 1406, + 647, + 1406, + 740, + 297, + 740 + ], + "score": 0.296 + }, + { + "category_id": 7, + "poly": [ + 299, + 1845, + 1401, + 1845, + 1401, + 1907, + 299, + 1907 + ], + "score": 0.231 + }, + { + "category_id": 1, + "poly": [ + 297, + 865, + 1405, + 865, + 1405, + 1021, + 297, + 1021 + ], + "score": 0.221 + }, + { + "category_id": 13, + "poly": [ + 1253, + 1849, + 1281, + 1849, + 1281, + 1873, + 1253, + 1873 + ], + "score": 0.83, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 745, + 870, + 774, + 870, + 774, + 895, + 745, + 895 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 504, + 988, + 563, + 988, + 563, + 1022, + 504, + 1022 + ], + "score": 0.54, + "latex": "1 / 4 4" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 792.0, + 830.0, + 792.0, + 830.0, + 839.0, + 291.0, + 839.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, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 864.0, + 744.0, + 864.0, + 744.0, + 898.0, + 297.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 864.0, + 1405.0, + 864.0, + 1405.0, + 898.0, + 775.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 931.0, + 296.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 992.0, + 296.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 987.0, + 503.0, + 987.0, + 503.0, + 1027.0, + 292.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 987.0, + 847.0, + 987.0, + 847.0, + 1027.0, + 564.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1839.0, + 1252.0, + 1839.0, + 1252.0, + 1882.0, + 293.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1882.0, + 1282.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1873.0, + 526.0, + 1873.0, + 526.0, + 1909.0, + 296.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 643.0, + 1406.0, + 643.0, + 1406.0, + 686.0, + 292.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 677.0, + 1404.0, + 677.0, + 1404.0, + 713.0, + 294.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 424.0, + 704.0, + 424.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 643.0, + 1406.0, + 643.0, + 1406.0, + 686.0, + 292.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 677.0, + 1404.0, + 677.0, + 1404.0, + 713.0, + 294.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 424.0, + 704.0, + 424.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1839.0, + 1252.0, + 1839.0, + 1252.0, + 1882.0, + 293.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1882.0, + 1282.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1873.0, + 526.0, + 1873.0, + 526.0, + 1909.0, + 296.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 864.0, + 744.0, + 864.0, + 744.0, + 898.0, + 297.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 864.0, + 1405.0, + 864.0, + 1405.0, + 898.0, + 775.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 931.0, + 296.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 992.0, + 296.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 987.0, + 503.0, + 987.0, + 503.0, + 1027.0, + 292.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 987.0, + 847.0, + 987.0, + 847.0, + 1027.0, + 564.0, + 1027.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/l2UWXn5iBQI/l2UWXn5iBQI_middle.json b/parse/train/l2UWXn5iBQI/l2UWXn5iBQI_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5e9a918c15d575e287f0ff71d5ad1687d1daa847 --- /dev/null +++ b/parse/train/l2UWXn5iBQI/l2UWXn5iBQI_middle.json @@ -0,0 +1,40501 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 144, + 97, + 468, + 137 + ], + "lines": [ + { + "bbox": [ + 144, + 97, + 468, + 118 + ], + "spans": [ + { + "bbox": [ + 144, + 97, + 468, + 118 + ], + "score": 1.0, + "content": "Exponential Graph is Provably Efficient for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 198, + 117, + 413, + 140 + ], + "spans": [ + { + "bbox": [ + 198, + 117, + 413, + 140 + ], + "score": 1.0, + "content": "Decentralized Deep Training", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 128, + 178, + 482, + 191 + ], + "lines": [ + { + "bbox": [ + 127, + 177, + 482, + 194 + ], + "spans": [ + { + "bbox": [ + 127, + 177, + 165, + 194 + ], + "score": 1.0, + "content": "Bicheng", + "type": "text" + }, + { + "bbox": [ + 165, + 178, + 197, + 191 + ], + "score": 0.59, + "content": "\\mathbf { Y i n g ^ { 1 , 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 177, + 201, + 194 + ], + "score": 1.0, + "content": "∗,", + "type": "text" + }, + { + "bbox": [ + 201, + 178, + 254, + 190 + ], + "score": 0.53, + "content": "\\mathbf { K u n \\ Y u a n ^ { 2 * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 177, + 292, + 194 + ], + "score": 1.0, + "content": ", Yiming", + "type": "text" + }, + { + "bbox": [ + 292, + 178, + 324, + 190 + ], + "score": 0.44, + "content": "\\mathbf { C h e n ^ { 2 * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 177, + 362, + 194 + ], + "score": 1.0, + "content": ", Hanbin", + "type": "text" + }, + { + "bbox": [ + 363, + 178, + 382, + 190 + ], + "score": 0.79, + "content": "\\mathbf { H } \\mathbf { u } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 177, + 404, + 194 + ], + "score": 1.0, + "content": ", Pan", + "type": "text" + }, + { + "bbox": [ + 405, + 178, + 426, + 190 + ], + "score": 0.42, + "content": "\\mathbf { P a n } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 177, + 460, + 194 + ], + "score": 1.0, + "content": ", Wotao", + "type": "text" + }, + { + "bbox": [ + 460, + 178, + 482, + 190 + ], + "score": 0.33, + "content": "\\mathbf { Y i n ^ { 2 } }", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 155, + 191, + 456, + 236 + ], + "lines": [ + { + "bbox": [ + 152, + 188, + 458, + 205 + ], + "spans": [ + { + "bbox": [ + 152, + 188, + 458, + 205 + ], + "score": 1.0, + "content": "1 University of California, Los Angeles 2 DAMO Academy, Alibaba Group", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 191, + 199, + 419, + 216 + ], + "spans": [ + { + "bbox": [ + 191, + 199, + 419, + 216 + ], + "score": 1.0, + "content": "3 Google Inc. 4 University of California, Santa Barbara", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 160, + 213, + 444, + 226 + ], + "spans": [ + { + "bbox": [ + 160, + 213, + 444, + 226 + ], + "score": 1.0, + "content": "ybc@ucla.edu, {kun.yuan, charles.cym}@alibaba-inc.com,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 154, + 223, + 456, + 237 + ], + "spans": [ + { + "bbox": [ + 154, + 223, + 456, + 237 + ], + "score": 1.0, + "content": "hanbinhu@ucsb.edu, {panpan.pp, wotao.yin}@alibaba-inc.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 283, + 263, + 328, + 276 + ], + "lines": [ + { + "bbox": [ + 282, + 263, + 330, + 277 + ], + "spans": [ + { + "bbox": [ + 282, + 263, + 330, + 277 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 289, + 469, + 366 + ], + "lines": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "score": 1.0, + "content": "Decentralized SGD is an emerging training method for deep learning known for its", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 140, + 298, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 140, + 298, + 470, + 315 + ], + "score": 1.0, + "content": "much less (thus faster) communication per iteration, which relaxes the averaging", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "score": 1.0, + "content": "step in parallel SGD to inexact averaging. The less exact the averaging is, however,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "score": 1.0, + "content": "the more the total iterations the training needs to take. Therefore, the key to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "score": 1.0, + "content": "making decentralized SGD efficient is to realize nearly-exact averaging using little", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 343, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 357 + ], + "score": 1.0, + "content": "communication. This requires a skillful choice of communication topology, which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 355, + 364, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 364, + 367 + ], + "score": 1.0, + "content": "is an under-studied topic in decentralized optimization.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 368, + 469, + 521 + ], + "lines": [ + { + "bbox": [ + 142, + 369, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 470, + 380 + ], + "score": 1.0, + "content": "In this paper, we study so-called exponential graphs where every node is con-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 379, + 470, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 183, + 392 + ], + "score": 1.0, + "content": "nected to", + "type": "text" + }, + { + "bbox": [ + 183, + 379, + 226, + 391 + ], + "score": 0.92, + "content": "O ( \\log ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 379, + 290, + 392 + ], + "score": 1.0, + "content": "neighbors and", + "type": "text" + }, + { + "bbox": [ + 290, + 381, + 298, + 389 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 379, + 470, + 392 + ], + "score": 1.0, + "content": "is the total number of nodes. This work", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 389, + 470, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 403 + ], + "score": 1.0, + "content": "proves such graphs can lead to both fast communication and effective averaging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 400, + 469, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 353, + 414 + ], + "score": 1.0, + "content": "simultaneously. We also discover that a sequence of", + "type": "text" + }, + { + "bbox": [ + 353, + 401, + 381, + 413 + ], + "score": 0.92, + "content": "\\log ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 400, + 469, + 414 + ], + "score": 1.0, + "content": "one-peer exponential", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 412, + 470, + 425 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 425 + ], + "score": 1.0, + "content": "graphs, in which each node communicates to one single neighbor per iteration,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 423, + 470, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 470, + 435 + ], + "score": 1.0, + "content": "can together achieve exact averaging. This favorable property enables one-peer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 434, + 471, + 446 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 471, + 446 + ], + "score": 1.0, + "content": "exponential graph to average as effective as its static counterpart but commu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 444, + 470, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 470, + 457 + ], + "score": 1.0, + "content": "nicates more efficiently. We apply these exponential graphs in decentralized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 456, + 469, + 467 + ], + "spans": [ + { + "bbox": [ + 142, + 456, + 469, + 467 + ], + "score": 1.0, + "content": "(momentum) SGD to obtain the state-of-the-art balance between per-iteration", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 467, + 470, + 478 + ], + "spans": [ + { + "bbox": [ + 141, + 467, + 470, + 478 + ], + "score": 1.0, + "content": "communication and iteration complexity among all commonly-used topologies.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 478, + 470, + 488 + ], + "spans": [ + { + "bbox": [ + 142, + 478, + 470, + 488 + ], + "score": 1.0, + "content": "Experimental results on a variety of tasks and models demonstrate that decen-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 488, + 470, + 501 + ], + "spans": [ + { + "bbox": [ + 141, + 488, + 470, + 501 + ], + "score": 1.0, + "content": "tralized (momentum) SGD over exponential graphs promises both fast and high-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 499, + 470, + 511 + ], + "spans": [ + { + "bbox": [ + 141, + 499, + 470, + 511 + ], + "score": 1.0, + "content": "quality training. Our code is implemented through BlueFog and available at", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 509, + 462, + 523 + ], + "spans": [ + { + "bbox": [ + 141, + 509, + 462, + 523 + ], + "score": 1.0, + "content": "https://github.com/Bluefog-Lib/NeurIPS2021-Exponential-Graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 190, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 192, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 192, + 563 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "Efficient distributed training methods across multiple computing nodes are critical for large-scale", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "modern deep learning tasks. Parallel stochastic gradient descent (SGD) is a widely-used approach,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "which, at each iteration, computes a globally averaged gradient either using Parameter-Server [28]", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "or All-Reduce [47]. Such global coordination across all nodes in parallel SGD results in either", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 610, + 478, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 478, + 624 + ], + "score": 1.0, + "content": "significant bandwidth cost or high latency, which can notably hamper the training scalability.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "score": 1.0, + "content": "Decentralized SGD [45, 11, 30, 3] based on partial averaging has been one of the promising", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "alternatives to parallel SGD in distributed deep training. Partial averaging, as opposed to the global", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "averaging exploited in parallel SGD, only requires each node to compute the locally averaged model", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "within its neighborhood. Decentralized SGD does not involve any global operations, so it has much", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 670, + 507, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 507, + 684 + ], + "score": 1.0, + "content": "lower communication overhead per iteration. The fewer neighbors each node needs to communicate,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 682, + 419, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 419, + 693 + ], + "score": 1.0, + "content": "the more efficient the per-iteration communication is in decentralized SGD.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 702, + 323, + 712 + ], + "lines": [ + { + "bbox": [ + 119, + 700, + 324, + 714 + ], + "spans": [ + { + "bbox": [ + 119, + 700, + 324, + 714 + ], + "score": 1.0, + "content": "∗Equal Contribution. Corresponding Author: Wotao Yin", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 106, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 106, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 144, + 97, + 468, + 137 + ], + "lines": [ + { + "bbox": [ + 144, + 97, + 468, + 118 + ], + "spans": [ + { + "bbox": [ + 144, + 97, + 468, + 118 + ], + "score": 1.0, + "content": "Exponential Graph is Provably Efficient for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 198, + 117, + 413, + 140 + ], + "spans": [ + { + "bbox": [ + 198, + 117, + 413, + 140 + ], + "score": 1.0, + "content": "Decentralized Deep Training", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 128, + 178, + 482, + 191 + ], + "lines": [ + { + "bbox": [ + 127, + 177, + 482, + 194 + ], + "spans": [ + { + "bbox": [ + 127, + 177, + 165, + 194 + ], + "score": 1.0, + "content": "Bicheng", + "type": "text" + }, + { + "bbox": [ + 165, + 178, + 197, + 191 + ], + "score": 0.59, + "content": "\\mathbf { Y i n g ^ { 1 , 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 177, + 201, + 194 + ], + "score": 1.0, + "content": "∗,", + "type": "text" + }, + { + "bbox": [ + 201, + 178, + 254, + 190 + ], + "score": 0.53, + "content": "\\mathbf { K u n \\ Y u a n ^ { 2 * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 177, + 292, + 194 + ], + "score": 1.0, + "content": ", Yiming", + "type": "text" + }, + { + "bbox": [ + 292, + 178, + 324, + 190 + ], + "score": 0.44, + "content": "\\mathbf { C h e n ^ { 2 * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 177, + 362, + 194 + ], + "score": 1.0, + "content": ", Hanbin", + "type": "text" + }, + { + "bbox": [ + 363, + 178, + 382, + 190 + ], + "score": 0.79, + "content": "\\mathbf { H } \\mathbf { u } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 177, + 404, + 194 + ], + "score": 1.0, + "content": ", Pan", + "type": "text" + }, + { + "bbox": [ + 405, + 178, + 426, + 190 + ], + "score": 0.42, + "content": "\\mathbf { P a n } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 177, + 460, + 194 + ], + "score": 1.0, + "content": ", Wotao", + "type": "text" + }, + { + "bbox": [ + 460, + 178, + 482, + 190 + ], + "score": 0.33, + "content": "\\mathbf { Y i n ^ { 2 } }", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 127, + 177, + 482, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 155, + 191, + 456, + 236 + ], + "lines": [ + { + "bbox": [ + 152, + 188, + 458, + 205 + ], + "spans": [ + { + "bbox": [ + 152, + 188, + 458, + 205 + ], + "score": 1.0, + "content": "1 University of California, Los Angeles 2 DAMO Academy, Alibaba Group", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 191, + 199, + 419, + 216 + ], + "spans": [ + { + "bbox": [ + 191, + 199, + 419, + 216 + ], + "score": 1.0, + "content": "3 Google Inc. 4 University of California, Santa Barbara", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 160, + 213, + 444, + 226 + ], + "spans": [ + { + "bbox": [ + 160, + 213, + 444, + 226 + ], + "score": 1.0, + "content": "ybc@ucla.edu, {kun.yuan, charles.cym}@alibaba-inc.com,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 154, + 223, + 456, + 237 + ], + "spans": [ + { + "bbox": [ + 154, + 223, + 456, + 237 + ], + "score": 1.0, + "content": "hanbinhu@ucsb.edu, {panpan.pp, wotao.yin}@alibaba-inc.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 152, + 188, + 458, + 237 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 263, + 328, + 276 + ], + "lines": [ + { + "bbox": [ + 282, + 263, + 330, + 277 + ], + "spans": [ + { + "bbox": [ + 282, + 263, + 330, + 277 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 289, + 469, + 366 + ], + "lines": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "score": 1.0, + "content": "Decentralized SGD is an emerging training method for deep learning known for its", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 140, + 298, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 140, + 298, + 470, + 315 + ], + "score": 1.0, + "content": "much less (thus faster) communication per iteration, which relaxes the averaging", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "score": 1.0, + "content": "step in parallel SGD to inexact averaging. The less exact the averaging is, however,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "score": 1.0, + "content": "the more the total iterations the training needs to take. Therefore, the key to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "score": 1.0, + "content": "making decentralized SGD efficient is to realize nearly-exact averaging using little", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 343, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 357 + ], + "score": 1.0, + "content": "communication. This requires a skillful choice of communication topology, which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 355, + 364, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 364, + 367 + ], + "score": 1.0, + "content": "is an under-studied topic in decentralized optimization.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 140, + 289, + 470, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 368, + 469, + 521 + ], + "lines": [ + { + "bbox": [ + 142, + 369, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 470, + 380 + ], + "score": 1.0, + "content": "In this paper, we study so-called exponential graphs where every node is con-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 379, + 470, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 183, + 392 + ], + "score": 1.0, + "content": "nected to", + "type": "text" + }, + { + "bbox": [ + 183, + 379, + 226, + 391 + ], + "score": 0.92, + "content": "O ( \\log ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 379, + 290, + 392 + ], + "score": 1.0, + "content": "neighbors and", + "type": "text" + }, + { + "bbox": [ + 290, + 381, + 298, + 389 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 379, + 470, + 392 + ], + "score": 1.0, + "content": "is the total number of nodes. This work", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 389, + 470, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 403 + ], + "score": 1.0, + "content": "proves such graphs can lead to both fast communication and effective averaging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 400, + 469, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 353, + 414 + ], + "score": 1.0, + "content": "simultaneously. We also discover that a sequence of", + "type": "text" + }, + { + "bbox": [ + 353, + 401, + 381, + 413 + ], + "score": 0.92, + "content": "\\log ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 400, + 469, + 414 + ], + "score": 1.0, + "content": "one-peer exponential", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 412, + 470, + 425 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 425 + ], + "score": 1.0, + "content": "graphs, in which each node communicates to one single neighbor per iteration,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 423, + 470, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 470, + 435 + ], + "score": 1.0, + "content": "can together achieve exact averaging. This favorable property enables one-peer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 434, + 471, + 446 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 471, + 446 + ], + "score": 1.0, + "content": "exponential graph to average as effective as its static counterpart but commu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 444, + 470, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 470, + 457 + ], + "score": 1.0, + "content": "nicates more efficiently. We apply these exponential graphs in decentralized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 456, + 469, + 467 + ], + "spans": [ + { + "bbox": [ + 142, + 456, + 469, + 467 + ], + "score": 1.0, + "content": "(momentum) SGD to obtain the state-of-the-art balance between per-iteration", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 467, + 470, + 478 + ], + "spans": [ + { + "bbox": [ + 141, + 467, + 470, + 478 + ], + "score": 1.0, + "content": "communication and iteration complexity among all commonly-used topologies.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 478, + 470, + 488 + ], + "spans": [ + { + "bbox": [ + 142, + 478, + 470, + 488 + ], + "score": 1.0, + "content": "Experimental results on a variety of tasks and models demonstrate that decen-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 488, + 470, + 501 + ], + "spans": [ + { + "bbox": [ + 141, + 488, + 470, + 501 + ], + "score": 1.0, + "content": "tralized (momentum) SGD over exponential graphs promises both fast and high-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 499, + 470, + 511 + ], + "spans": [ + { + "bbox": [ + 141, + 499, + 470, + 511 + ], + "score": 1.0, + "content": "quality training. Our code is implemented through BlueFog and available at", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 509, + 462, + 523 + ], + "spans": [ + { + "bbox": [ + 141, + 509, + 462, + 523 + ], + "score": 1.0, + "content": "https://github.com/Bluefog-Lib/NeurIPS2021-Exponential-Graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 21.5, + "bbox_fs": [ + 141, + 369, + 471, + 523 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 190, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 192, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 192, + 563 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "Efficient distributed training methods across multiple computing nodes are critical for large-scale", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "modern deep learning tasks. Parallel stochastic gradient descent (SGD) is a widely-used approach,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "which, at each iteration, computes a globally averaged gradient either using Parameter-Server [28]", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "or All-Reduce [47]. Such global coordination across all nodes in parallel SGD results in either", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 610, + 478, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 478, + 624 + ], + "score": 1.0, + "content": "significant bandwidth cost or high latency, which can notably hamper the training scalability.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 566, + 506, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "score": 1.0, + "content": "Decentralized SGD [45, 11, 30, 3] based on partial averaging has been one of the promising", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "alternatives to parallel SGD in distributed deep training. Partial averaging, as opposed to the global", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "averaging exploited in parallel SGD, only requires each node to compute the locally averaged model", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "within its neighborhood. Decentralized SGD does not involve any global operations, so it has much", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 670, + 507, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 507, + 684 + ], + "score": 1.0, + "content": "lower communication overhead per iteration. The fewer neighbors each node needs to communicate,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 682, + 419, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 419, + 693 + ], + "score": 1.0, + "content": "the more efficient the per-iteration communication is in decentralized SGD.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 625, + 507, + 693 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 114, + 504, + 167 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 70, + 506, + 111 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 506, + 83 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 506, + 83 + ], + "score": 1.0, + "content": "Table 1: Comparison between decentralized (momentum) SGD over (some) various commonly-used topologes.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "score": 1.0, + "content": "The table assumes homogeneous data distributions across all nodes (which is practical for deep training within", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 91, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 101 + ], + "score": 1.0, + "content": "a data-center). The comparison for data-heterogeneous scenarios, and with more other topologies, is listed in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 112 + ], + "score": 1.0, + "content": "Appendix C. The smaller the transient iteration complexity is, the faster decentralized algorithms will converge.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 114, + 504, + 167 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 114, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 504, + 167 + ], + "score": 0.974, + "html": "
TopologyRingGridRand-GraphRand-MatchStatic Exp One-peer Exp
Per-iter Comm.(2)2(4)()(1)Ω(log2(n))(1)
Trans. Iters.Ω(n7)Ω(n5)(n3)1Ω(n³ log2(n))Ω(n³log²2(n))
", + "type": "table", + "image_path": "d3af7ab584670180f688246b0582c6e8441ecec5bc9b5fa0528926f6c35470cc.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 114, + 504, + 131.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 131.66666666666666, + 504, + 149.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 149.33333333333331, + 504, + 166.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 506, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "The reduced communication in decentralized SGD comes with a cost: slower convergence. While", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 104, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "it can asymptotically achieve the same convergence linear speedup as parallel SGD [30, 3, 25, 64],", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "i.e., the training speed increases proportionally to the number of computing nodes (see the definition", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "in Sec. 2), decentralized SGD requires more iterations to reach that stage due to the ineffectiveness", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "to aggregate information using partial averaging. We refer those iterations before decentralized", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "SGD reaches its linear speedup stage as transient iterations (see the definition in Sec. 2), which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "is an important metric to measure the influence of partial-averaging [48, 65] on convergence rate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "of decentralized SGD. The less effective the partial averaging is, the more transient iterations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "decentralized SGD needs to take. Fig. 1 illustrates the transient iterations of decentralized SGD for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "score": 1.0, + "content": "the logistic regression problem. It is observed that decentralized SGD can asymptotically converge as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 285, + 489, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 489, + 298 + ], + "score": 1.0, + "content": "fast as parallel SGD, but it requires more iterations (i.e., transient iterations) to reach that stage.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 345, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 345, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 345, + 313 + ], + "score": 1.0, + "content": "Per-iteration communication and transient iterations in de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 345, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 345, + 327 + ], + "score": 1.0, + "content": "centralized SGD are determined by the network topology", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 324, + 344, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 344, + 336 + ], + "score": 1.0, + "content": "(we also use graph interchangeably with topology). The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 335, + 344, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 344, + 346 + ], + "score": 1.0, + "content": "maximum degree of the graph decides the communication", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 345, + 345, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 345, + 357 + ], + "score": 1.0, + "content": "cost while the connectivity influences the transient itera-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 357, + 345, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 345, + 368 + ], + "score": 1.0, + "content": "tion complexity. Generally speaking, a sparsely-connected", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 367, + 345, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 345, + 379 + ], + "score": 1.0, + "content": "topology communicates cheaply but endows decentralized", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 378, + 345, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 345, + 390 + ], + "score": 1.0, + "content": "SGD with more transient iterations due to the less effec-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 389, + 345, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 345, + 401 + ], + "score": 1.0, + "content": "tive information aggregation. A skillful choice of network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 399, + 346, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 346, + 412 + ], + "score": 1.0, + "content": "topology, which is critical to achieve balance between per-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 410, + 346, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 346, + 424 + ], + "score": 1.0, + "content": "iteration communication and transient iteration complexity,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 421, + 224, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 224, + 434 + ], + "score": 1.0, + "content": "is under-studied in literature.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 23.5 + }, + { + "type": "image", + "bbox": [ + 353, + 304, + 502, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 304, + 502, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 353, + 304, + 502, + 421 + ], + "spans": [ + { + "bbox": [ + 353, + 304, + 502, + 421 + ], + "score": 0.967, + "type": "image", + "image_path": "fe4fdd71eb359ff24cb52a419b362226d510cbefbbb83aaa18627819772c3f6a.jpg" + } + ] + } + ], + "index": 28.0, + "virtual_lines": [ + { + "bbox": [ + 353, + 304, + 502, + 362.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 353, + 362.5, + 502, + 421.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 352, + 423, + 504, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 352, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 352, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "Figure 1: Illustration of transient iters.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 352, + 433, + 501, + 444 + ], + "spans": [ + { + "bbox": [ + 352, + 433, + 501, + 444 + ], + "score": 1.0, + "content": "Experimental setting is in Appendix D.5.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.0 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 345, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 345, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 345, + 452 + ], + "score": 1.0, + "content": "This work studies exponential graphs which are empiri-", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 449, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "cally successful [3, 61, 27, 14, 67] but less theoretically understood in deep training. Exponential", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 460, + 503, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 463, + 472 + ], + "score": 1.0, + "content": "graphs have two variants. In a static exponential graph, each node communicates to", + "type": "text" + }, + { + "bbox": [ + 464, + 460, + 503, + 472 + ], + "score": 0.92, + "content": "\\lceil \\log _ { 2 } ( n ) \\rceil", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "neighbors (see Sec. 3 and Fig. 2). In one-peer exponential graph, however, each node cycles through", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "all its neighbors, communicating, only, to a single neighbor per iteration (see Sec. 4 and Fig. 2). This", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "paper will first clarify the connectivity and averaging effectiveness of these exponential graphs, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "then apply them to decentralized momentum SGD to obtain the state-of-the-art balance between", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "per-iteration communication and transient iteration complexity among all commonly-used topologies.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 524, + 312, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 312, + 538 + ], + "score": 1.0, + "content": "Our main results (as well as our contributions) are:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 117, + 541, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 116, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "• We prove that the spectral gap, which is used to measure the connectivity of the graph (see the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 125, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 125, + 551, + 412, + 565 + ], + "score": 1.0, + "content": "definition in Sec. 2), of the static exponential graph is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 412, + 552, + 471, + 564 + ], + "score": 0.92, + "content": "O ( 1 / \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 551, + 505, + 565 + ], + "score": 1.0, + "content": ". Before", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 126, + 563, + 441, + 575 + ], + "spans": [ + { + "bbox": [ + 126, + 563, + 371, + 575 + ], + "score": 1.0, + "content": "us, many literatures (e.g. [27]) claimed its upper bound to be", + "type": "text" + }, + { + "bbox": [ + 371, + 563, + 393, + 575 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 563, + 441, + 575 + ], + "score": 1.0, + "content": "incorrectly.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 122, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 122, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Since one-peer exponential graphs are time-varying, it is difficult to derive their spectral gaps.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 125, + 585, + 254, + 599 + ], + "score": 1.0, + "content": "However, we establish that any", + "type": "text" + }, + { + "bbox": [ + 254, + 586, + 286, + 598 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "consecutive sequence of one-peer exponential graphs", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 124, + 596, + 373, + 610 + ], + "spans": [ + { + "bbox": [ + 124, + 596, + 300, + 610 + ], + "score": 1.0, + "content": "can together achieve exact averaging when", + "type": "text" + }, + { + "bbox": [ + 300, + 599, + 308, + 606 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 596, + 373, + 610 + ], + "score": 1.0, + "content": "is a power of 2.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 117, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 117, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "• With the above results, we establish that one-peer exponential graph, though much sparser", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 126, + 620, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 126, + 620, + 506, + 632 + ], + "score": 1.0, + "content": "than its static counterpart, surprisingly endows decentralized momentum SGD with the same", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 125, + 631, + 447, + 642 + ], + "spans": [ + { + "bbox": [ + 125, + 631, + 447, + 642 + ], + "score": 1.0, + "content": "convergence rate as static exponential graph in terms of the best-known bounds.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 117, + 642, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 117, + 643, + 297, + 656 + ], + "score": 1.0, + "content": "• We derive that exponential graphs achieve", + "type": "text" + }, + { + "bbox": [ + 298, + 642, + 322, + 656 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( 1 ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 643, + 457, + 656 + ], + "score": 1.0, + "content": "per-iteration communication and", + "type": "text" + }, + { + "bbox": [ + 457, + 642, + 484, + 656 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 643, + 507, + 656 + ], + "score": 1.0, + "content": "tran-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 125, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 125, + 654, + 507, + 668 + ], + "score": 1.0, + "content": "sient iterations, both of which are nearly the best among other known topologies, see Table 1.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 125, + 664, + 499, + 679 + ], + "spans": [ + { + "bbox": [ + 125, + 664, + 499, + 679 + ], + "score": 1.0, + "content": "The one-peer exponential graph is particularly recommended for decentralized deep training.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 116, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "• We conduct extensive industry-level experiments across different tasks and models with various", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 125, + 688, + 457, + 701 + ], + "spans": [ + { + "bbox": [ + 125, + 688, + 457, + 701 + ], + "score": 1.0, + "content": "decentralized methods, graphs, and network size to validate our theoretical results.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 49.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 711, + 272, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 708, + 273, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 708, + 156, + 724 + ], + "score": 1.0, + "content": "2Notation", + "type": "text" + }, + { + "bbox": [ + 156, + 710, + 174, + 722 + ], + "score": 0.88, + "content": "\\tilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 708, + 273, + 724 + ], + "score": 1.0, + "content": "hides all logarithm factors.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 114, + 504, + 167 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 70, + 506, + 111 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 506, + 83 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 506, + 83 + ], + "score": 1.0, + "content": "Table 1: Comparison between decentralized (momentum) SGD over (some) various commonly-used topologes.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "score": 1.0, + "content": "The table assumes homogeneous data distributions across all nodes (which is practical for deep training within", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 91, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 101 + ], + "score": 1.0, + "content": "a data-center). The comparison for data-heterogeneous scenarios, and with more other topologies, is listed in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 112 + ], + "score": 1.0, + "content": "Appendix C. The smaller the transient iteration complexity is, the faster decentralized algorithms will converge.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 114, + 504, + 167 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 114, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 504, + 167 + ], + "score": 0.974, + "html": "
TopologyRingGridRand-GraphRand-MatchStatic Exp One-peer Exp
Per-iter Comm.(2)2(4)()(1)Ω(log2(n))(1)
Trans. Iters.Ω(n7)Ω(n5)(n3)1Ω(n³ log2(n))Ω(n³log²2(n))
", + "type": "table", + "image_path": "d3af7ab584670180f688246b0582c6e8441ecec5bc9b5fa0528926f6c35470cc.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 114, + 504, + 131.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 131.66666666666666, + 504, + 149.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 149.33333333333331, + 504, + 166.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 506, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "The reduced communication in decentralized SGD comes with a cost: slower convergence. While", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 104, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "it can asymptotically achieve the same convergence linear speedup as parallel SGD [30, 3, 25, 64],", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "i.e., the training speed increases proportionally to the number of computing nodes (see the definition", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "in Sec. 2), decentralized SGD requires more iterations to reach that stage due to the ineffectiveness", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "to aggregate information using partial averaging. We refer those iterations before decentralized", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "SGD reaches its linear speedup stage as transient iterations (see the definition in Sec. 2), which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "is an important metric to measure the influence of partial-averaging [48, 65] on convergence rate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "of decentralized SGD. The less effective the partial averaging is, the more transient iterations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "decentralized SGD needs to take. Fig. 1 illustrates the transient iterations of decentralized SGD for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "score": 1.0, + "content": "the logistic regression problem. It is observed that decentralized SGD can asymptotically converge as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 285, + 489, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 489, + 298 + ], + "score": 1.0, + "content": "fast as parallel SGD, but it requires more iterations (i.e., transient iterations) to reach that stage.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 176, + 506, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 345, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 345, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 345, + 313 + ], + "score": 1.0, + "content": "Per-iteration communication and transient iterations in de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 345, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 345, + 327 + ], + "score": 1.0, + "content": "centralized SGD are determined by the network topology", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 324, + 344, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 344, + 336 + ], + "score": 1.0, + "content": "(we also use graph interchangeably with topology). The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 335, + 344, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 344, + 346 + ], + "score": 1.0, + "content": "maximum degree of the graph decides the communication", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 345, + 345, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 345, + 357 + ], + "score": 1.0, + "content": "cost while the connectivity influences the transient itera-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 357, + 345, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 345, + 368 + ], + "score": 1.0, + "content": "tion complexity. Generally speaking, a sparsely-connected", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 367, + 345, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 345, + 379 + ], + "score": 1.0, + "content": "topology communicates cheaply but endows decentralized", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 378, + 345, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 345, + 390 + ], + "score": 1.0, + "content": "SGD with more transient iterations due to the less effec-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 389, + 345, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 345, + 401 + ], + "score": 1.0, + "content": "tive information aggregation. A skillful choice of network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 399, + 346, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 346, + 412 + ], + "score": 1.0, + "content": "topology, which is critical to achieve balance between per-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 410, + 346, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 346, + 424 + ], + "score": 1.0, + "content": "iteration communication and transient iteration complexity,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 421, + 224, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 224, + 434 + ], + "score": 1.0, + "content": "is under-studied in literature.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 302, + 346, + 434 + ] + }, + { + "type": "image", + "bbox": [ + 353, + 304, + 502, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 304, + 502, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 353, + 304, + 502, + 421 + ], + "spans": [ + { + "bbox": [ + 353, + 304, + 502, + 421 + ], + "score": 0.967, + "type": "image", + "image_path": "fe4fdd71eb359ff24cb52a419b362226d510cbefbbb83aaa18627819772c3f6a.jpg" + } + ] + } + ], + "index": 28.0, + "virtual_lines": [ + { + "bbox": [ + 353, + 304, + 502, + 362.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 353, + 362.5, + 502, + 421.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 352, + 423, + 504, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 352, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 352, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "Figure 1: Illustration of transient iters.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 352, + 433, + 501, + 444 + ], + "spans": [ + { + "bbox": [ + 352, + 433, + 501, + 444 + ], + "score": 1.0, + "content": "Experimental setting is in Appendix D.5.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.0 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 345, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 345, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 345, + 452 + ], + "score": 1.0, + "content": "This work studies exponential graphs which are empiri-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "cally successful [3, 61, 27, 14, 67] but less theoretically understood in deep training. Exponential", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 460, + 503, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 463, + 472 + ], + "score": 1.0, + "content": "graphs have two variants. In a static exponential graph, each node communicates to", + "type": "text" + }, + { + "bbox": [ + 464, + 460, + 503, + 472 + ], + "score": 0.92, + "content": "\\lceil \\log _ { 2 } ( n ) \\rceil", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "neighbors (see Sec. 3 and Fig. 2). In one-peer exponential graph, however, each node cycles through", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "all its neighbors, communicating, only, to a single neighbor per iteration (see Sec. 4 and Fig. 2). This", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "paper will first clarify the connectivity and averaging effectiveness of these exponential graphs, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "then apply them to decentralized momentum SGD to obtain the state-of-the-art balance between", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "per-iteration communication and transient iteration complexity among all commonly-used topologies.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 524, + 312, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 312, + 538 + ], + "score": 1.0, + "content": "Our main results (as well as our contributions) are:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 437, + 345, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 449, + 505, + 537 + ], + "lines": [], + "index": 38.5, + "bbox_fs": [ + 105, + 448, + 506, + 538 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 117, + 541, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 116, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "• We prove that the spectral gap, which is used to measure the connectivity of the graph (see the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 125, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 125, + 551, + 412, + 565 + ], + "score": 1.0, + "content": "definition in Sec. 2), of the static exponential graph is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 412, + 552, + 471, + 564 + ], + "score": 0.92, + "content": "O ( 1 / \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 551, + 505, + 565 + ], + "score": 1.0, + "content": ". Before", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 126, + 563, + 441, + 575 + ], + "spans": [ + { + "bbox": [ + 126, + 563, + 371, + 575 + ], + "score": 1.0, + "content": "us, many literatures (e.g. [27]) claimed its upper bound to be", + "type": "text" + }, + { + "bbox": [ + 371, + 563, + 393, + 575 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 563, + 441, + 575 + ], + "score": 1.0, + "content": "incorrectly.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 122, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 122, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Since one-peer exponential graphs are time-varying, it is difficult to derive their spectral gaps.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 125, + 585, + 254, + 599 + ], + "score": 1.0, + "content": "However, we establish that any", + "type": "text" + }, + { + "bbox": [ + 254, + 586, + 286, + 598 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "consecutive sequence of one-peer exponential graphs", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 124, + 596, + 373, + 610 + ], + "spans": [ + { + "bbox": [ + 124, + 596, + 300, + 610 + ], + "score": 1.0, + "content": "can together achieve exact averaging when", + "type": "text" + }, + { + "bbox": [ + 300, + 599, + 308, + 606 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 596, + 373, + 610 + ], + "score": 1.0, + "content": "is a power of 2.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 117, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 117, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "• With the above results, we establish that one-peer exponential graph, though much sparser", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 126, + 620, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 126, + 620, + 506, + 632 + ], + "score": 1.0, + "content": "than its static counterpart, surprisingly endows decentralized momentum SGD with the same", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 125, + 631, + 447, + 642 + ], + "spans": [ + { + "bbox": [ + 125, + 631, + 447, + 642 + ], + "score": 1.0, + "content": "convergence rate as static exponential graph in terms of the best-known bounds.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 117, + 642, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 117, + 643, + 297, + 656 + ], + "score": 1.0, + "content": "• We derive that exponential graphs achieve", + "type": "text" + }, + { + "bbox": [ + 298, + 642, + 322, + 656 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( 1 ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 643, + 457, + 656 + ], + "score": 1.0, + "content": "per-iteration communication and", + "type": "text" + }, + { + "bbox": [ + 457, + 642, + 484, + 656 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 643, + 507, + 656 + ], + "score": 1.0, + "content": "tran-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 125, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 125, + 654, + 507, + 668 + ], + "score": 1.0, + "content": "sient iterations, both of which are nearly the best among other known topologies, see Table 1.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 125, + 664, + 499, + 679 + ], + "spans": [ + { + "bbox": [ + 125, + 664, + 499, + 679 + ], + "score": 1.0, + "content": "The one-peer exponential graph is particularly recommended for decentralized deep training.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 116, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "• We conduct extensive industry-level experiments across different tasks and models with various", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 125, + 688, + 457, + 701 + ], + "spans": [ + { + "bbox": [ + 125, + 688, + 457, + 701 + ], + "score": 1.0, + "content": "decentralized methods, graphs, and network size to validate our theoretical results.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 49.5, + "bbox_fs": [ + 116, + 540, + 507, + 701 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 137, + 72, + 463, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 72, + 463, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 72, + 463, + 164 + ], + "spans": [ + { + "bbox": [ + 137, + 72, + 463, + 164 + ], + "score": 0.959, + "type": "image", + "image_path": "fafab3400e8cc6a5cffd06e12d66ab336a93712d1652392d964fe2eda168bd6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 72, + 463, + 102.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 102.66666666666667, + 463, + 133.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 133.33333333333334, + 463, + 164.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 171, + 426, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 182, + 169, + 425, + 183 + ], + "spans": [ + { + "bbox": [ + 182, + 169, + 425, + 183 + ], + "score": 1.0, + "content": "Figure 2: Illustration of the static and one-peer exponential graph.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 426, + 198 + ], + "lines": [ + { + "bbox": [ + 104, + 183, + 427, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 427, + 199 + ], + "score": 1.0, + "content": "2 Revisit Decentralized Momentum SGD and Related Works", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 105, + 202, + 473, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 470, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 470, + 214 + ], + "score": 1.0, + "content": "This section reviews basic concepts and existing results on decentralized momentum SGD.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 488, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 489, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 185, + 233 + ], + "score": 1.0, + "content": "Problem. Suppose", + "type": "text" + }, + { + "bbox": [ + 185, + 221, + 192, + 229 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 217, + 489, + 233 + ], + "score": 1.0, + "content": "computing nodes cooperate to solve the distributed optimization problem:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 233, + 433, + 266 + ], + "lines": [ + { + "bbox": [ + 178, + 233, + 433, + 266 + ], + "spans": [ + { + "bbox": [ + 178, + 233, + 433, + 266 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } f ( x ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( x ) \\quad { \\mathrm { w h e r e } } \\quad f _ { i } ( x ) : = \\mathbb { E } _ { \\xi _ { i } \\sim D _ { i } } F ( x ; \\xi _ { i } ) .", + "type": "interline_equation", + "image_path": "630609129ed9a56f57cb63b53cbbb51164ac484f43df9a1902e534546e63f111.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 178, + 233, + 433, + 244.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 178, + 244.0, + 433, + 255.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 178, + 255.0, + 433, + 266.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 268, + 505, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 143, + 280 + ], + "score": 1.0, + "content": "Function", + "type": "text" + }, + { + "bbox": [ + 144, + 268, + 166, + 280 + ], + "score": 0.92, + "content": "f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 267, + 226, + 280 + ], + "score": 1.0, + "content": "is local to node", + "type": "text" + }, + { + "bbox": [ + 227, + 269, + 231, + 279 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 267, + 315, + 280 + ], + "score": 1.0, + "content": ", and random variable", + "type": "text" + }, + { + "bbox": [ + 315, + 268, + 324, + 280 + ], + "score": 0.87, + "content": "\\xi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "denotes the local data that follows distribution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 280, + 396, + 291 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 119, + 290 + ], + "score": 0.85, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 280, + 267, + 291 + ], + "score": 1.0, + "content": ". We do not assume each distribution", + "type": "text" + }, + { + "bbox": [ + 268, + 280, + 280, + 290 + ], + "score": 0.89, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 280, + 396, + 291 + ], + "score": 1.0, + "content": "is the same across all nodes.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "Network topology and weights. Decentralized methods are based on partial averaging within", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "neighborhood that is defined by the network topology (see the figure 2 as an example of six nodes).", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "We assume all computing nodes are connected by a (directed or undirected) network topology. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 329, + 448, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 133, + 341 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 133, + 330, + 148, + 341 + ], + "score": 0.87, + "content": "w _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 329, + 355, + 341 + ], + "score": 1.0, + "content": ", the weight to scale information flowing from node", + "type": "text" + }, + { + "bbox": [ + 355, + 329, + 361, + 340 + ], + "score": 0.85, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 329, + 394, + 341 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 394, + 329, + 399, + 339 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 329, + 448, + 341 + ], + "score": 1.0, + "content": ", as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 343, + 302, + 371 + ], + "lines": [ + { + "bbox": [ + 205, + 343, + 302, + 371 + ], + "spans": [ + { + "bbox": [ + 205, + 343, + 302, + 371 + ], + "score": 0.36, + "content": "w _ { i j } \\left\\{ { \\begin{array} { l l } { > 0 } & { { \\mathrm { ~ i f ~ n o d e ~ } } j { \\mathrm { ~ i s } } } \\\\ { = 0 } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "5856669a5257e5ae810959565574d8c75c0e37325f3bf06f0fddd920d5897342.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 343, + 302, + 357.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 205, + 357.0, + 302, + 371.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 185, + 386 + ], + "score": 0.91, + "content": "\\mathcal { N } _ { i } : = \\{ j | w _ { i j } > 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 373, + 351, + 387 + ], + "score": 1.0, + "content": "is defined as the set of neighbors of node", + "type": "text" + }, + { + "bbox": [ + 351, + 375, + 356, + 384 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 373, + 459, + 387 + ], + "score": 1.0, + "content": "which also includes node", + "type": "text" + }, + { + "bbox": [ + 460, + 375, + 465, + 384 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "itself and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 382, + 508, + 401 + ], + "spans": [ + { + "bbox": [ + 102, + 382, + 181, + 401 + ], + "score": 1.0, + "content": "the weight matrix", + "type": "text" + }, + { + "bbox": [ + 181, + 385, + 286, + 399 + ], + "score": 0.93, + "content": "W : = [ w _ { i j } ] _ { i , j = 1 } ^ { n } \\in \\mathbb { R } ^ { n \\times n } .", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 382, + 508, + 401 + ], + "score": 1.0, + "content": "are denoted as a matrix that stacks the weights of all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 182, + 410 + ], + "score": 1.0, + "content": "nodes. This matrix", + "type": "text" + }, + { + "bbox": [ + 183, + 397, + 195, + 406 + ], + "score": 0.6, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "characterizes the sparsity and connectivity of the underlying network topology.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 298, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 299, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 252, + 425 + ], + "score": 1.0, + "content": "Decentralized momentum SGD", + "type": "text" + }, + { + "bbox": [ + 252, + 412, + 294, + 424 + ], + "score": 0.28, + "content": "\\mathbf { ( D m S G D ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 411, + 299, + 425 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 423, + 298, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 298, + 435 + ], + "score": 1.0, + "content": "There are many variants of decentralized mo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 298, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 298, + 446 + ], + "score": 1.0, + "content": "mentum SGD [3, 20, 32, 67]. This paper will", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 299, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 299, + 457 + ], + "score": 1.0, + "content": "focus on the one proposed by [64] (listed in Al-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 299, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 299, + 468 + ], + "score": 1.0, + "content": "gorithm 1), which imposes an additional partial-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 298, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 298, + 478 + ], + "score": 1.0, + "content": "averaging over the momentum to achieve further", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 298, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 298, + 490 + ], + "score": 1.0, + "content": "speed up. The topology is allowed to change", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 486, + 298, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 196, + 502 + ], + "score": 1.0, + "content": "with iterations. When", + "type": "text" + }, + { + "bbox": [ + 197, + 488, + 237, + 499 + ], + "score": 0.92, + "content": "{ \\check { W } } ^ { k } \\equiv W", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 486, + 298, + 502 + ], + "score": 1.0, + "content": ", topology and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 500, + 238, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 238, + 511 + ], + "score": 1.0, + "content": "weight matrix will remain static.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 297, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 297, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 297, + 528 + ], + "score": 1.0, + "content": "Assumptions. We introduce several standard", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 269, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 269, + 539 + ], + "score": 1.0, + "content": "assumptions to facilitate future analysis:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 305, + 417, + 395, + 428 + ], + "lines": [ + { + "bbox": [ + 303, + 415, + 396, + 431 + ], + "spans": [ + { + "bbox": [ + 303, + 415, + 396, + 431 + ], + "score": 1.0, + "content": "Algorithm 1 DmSGD", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 312, + 430, + 495, + 525 + ], + "lines": [ + { + "bbox": [ + 314, + 429, + 479, + 451 + ], + "spans": [ + { + "bbox": [ + 314, + 431, + 354, + 448 + ], + "score": 1.0, + "content": "Initialize", + "type": "text" + }, + { + "bbox": [ + 354, + 436, + 362, + 446 + ], + "score": 0.55, + "content": "\\gamma _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 431, + 365, + 448 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 368, + 429, + 416, + 451 + ], + "score": 1.0, + "content": "x(0)i ; let m(0i", + "type": "text" + }, + { + "bbox": [ + 399, + 431, + 479, + 446 + ], + "score": 0.85, + "content": "m _ { i } ^ { ( 0 ) } = 0 , \\beta \\in ( 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 314, + 447, + 486, + 460 + ], + "spans": [ + { + "bbox": [ + 314, + 447, + 332, + 460 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 332, + 447, + 417, + 459 + ], + "score": 0.91, + "content": "k = 0 , 1 , 2 , . . . , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 447, + 467, + 460 + ], + "score": 1.0, + "content": ", every node", + "type": "text" + }, + { + "bbox": [ + 468, + 449, + 472, + 457 + ], + "score": 0.65, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 447, + 486, + 460 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 326, + 461, + 445, + 473 + ], + "spans": [ + { + "bbox": [ + 326, + 461, + 417, + 473 + ], + "score": 1.0, + "content": "Sample weight matrix", + "type": "text" + }, + { + "bbox": [ + 417, + 461, + 440, + 472 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 461, + 445, + 473 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 326, + 470, + 492, + 495 + ], + "spans": [ + { + "bbox": [ + 326, + 474, + 393, + 491 + ], + "score": 1.0, + "content": "Update gradient", + "type": "text" + }, + { + "bbox": [ + 394, + 474, + 485, + 489 + ], + "score": 0.93, + "content": "g _ { i } ^ { ( k ) } = \\nabla F ( x _ { i } ^ { ( k ) } ; \\xi _ { i } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 470, + 492, + 495 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 324, + 484, + 490, + 511 + ], + "spans": [ + { + "bbox": [ + 324, + 490, + 483, + 507 + ], + "score": 0.85, + "content": "\\begin{array} { r } { m _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( \\beta m _ { j } ^ { ( k ) } + g _ { j } ^ { ( k ) } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 484, + 490, + 511 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 324, + 501, + 488, + 527 + ], + "spans": [ + { + "bbox": [ + 324, + 507, + 480, + 524 + ], + "score": 0.56, + "content": "\\begin{array} { r } { x _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( x _ { j } ^ { ( k ) } - \\gamma m _ { j } ^ { ( k ) } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 501, + 488, + 527 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 542, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 503, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 210, + 558 + ], + "score": 1.0, + "content": "A.1 [SMOOTHNESS] Each", + "type": "text" + }, + { + "bbox": [ + 211, + 543, + 233, + 555 + ], + "score": 0.92, + "content": "f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 541, + 243, + 558 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 243, + 544, + 251, + 553 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 541, + 303, + 558 + ], + "score": 1.0, + "content": "-smooth, i.e.,", + "type": "text" + }, + { + "bbox": [ + 303, + 543, + 432, + 556 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( x ) - \\nabla f _ { i } ( y ) \\| \\leq L \\| x - y \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 541, + 462, + 558 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 462, + 542, + 503, + 555 + ], + "score": 0.82, + "content": "x , y \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 105, + 560, + 503, + 586 + ], + "lines": [ + { + "bbox": [ + 101, + 557, + 509, + 579 + ], + "spans": [ + { + "bbox": [ + 101, + 557, + 290, + 579 + ], + "score": 1.0, + "content": "A.2 [GRADIENT NOISE] The random sample", + "type": "text" + }, + { + "bbox": [ + 290, + 560, + 307, + 574 + ], + "score": 0.92, + "content": "\\xi _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 557, + 455, + 579 + ], + "score": 1.0, + "content": "is independent of each other for any", + "type": "text" + }, + { + "bbox": [ + 455, + 563, + 462, + 573 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 557, + 480, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 564, + 485, + 573 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 557, + 509, + 579 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 407, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 157, + 586 + ], + "score": 1.0, + "content": "also assume", + "type": "text" + }, + { + "bbox": [ + 157, + 573, + 255, + 586 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\nabla F ( x ; \\xi _ { i } ) ] = \\nabla f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 573, + 273, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 573, + 403, + 586 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\hat { \\mathbb { E } } \\| \\nabla \\dot { F } ( x ; \\xi _ { i } ) - \\mathbf { \\bar { \\nabla } } f _ { i } ( x ) \\| ^ { 2 } \\leq \\sigma ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 573, + 407, + 586 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 103, + 590, + 488, + 605 + ], + "lines": [ + { + "bbox": [ + 103, + 587, + 486, + 606 + ], + "spans": [ + { + "bbox": [ + 103, + 587, + 281, + 606 + ], + "score": 1.0, + "content": "A.3 [DATA HETEROGENEITY] It holds that", + "type": "text" + }, + { + "bbox": [ + 281, + 590, + 423, + 604 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\| \\nabla f _ { i } ( x ) - \\nabla f ( x ) \\| ^ { 2 } \\leq b ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 587, + 455, + 606 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 455, + 590, + 486, + 601 + ], + "score": 0.78, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 293, + 622 + ], + "score": 1.0, + "content": "A.4 [WEIGHT MATRIX] The weight matrix", + "type": "text" + }, + { + "bbox": [ + 294, + 608, + 316, + 620 + ], + "score": 0.89, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 608, + 430, + 622 + ], + "score": 1.0, + "content": "is doubly-stochastic, i.e.", + "type": "text" + }, + { + "bbox": [ + 430, + 609, + 485, + 620 + ], + "score": 0.94, + "content": "W ^ { ( k ) } \\mathbb { 1 } ~ = ~ \\mathbb { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 618, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 107, + 621, + 171, + 632 + ], + "score": 0.91, + "content": "\\mathbb { 1 } ^ { T } W ^ { ( k ) } = \\mathbb { 1 } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 618, + 190, + 637 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 190, + 621, + 240, + 632 + ], + "score": 0.91, + "content": "W ^ { ( k ) } \\equiv W", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 618, + 294, + 637 + ], + "score": 1.0, + "content": ", we assume", + "type": "text" + }, + { + "bbox": [ + 295, + 621, + 472, + 635 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\rho ( W ) : = \\operatorname* { m a x } _ { \\lambda _ { i } ( W ) \\neq 1 } \\{ | \\lambda _ { i } ( W ) | \\} \\in ( 0 , 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 618, + 506, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 302, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 135, + 647 + ], + "score": 0.91, + "content": "\\lambda _ { i } ( W )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 634, + 160, + 646 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 160, + 635, + 173, + 645 + ], + "score": 0.26, + "content": "i -", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 634, + 281, + 646 + ], + "score": 1.0, + "content": "th eigenvalue of the matrix", + "type": "text" + }, + { + "bbox": [ + 281, + 635, + 293, + 645 + ], + "score": 0.74, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 634, + 302, + 646 + ], + "score": 1.0, + "content": ". 3", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 160, + 664 + ], + "score": 1.0, + "content": "The quantity", + "type": "text" + }, + { + "bbox": [ + 160, + 651, + 183, + 662 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 650, + 449, + 664 + ], + "score": 1.0, + "content": ", which is also referred to as the spectral gap of the weight matrix", + "type": "text" + }, + { + "bbox": [ + 449, + 651, + 461, + 661 + ], + "score": 0.75, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 650, + 505, + 664 + ], + "score": 1.0, + "content": ", measures", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "how well the topology is connected [53]. In the large and sparse topology which is most valuable to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 673, + 299, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 251, + 685 + ], + "score": 1.0, + "content": "deep training, it typically holds that", + "type": "text" + }, + { + "bbox": [ + 251, + 673, + 295, + 685 + ], + "score": 0.91, + "content": "1 - \\rho \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 673, + 299, + 685 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 691, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 117, + 689, + 504, + 705 + ], + "spans": [ + { + "bbox": [ + 117, + 689, + 283, + 705 + ], + "score": 1.0, + "content": "3When there is no ambiguity, we simply use", + "type": "text" + }, + { + "bbox": [ + 284, + 694, + 290, + 702 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 689, + 329, + 705 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 329, + 692, + 352, + 703 + ], + "score": 0.9, + "content": "\\rho ( W )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 689, + 497, + 705 + ], + "score": 1.0, + "content": ". Throughout the paper we do NOT use", + "type": "text" + }, + { + "bbox": [ + 498, + 694, + 504, + 702 + ], + "score": 0.79, + "content": "\\rho", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "as spectral radius. Instead, it is the second largest eigenvalue in magnitude. Note we cannot directly sort the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 712, + 453, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 171, + 723 + ], + "score": 1.0, + "content": "eigenvalues since", + "type": "text" + }, + { + "bbox": [ + 171, + 712, + 182, + 721 + ], + "score": 0.66, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 712, + 453, + 723 + ], + "score": 1.0, + "content": "is not necessarily symmetric and the eigenvalue can be a complex number.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 137, + 72, + 463, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 72, + 463, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 72, + 463, + 164 + ], + "spans": [ + { + "bbox": [ + 137, + 72, + 463, + 164 + ], + "score": 0.959, + "type": "image", + "image_path": "fafab3400e8cc6a5cffd06e12d66ab336a93712d1652392d964fe2eda168bd6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 72, + 463, + 102.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 102.66666666666667, + 463, + 133.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 133.33333333333334, + 463, + 164.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 171, + 426, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 182, + 169, + 425, + 183 + ], + "spans": [ + { + "bbox": [ + 182, + 169, + 425, + 183 + ], + "score": 1.0, + "content": "Figure 2: Illustration of the static and one-peer exponential graph.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 426, + 198 + ], + "lines": [ + { + "bbox": [ + 104, + 183, + 427, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 427, + 199 + ], + "score": 1.0, + "content": "2 Revisit Decentralized Momentum SGD and Related Works", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 183, + 427, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 202, + 473, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 470, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 470, + 214 + ], + "score": 1.0, + "content": "This section reviews basic concepts and existing results on decentralized momentum SGD.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 202, + 470, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 488, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 489, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 185, + 233 + ], + "score": 1.0, + "content": "Problem. Suppose", + "type": "text" + }, + { + "bbox": [ + 185, + 221, + 192, + 229 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 217, + 489, + 233 + ], + "score": 1.0, + "content": "computing nodes cooperate to solve the distributed optimization problem:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 217, + 489, + 233 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 233, + 433, + 266 + ], + "lines": [ + { + "bbox": [ + 178, + 233, + 433, + 266 + ], + "spans": [ + { + "bbox": [ + 178, + 233, + 433, + 266 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } f ( x ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( x ) \\quad { \\mathrm { w h e r e } } \\quad f _ { i } ( x ) : = \\mathbb { E } _ { \\xi _ { i } \\sim D _ { i } } F ( x ; \\xi _ { i } ) .", + "type": "interline_equation", + "image_path": "630609129ed9a56f57cb63b53cbbb51164ac484f43df9a1902e534546e63f111.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 178, + 233, + 433, + 244.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 178, + 244.0, + 433, + 255.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 178, + 255.0, + 433, + 266.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 268, + 505, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 143, + 280 + ], + "score": 1.0, + "content": "Function", + "type": "text" + }, + { + "bbox": [ + 144, + 268, + 166, + 280 + ], + "score": 0.92, + "content": "f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 267, + 226, + 280 + ], + "score": 1.0, + "content": "is local to node", + "type": "text" + }, + { + "bbox": [ + 227, + 269, + 231, + 279 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 267, + 315, + 280 + ], + "score": 1.0, + "content": ", and random variable", + "type": "text" + }, + { + "bbox": [ + 315, + 268, + 324, + 280 + ], + "score": 0.87, + "content": "\\xi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "denotes the local data that follows distribution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 280, + 396, + 291 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 119, + 290 + ], + "score": 0.85, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 280, + 267, + 291 + ], + "score": 1.0, + "content": ". We do not assume each distribution", + "type": "text" + }, + { + "bbox": [ + 268, + 280, + 280, + 290 + ], + "score": 0.89, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 280, + 396, + 291 + ], + "score": 1.0, + "content": "is the same across all nodes.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 267, + 505, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "Network topology and weights. Decentralized methods are based on partial averaging within", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "neighborhood that is defined by the network topology (see the figure 2 as an example of six nodes).", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "We assume all computing nodes are connected by a (directed or undirected) network topology. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 329, + 448, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 133, + 341 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 133, + 330, + 148, + 341 + ], + "score": 0.87, + "content": "w _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 329, + 355, + 341 + ], + "score": 1.0, + "content": ", the weight to scale information flowing from node", + "type": "text" + }, + { + "bbox": [ + 355, + 329, + 361, + 340 + ], + "score": 0.85, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 329, + 394, + 341 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 394, + 329, + 399, + 339 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 329, + 448, + 341 + ], + "score": 1.0, + "content": ", as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 295, + 506, + 341 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 343, + 302, + 371 + ], + "lines": [ + { + "bbox": [ + 205, + 343, + 302, + 371 + ], + "spans": [ + { + "bbox": [ + 205, + 343, + 302, + 371 + ], + "score": 0.36, + "content": "w _ { i j } \\left\\{ { \\begin{array} { l l } { > 0 } & { { \\mathrm { ~ i f ~ n o d e ~ } } j { \\mathrm { ~ i s } } } \\\\ { = 0 } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "5856669a5257e5ae810959565574d8c75c0e37325f3bf06f0fddd920d5897342.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 343, + 302, + 357.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 205, + 357.0, + 302, + 371.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 185, + 386 + ], + "score": 0.91, + "content": "\\mathcal { N } _ { i } : = \\{ j | w _ { i j } > 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 373, + 351, + 387 + ], + "score": 1.0, + "content": "is defined as the set of neighbors of node", + "type": "text" + }, + { + "bbox": [ + 351, + 375, + 356, + 384 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 373, + 459, + 387 + ], + "score": 1.0, + "content": "which also includes node", + "type": "text" + }, + { + "bbox": [ + 460, + 375, + 465, + 384 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "itself and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 382, + 508, + 401 + ], + "spans": [ + { + "bbox": [ + 102, + 382, + 181, + 401 + ], + "score": 1.0, + "content": "the weight matrix", + "type": "text" + }, + { + "bbox": [ + 181, + 385, + 286, + 399 + ], + "score": 0.93, + "content": "W : = [ w _ { i j } ] _ { i , j = 1 } ^ { n } \\in \\mathbb { R } ^ { n \\times n } .", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 382, + 508, + 401 + ], + "score": 1.0, + "content": "are denoted as a matrix that stacks the weights of all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 182, + 410 + ], + "score": 1.0, + "content": "nodes. This matrix", + "type": "text" + }, + { + "bbox": [ + 183, + 397, + 195, + 406 + ], + "score": 0.6, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "characterizes the sparsity and connectivity of the underlying network topology.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 102, + 373, + 508, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 298, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 299, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 252, + 425 + ], + "score": 1.0, + "content": "Decentralized momentum SGD", + "type": "text" + }, + { + "bbox": [ + 252, + 412, + 294, + 424 + ], + "score": 0.28, + "content": "\\mathbf { ( D m S G D ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 411, + 299, + 425 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 423, + 298, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 298, + 435 + ], + "score": 1.0, + "content": "There are many variants of decentralized mo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 298, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 298, + 446 + ], + "score": 1.0, + "content": "mentum SGD [3, 20, 32, 67]. This paper will", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 299, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 299, + 457 + ], + "score": 1.0, + "content": "focus on the one proposed by [64] (listed in Al-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 299, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 299, + 468 + ], + "score": 1.0, + "content": "gorithm 1), which imposes an additional partial-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 298, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 298, + 478 + ], + "score": 1.0, + "content": "averaging over the momentum to achieve further", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 298, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 298, + 490 + ], + "score": 1.0, + "content": "speed up. The topology is allowed to change", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 486, + 298, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 196, + 502 + ], + "score": 1.0, + "content": "with iterations. When", + "type": "text" + }, + { + "bbox": [ + 197, + 488, + 237, + 499 + ], + "score": 0.92, + "content": "{ \\check { W } } ^ { k } \\equiv W", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 486, + 298, + 502 + ], + "score": 1.0, + "content": ", topology and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 500, + 238, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 238, + 511 + ], + "score": 1.0, + "content": "weight matrix will remain static.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 411, + 299, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 297, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 297, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 297, + 528 + ], + "score": 1.0, + "content": "Assumptions. We introduce several standard", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 269, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 269, + 539 + ], + "score": 1.0, + "content": "assumptions to facilitate future analysis:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 516, + 297, + 539 + ] + }, + { + "type": "title", + "bbox": [ + 305, + 417, + 395, + 428 + ], + "lines": [ + { + "bbox": [ + 303, + 415, + 396, + 431 + ], + "spans": [ + { + "bbox": [ + 303, + 415, + 396, + 431 + ], + "score": 1.0, + "content": "Algorithm 1 DmSGD", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 312, + 430, + 495, + 525 + ], + "lines": [ + { + "bbox": [ + 314, + 429, + 479, + 451 + ], + "spans": [ + { + "bbox": [ + 314, + 431, + 354, + 448 + ], + "score": 1.0, + "content": "Initialize", + "type": "text" + }, + { + "bbox": [ + 354, + 436, + 362, + 446 + ], + "score": 0.55, + "content": "\\gamma _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 431, + 365, + 448 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 368, + 429, + 416, + 451 + ], + "score": 1.0, + "content": "x(0)i ; let m(0i", + "type": "text" + }, + { + "bbox": [ + 399, + 431, + 479, + 446 + ], + "score": 0.85, + "content": "m _ { i } ^ { ( 0 ) } = 0 , \\beta \\in ( 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 314, + 447, + 486, + 460 + ], + "spans": [ + { + "bbox": [ + 314, + 447, + 332, + 460 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 332, + 447, + 417, + 459 + ], + "score": 0.91, + "content": "k = 0 , 1 , 2 , . . . , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 447, + 467, + 460 + ], + "score": 1.0, + "content": ", every node", + "type": "text" + }, + { + "bbox": [ + 468, + 449, + 472, + 457 + ], + "score": 0.65, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 447, + 486, + 460 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 326, + 461, + 445, + 473 + ], + "spans": [ + { + "bbox": [ + 326, + 461, + 417, + 473 + ], + "score": 1.0, + "content": "Sample weight matrix", + "type": "text" + }, + { + "bbox": [ + 417, + 461, + 440, + 472 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 461, + 445, + 473 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 326, + 470, + 492, + 495 + ], + "spans": [ + { + "bbox": [ + 326, + 474, + 393, + 491 + ], + "score": 1.0, + "content": "Update gradient", + "type": "text" + }, + { + "bbox": [ + 394, + 474, + 485, + 489 + ], + "score": 0.93, + "content": "g _ { i } ^ { ( k ) } = \\nabla F ( x _ { i } ^ { ( k ) } ; \\xi _ { i } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 470, + 492, + 495 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 324, + 484, + 490, + 511 + ], + "spans": [ + { + "bbox": [ + 324, + 490, + 483, + 507 + ], + "score": 0.85, + "content": "\\begin{array} { r } { m _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( \\beta m _ { j } ^ { ( k ) } + g _ { j } ^ { ( k ) } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 484, + 490, + 511 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 324, + 501, + 488, + 527 + ], + "spans": [ + { + "bbox": [ + 324, + 507, + 480, + 524 + ], + "score": 0.56, + "content": "\\begin{array} { r } { x _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( x _ { j } ^ { ( k ) } - \\gamma m _ { j } ^ { ( k ) } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 501, + 488, + 527 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 314, + 429, + 492, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 542, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 503, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 210, + 558 + ], + "score": 1.0, + "content": "A.1 [SMOOTHNESS] Each", + "type": "text" + }, + { + "bbox": [ + 211, + 543, + 233, + 555 + ], + "score": 0.92, + "content": "f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 541, + 243, + 558 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 243, + 544, + 251, + 553 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 541, + 303, + 558 + ], + "score": 1.0, + "content": "-smooth, i.e.,", + "type": "text" + }, + { + "bbox": [ + 303, + 543, + 432, + 556 + ], + "score": 0.9, + "content": "\\| \\nabla f _ { i } ( x ) - \\nabla f _ { i } ( y ) \\| \\leq L \\| x - y \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 541, + 462, + 558 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 462, + 542, + 503, + 555 + ], + "score": 0.82, + "content": "x , y \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 541, + 503, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 560, + 503, + 586 + ], + "lines": [ + { + "bbox": [ + 101, + 557, + 509, + 579 + ], + "spans": [ + { + "bbox": [ + 101, + 557, + 290, + 579 + ], + "score": 1.0, + "content": "A.2 [GRADIENT NOISE] The random sample", + "type": "text" + }, + { + "bbox": [ + 290, + 560, + 307, + 574 + ], + "score": 0.92, + "content": "\\xi _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 557, + 455, + 579 + ], + "score": 1.0, + "content": "is independent of each other for any", + "type": "text" + }, + { + "bbox": [ + 455, + 563, + 462, + 573 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 557, + 480, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 564, + 485, + 573 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 557, + 509, + 579 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 407, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 157, + 586 + ], + "score": 1.0, + "content": "also assume", + "type": "text" + }, + { + "bbox": [ + 157, + 573, + 255, + 586 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\nabla F ( x ; \\xi _ { i } ) ] = \\nabla f _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 573, + 273, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 573, + 403, + 586 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\hat { \\mathbb { E } } \\| \\nabla \\dot { F } ( x ; \\xi _ { i } ) - \\mathbf { \\bar { \\nabla } } f _ { i } ( x ) \\| ^ { 2 } \\leq \\sigma ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 573, + 407, + 586 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 101, + 557, + 509, + 586 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 590, + 488, + 605 + ], + "lines": [ + { + "bbox": [ + 103, + 587, + 486, + 606 + ], + "spans": [ + { + "bbox": [ + 103, + 587, + 281, + 606 + ], + "score": 1.0, + "content": "A.3 [DATA HETEROGENEITY] It holds that", + "type": "text" + }, + { + "bbox": [ + 281, + 590, + 423, + 604 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\| \\nabla f _ { i } ( x ) - \\nabla f ( x ) \\| ^ { 2 } \\leq b ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 587, + 455, + 606 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 455, + 590, + 486, + 601 + ], + "score": 0.78, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 103, + 587, + 486, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 293, + 622 + ], + "score": 1.0, + "content": "A.4 [WEIGHT MATRIX] The weight matrix", + "type": "text" + }, + { + "bbox": [ + 294, + 608, + 316, + 620 + ], + "score": 0.89, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 608, + 430, + 622 + ], + "score": 1.0, + "content": "is doubly-stochastic, i.e.", + "type": "text" + }, + { + "bbox": [ + 430, + 609, + 485, + 620 + ], + "score": 0.94, + "content": "W ^ { ( k ) } \\mathbb { 1 } ~ = ~ \\mathbb { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 618, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 107, + 621, + 171, + 632 + ], + "score": 0.91, + "content": "\\mathbb { 1 } ^ { T } W ^ { ( k ) } = \\mathbb { 1 } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 618, + 190, + 637 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 190, + 621, + 240, + 632 + ], + "score": 0.91, + "content": "W ^ { ( k ) } \\equiv W", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 618, + 294, + 637 + ], + "score": 1.0, + "content": ", we assume", + "type": "text" + }, + { + "bbox": [ + 295, + 621, + 472, + 635 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\rho ( W ) : = \\operatorname* { m a x } _ { \\lambda _ { i } ( W ) \\neq 1 } \\{ | \\lambda _ { i } ( W ) | \\} \\in ( 0 , 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 618, + 506, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 302, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 135, + 647 + ], + "score": 0.91, + "content": "\\lambda _ { i } ( W )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 634, + 160, + 646 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 160, + 635, + 173, + 645 + ], + "score": 0.26, + "content": "i -", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 634, + 281, + 646 + ], + "score": 1.0, + "content": "th eigenvalue of the matrix", + "type": "text" + }, + { + "bbox": [ + 281, + 635, + 293, + 645 + ], + "score": 0.74, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 634, + 302, + 646 + ], + "score": 1.0, + "content": ". 3", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 608, + 506, + 647 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 160, + 664 + ], + "score": 1.0, + "content": "The quantity", + "type": "text" + }, + { + "bbox": [ + 160, + 651, + 183, + 662 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 650, + 449, + 664 + ], + "score": 1.0, + "content": ", which is also referred to as the spectral gap of the weight matrix", + "type": "text" + }, + { + "bbox": [ + 449, + 651, + 461, + 661 + ], + "score": 0.75, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 650, + 505, + 664 + ], + "score": 1.0, + "content": ", measures", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "how well the topology is connected [53]. In the large and sparse topology which is most valuable to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 673, + 299, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 251, + 685 + ], + "score": 1.0, + "content": "deep training, it typically holds that", + "type": "text" + }, + { + "bbox": [ + 251, + 673, + 295, + 685 + ], + "score": 0.91, + "content": "1 - \\rho \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 673, + 299, + 685 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 650, + 505, + 685 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 506, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 394, + 86 + ], + "score": 1.0, + "content": "Communication overhead. According to [5], global averaging across", + "type": "text" + }, + { + "bbox": [ + 394, + 75, + 402, + 83 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 72, + 483, + 86 + ], + "score": 1.0, + "content": "nodes either incurs", + "type": "text" + }, + { + "bbox": [ + 483, + 74, + 505, + 84 + ], + "score": 0.89, + "content": "\\Omega ( n )", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 264, + 96 + ], + "score": 1.0, + "content": "bandwidth cost via Parameter-Server, or", + "type": "text" + }, + { + "bbox": [ + 265, + 84, + 286, + 96 + ], + "score": 0.91, + "content": "\\Omega ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 84, + 483, + 96 + ], + "score": 1.0, + "content": "latency via Ring-Allreduce. In either way, it takes", + "type": "text" + }, + { + "bbox": [ + 483, + 85, + 505, + 96 + ], + "score": 0.9, + "content": "\\Omega ( n )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 413, + 107 + ], + "score": 1.0, + "content": "per-iteration communication time, which is proportional to the network size", + "type": "text" + }, + { + "bbox": [ + 414, + 96, + 420, + 104 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 94, + 506, + 107 + ], + "score": 1.0, + "content": ". As to decentralized", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 413, + 118 + ], + "score": 1.0, + "content": "methods, we will similarly assume the per-iteration communication time to be", + "type": "text" + }, + { + "bbox": [ + 413, + 106, + 421, + 117 + ], + "score": 0.6, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 106, + 503, + 118 + ], + "score": 1.0, + "content": "(maximum degree).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "Convergence. Under Assumptions A.1–A.4, DmSGD with static topology will converge at [64, 25]:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 133, + 431, + 168 + ], + "lines": [ + { + "bbox": [ + 170, + 133, + 431, + 168 + ], + "spans": [ + { + "bbox": [ + 170, + 133, + 431, + 168 + ], + "score": 0.93, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { n T } } + \\frac { n \\sigma ^ { 2 } } { T ( 1 - \\rho ) } + \\frac { n b ^ { 2 } } { T ( 1 - \\rho ) ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "889b47e2e014abbc668e3d92f729cc53dcce44d66cee9db343102df5ee7ca76c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 133, + 431, + 144.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 170, + 144.66666666666666, + 431, + 156.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 156.33333333333331, + 431, + 167.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 173, + 504, + 199 + ], + "lines": [ + { + "bbox": [ + 102, + 168, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 102, + 168, + 145, + 196 + ], + "score": 1.0, + "content": "in which", + "type": "text" + }, + { + "bbox": [ + 145, + 173, + 229, + 190 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { x } ^ { ( k ) } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { i } ^ { ( k ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 168, + 507, + 196 + ], + "score": 1.0, + "content": ". It is worth noting that no analysis in literature, to our knowledge,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 395, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 395, + 201 + ], + "score": 1.0, + "content": "exists for DmSGD over time-varying topologies with non-convex costs.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 210, + 218 + ], + "score": 1.0, + "content": "Linear speedup. When", + "type": "text" + }, + { + "bbox": [ + 210, + 206, + 219, + 215 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 205, + 363, + 218 + ], + "score": 1.0, + "content": "is sufficiently large, the first term", + "type": "text" + }, + { + "bbox": [ + 364, + 204, + 397, + 217 + ], + "score": 0.91, + "content": "1 / \\sqrt { n T }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "dominates (3). This also", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 382, + 229 + ], + "score": 1.0, + "content": "applies to parallel SGD. Decentralized and parall SGDs all require", + "type": "text" + }, + { + "bbox": [ + 382, + 216, + 451, + 228 + ], + "score": 0.93, + "content": "T = \\Omega ( 1 / ( n \\epsilon ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "iterations to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 209, + 239 + ], + "score": 1.0, + "content": "reach a desired accuracy", + "type": "text" + }, + { + "bbox": [ + 210, + 230, + 215, + 237 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 227, + 360, + 239 + ], + "score": 1.0, + "content": ", which is inversely proportional to", + "type": "text" + }, + { + "bbox": [ + 360, + 230, + 367, + 237 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 227, + 505, + 239 + ], + "score": 1.0, + "content": ". Therefore, an algorithm is in its", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 491, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 200, + 251 + ], + "score": 1.0, + "content": "linear-speedup stage at", + "type": "text" + }, + { + "bbox": [ + 200, + 239, + 208, + 248 + ], + "score": 0.45, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 237, + 295, + 251 + ], + "score": 1.0, + "content": "th iteration if, for this", + "type": "text" + }, + { + "bbox": [ + 295, + 239, + 304, + 248 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 237, + 383, + 251 + ], + "score": 1.0, + "content": ", the term involving", + "type": "text" + }, + { + "bbox": [ + 383, + 238, + 398, + 248 + ], + "score": 0.85, + "content": "n T", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 237, + 491, + 251 + ], + "score": 1.0, + "content": "is dominating the rate.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 504, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 266 + ], + "score": 1.0, + "content": "Transient iterations. Transient iterations are referred to those iterations before an algorithm reaches", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 244, + 278 + ], + "score": 1.0, + "content": "linear-speedup stage, that is when", + "type": "text" + }, + { + "bbox": [ + 244, + 266, + 253, + 275 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 266, + 356, + 278 + ], + "score": 1.0, + "content": "is relatively small so non-", + "type": "text" + }, + { + "bbox": [ + 357, + 266, + 371, + 276 + ], + "score": 0.83, + "content": "\\mathbf { \\nabla } \\cdot n T", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "terms still dominate the rate (see", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 493, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 318, + 290 + ], + "score": 1.0, + "content": "illustration in Appendix C). To reach linear speedup,", + "type": "text" + }, + { + "bbox": [ + 319, + 277, + 327, + 286 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 276, + 493, + 290 + ], + "score": 1.0, + "content": "has to satisfy (derivation in Appendix C)", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 111, + 293, + 489, + 322 + ], + "lines": [ + { + "bbox": [ + 107, + 284, + 489, + 329 + ], + "spans": [ + { + "bbox": [ + 107, + 284, + 188, + 329 + ], + "score": 1.0, + "content": "Homogeneous dat", + "type": "text" + }, + { + "bbox": [ + 189, + 293, + 489, + 322 + ], + "score": 0.7, + "content": " \\mathrm { 1 : } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 2 } } } \\right) \\qquad { \\mathrm { H e t e r o g e n e o u s ~ d a t a : } } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 4 } } } \\right)", + "type": "inline_equation", + "image_path": "52c9e3543bdb97c169056c920c4d71601baa7cb14c8a805f4c76f39aa38df2fa.jpg" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 502, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 502, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 502, + 351 + ], + "score": 1.0, + "content": "which corresponds to the transient iteration complexity in the homo/hetero-geneous data scenarios.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 363, + 194, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 195, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 195, + 376 + ], + "score": 1.0, + "content": "2.1 Related Works", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "Decentralized deep training. Decentralized optimization originates from the control and signal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing community. The first decentralized algorithms on general optimization problems include", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 420 + ], + "score": 1.0, + "content": "decentralized gradient descent [45], diffusion [11, 51] and dual averaging [18]. In the deep learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "regime, decentralize SGD, which was established in [30] to achieve the same linear speedup as parallel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "SGD in convergence rate, has attracted a lot of attentions. Many efforts have been made to extend the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "algorithm to directed topologies [3, 42], time-varying topologies [25, 42], asynchronous settings [31],", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "and data-heterogeneous scenarios [57, 62, 32, 67]. Techniques such as quantization/compression", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "[2, 8, 26, 24, 58, 36], periodic updates [55, 25, 64], and lazy communication [37, 38, 13] were also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 470, + 419, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 419, + 483 + ], + "score": 1.0, + "content": "integrated into decentralized SGD to further reduce communiation overheads.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 506, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Topology influence. The influence of network topology on decentralized SGD was extensively", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "studied in [25, 51, 66, 45, 42, 27]. All these works indicate that a well-connected topology will", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "score": 1.0, + "content": "significantly accelerate decentralized SGD. Two directions have been explored to relieve the influence", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "of network topology. One line of research proposes new algorithms that are less sensitive to topologies.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "score": 1.0, + "content": "For example, [66, 23, 65, 57, 1] removed data heterogeneity with bias-correction techniques in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 556 + ], + "score": 1.0, + "content": "[68, 29, 62, 40, 69], and [14, 61, 7, 27] utilized periodic global averaging or multiple partial averaging", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 1.0, + "content": "steps. All these methods have improved topology dependence. The other line is to investigate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "topologies that enable communication-efficient decentralized optimization. [43, 15] examined various", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "topologies (such as ring, grid, torus, expander, etc.) on averaging effectiveness, which, however,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "are either communication-costly or averaging-ineffective compared to exponential graphs studied", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "in this paper. [41, 6, 9, 10] studied random graphs (such as Erdos-Renyi random graph and random", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "geometric graph) in which each edge is activated randomly. The randomness of the edge activation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "can cause a highly unbalanced degrees of each node in the graph, which may significantly affect the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 276, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 276, + 641 + ], + "score": 1.0, + "content": "efficiency in per-iteration communication.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "score": 1.0, + "content": "Algorithms with time-varying topologies. Many previous works have studied decentralized al-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "gorithms with time-varying topologies. [42] and [44] examined the convergence of decentralized", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "(deterministic) gradient descent and gradient tracking under convex scenarios. [17, 52] investigated", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "gradient tracking under non-convex scenarios, but it did not clarify the influence of the time-varying", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "graphs on convergence rate. In the stochastic scenario, [25] illustrates how decentralized SGD is", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "influenced by time-varying topologies in the non-convex scenario. However, its analysis cannot be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 711, + 412, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 412, + 722 + ], + "score": 1.0, + "content": "directly extended to the decentralized momentum SGD studied in this work.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 506, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 394, + 86 + ], + "score": 1.0, + "content": "Communication overhead. According to [5], global averaging across", + "type": "text" + }, + { + "bbox": [ + 394, + 75, + 402, + 83 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 72, + 483, + 86 + ], + "score": 1.0, + "content": "nodes either incurs", + "type": "text" + }, + { + "bbox": [ + 483, + 74, + 505, + 84 + ], + "score": 0.89, + "content": "\\Omega ( n )", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 264, + 96 + ], + "score": 1.0, + "content": "bandwidth cost via Parameter-Server, or", + "type": "text" + }, + { + "bbox": [ + 265, + 84, + 286, + 96 + ], + "score": 0.91, + "content": "\\Omega ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 84, + 483, + 96 + ], + "score": 1.0, + "content": "latency via Ring-Allreduce. In either way, it takes", + "type": "text" + }, + { + "bbox": [ + 483, + 85, + 505, + 96 + ], + "score": 0.9, + "content": "\\Omega ( n )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 413, + 107 + ], + "score": 1.0, + "content": "per-iteration communication time, which is proportional to the network size", + "type": "text" + }, + { + "bbox": [ + 414, + 96, + 420, + 104 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 94, + 506, + 107 + ], + "score": 1.0, + "content": ". As to decentralized", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 413, + 118 + ], + "score": 1.0, + "content": "methods, we will similarly assume the per-iteration communication time to be", + "type": "text" + }, + { + "bbox": [ + 413, + 106, + 421, + 117 + ], + "score": 0.6, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 106, + 503, + 118 + ], + "score": 1.0, + "content": "(maximum degree).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "Convergence. Under Assumptions A.1–A.4, DmSGD with static topology will converge at [64, 25]:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 72, + 506, + 128 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 133, + 431, + 168 + ], + "lines": [ + { + "bbox": [ + 170, + 133, + 431, + 168 + ], + "spans": [ + { + "bbox": [ + 170, + 133, + 431, + 168 + ], + "score": 0.93, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { n T } } + \\frac { n \\sigma ^ { 2 } } { T ( 1 - \\rho ) } + \\frac { n b ^ { 2 } } { T ( 1 - \\rho ) ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "889b47e2e014abbc668e3d92f729cc53dcce44d66cee9db343102df5ee7ca76c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 133, + 431, + 144.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 170, + 144.66666666666666, + 431, + 156.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 156.33333333333331, + 431, + 167.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 173, + 504, + 199 + ], + "lines": [ + { + "bbox": [ + 102, + 168, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 102, + 168, + 145, + 196 + ], + "score": 1.0, + "content": "in which", + "type": "text" + }, + { + "bbox": [ + 145, + 173, + 229, + 190 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { x } ^ { ( k ) } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { i } ^ { ( k ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 168, + 507, + 196 + ], + "score": 1.0, + "content": ". It is worth noting that no analysis in literature, to our knowledge,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 395, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 395, + 201 + ], + "score": 1.0, + "content": "exists for DmSGD over time-varying topologies with non-convex costs.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 102, + 168, + 507, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 210, + 218 + ], + "score": 1.0, + "content": "Linear speedup. When", + "type": "text" + }, + { + "bbox": [ + 210, + 206, + 219, + 215 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 205, + 363, + 218 + ], + "score": 1.0, + "content": "is sufficiently large, the first term", + "type": "text" + }, + { + "bbox": [ + 364, + 204, + 397, + 217 + ], + "score": 0.91, + "content": "1 / \\sqrt { n T }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "dominates (3). This also", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 382, + 229 + ], + "score": 1.0, + "content": "applies to parallel SGD. Decentralized and parall SGDs all require", + "type": "text" + }, + { + "bbox": [ + 382, + 216, + 451, + 228 + ], + "score": 0.93, + "content": "T = \\Omega ( 1 / ( n \\epsilon ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "iterations to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 209, + 239 + ], + "score": 1.0, + "content": "reach a desired accuracy", + "type": "text" + }, + { + "bbox": [ + 210, + 230, + 215, + 237 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 227, + 360, + 239 + ], + "score": 1.0, + "content": ", which is inversely proportional to", + "type": "text" + }, + { + "bbox": [ + 360, + 230, + 367, + 237 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 227, + 505, + 239 + ], + "score": 1.0, + "content": ". Therefore, an algorithm is in its", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 491, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 200, + 251 + ], + "score": 1.0, + "content": "linear-speedup stage at", + "type": "text" + }, + { + "bbox": [ + 200, + 239, + 208, + 248 + ], + "score": 0.45, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 237, + 295, + 251 + ], + "score": 1.0, + "content": "th iteration if, for this", + "type": "text" + }, + { + "bbox": [ + 295, + 239, + 304, + 248 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 237, + 383, + 251 + ], + "score": 1.0, + "content": ", the term involving", + "type": "text" + }, + { + "bbox": [ + 383, + 238, + 398, + 248 + ], + "score": 0.85, + "content": "n T", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 237, + 491, + 251 + ], + "score": 1.0, + "content": "is dominating the rate.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 204, + 506, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 504, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 266 + ], + "score": 1.0, + "content": "Transient iterations. Transient iterations are referred to those iterations before an algorithm reaches", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 244, + 278 + ], + "score": 1.0, + "content": "linear-speedup stage, that is when", + "type": "text" + }, + { + "bbox": [ + 244, + 266, + 253, + 275 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 266, + 356, + 278 + ], + "score": 1.0, + "content": "is relatively small so non-", + "type": "text" + }, + { + "bbox": [ + 357, + 266, + 371, + 276 + ], + "score": 0.83, + "content": "\\mathbf { \\nabla } \\cdot n T", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "terms still dominate the rate (see", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 493, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 318, + 290 + ], + "score": 1.0, + "content": "illustration in Appendix C). To reach linear speedup,", + "type": "text" + }, + { + "bbox": [ + 319, + 277, + 327, + 286 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 276, + 493, + 290 + ], + "score": 1.0, + "content": "has to satisfy (derivation in Appendix C)", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 255, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 293, + 489, + 322 + ], + "lines": [ + { + "bbox": [ + 107, + 284, + 489, + 329 + ], + "spans": [ + { + "bbox": [ + 107, + 284, + 188, + 329 + ], + "score": 1.0, + "content": "Homogeneous dat", + "type": "text" + }, + { + "bbox": [ + 189, + 293, + 489, + 322 + ], + "score": 0.7, + "content": " \\mathrm { 1 : } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 2 } } } \\right) \\qquad { \\mathrm { H e t e r o g e n e o u s ~ d a t a : } } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 4 } } } \\right)", + "type": "inline_equation", + "image_path": "52c9e3543bdb97c169056c920c4d71601baa7cb14c8a805f4c76f39aa38df2fa.jpg" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 107, + 284, + 489, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 502, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 502, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 502, + 351 + ], + "score": 1.0, + "content": "which corresponds to the transient iteration complexity in the homo/hetero-geneous data scenarios.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 337, + 502, + 351 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 363, + 194, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 195, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 195, + 376 + ], + "score": 1.0, + "content": "2.1 Related Works", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "Decentralized deep training. Decentralized optimization originates from the control and signal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing community. The first decentralized algorithms on general optimization problems include", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 420 + ], + "score": 1.0, + "content": "decentralized gradient descent [45], diffusion [11, 51] and dual averaging [18]. In the deep learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "regime, decentralize SGD, which was established in [30] to achieve the same linear speedup as parallel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "SGD in convergence rate, has attracted a lot of attentions. Many efforts have been made to extend the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "algorithm to directed topologies [3, 42], time-varying topologies [25, 42], asynchronous settings [31],", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "and data-heterogeneous scenarios [57, 62, 32, 67]. Techniques such as quantization/compression", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "[2, 8, 26, 24, 58, 36], periodic updates [55, 25, 64], and lazy communication [37, 38, 13] were also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 470, + 419, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 419, + 483 + ], + "score": 1.0, + "content": "integrated into decentralized SGD to further reduce communiation overheads.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 383, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 506, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Topology influence. The influence of network topology on decentralized SGD was extensively", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "studied in [25, 51, 66, 45, 42, 27]. All these works indicate that a well-connected topology will", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "score": 1.0, + "content": "significantly accelerate decentralized SGD. Two directions have been explored to relieve the influence", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "of network topology. One line of research proposes new algorithms that are less sensitive to topologies.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "score": 1.0, + "content": "For example, [66, 23, 65, 57, 1] removed data heterogeneity with bias-correction techniques in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 556 + ], + "score": 1.0, + "content": "[68, 29, 62, 40, 69], and [14, 61, 7, 27] utilized periodic global averaging or multiple partial averaging", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 1.0, + "content": "steps. All these methods have improved topology dependence. The other line is to investigate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "topologies that enable communication-efficient decentralized optimization. [43, 15] examined various", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "topologies (such as ring, grid, torus, expander, etc.) on averaging effectiveness, which, however,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "are either communication-costly or averaging-ineffective compared to exponential graphs studied", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "in this paper. [41, 6, 9, 10] studied random graphs (such as Erdos-Renyi random graph and random", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "geometric graph) in which each edge is activated randomly. The randomness of the edge activation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "can cause a highly unbalanced degrees of each node in the graph, which may significantly affect the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 276, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 276, + 641 + ], + "score": 1.0, + "content": "efficiency in per-iteration communication.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 487, + 506, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "score": 1.0, + "content": "Algorithms with time-varying topologies. Many previous works have studied decentralized al-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "gorithms with time-varying topologies. [42] and [44] examined the convergence of decentralized", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "(deterministic) gradient descent and gradient tracking under convex scenarios. [17, 52] investigated", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "gradient tracking under non-convex scenarios, but it did not clarify the influence of the time-varying", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "graphs on convergence rate. In the stochastic scenario, [25] illustrates how decentralized SGD is", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "influenced by time-varying topologies in the non-convex scenario. However, its analysis cannot be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 711, + 412, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 412, + 722 + ], + "score": 1.0, + "content": "directly extended to the decentralized momentum SGD studied in this work.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46, + "bbox_fs": [ + 104, + 645, + 507, + 722 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 507, + 86 + ], + "score": 1.0, + "content": "Another related work is the Matcha method [60] based on disjoint matching decomposition sampling.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "While similar to Matcha, decentralized SGD over one-peer exponential graphs has several fundamental", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "differences. First, one-peer exponential graph is directed while Matcha only supports undirected", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "and symmetric matching decomposition. Second, the favorable periodic exact-average property of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "score": 1.0, + "content": "one-peer exponential graphs only holds when sampled cyclicly. However, Matcha only supports", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "independent and random matching samples in analysis. For these reasons, Matcha cannot cover", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 475, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 475, + 150 + ], + "score": 1.0, + "content": "one-peer exponential graphs (especially when momentum is utilized in decentralized SGD).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Note. This paper considers deep training within high-performance data-center clusters, in which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "all GPUs are connected with high-bandwidth channels and the network topology can be fully", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "controlled. It is not for the wireless network setting in which the topology cannot be changed freely.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 106, + 202, + 341, + 217 + ], + "lines": [ + { + "bbox": [ + 104, + 201, + 342, + 221 + ], + "spans": [ + { + "bbox": [ + 104, + 201, + 342, + 221 + ], + "score": 1.0, + "content": "3 Spectral Gap of Static Exponential Graph", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 239 + ], + "score": 1.0, + "content": "As discussed above, the graph maximum degree decides the per-iteration communication cost while", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "the spectral gap determines the transient iteration complexity (see (4)). It is critical to seek topologies", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 290, + 262 + ], + "score": 1.0, + "content": "that are both sparse and with large spectral gap", + "type": "text" + }, + { + "bbox": [ + 291, + 250, + 313, + 261 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "simultaneously. In this section, we will establish", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 492, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 492, + 273 + ], + "score": 1.0, + "content": "that the static exponential graph, which was first introduced in [3, 30], is one of such topologies.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 276, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 388, + 291 + ], + "score": 1.0, + "content": "In a static exponential graph, each node is assigned an index from 0 to", + "type": "text" + }, + { + "bbox": [ + 388, + 277, + 413, + 288 + ], + "score": 0.86, + "content": "n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 275, + 506, + 291 + ], + "score": 1.0, + "content": "and will communicate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 286, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 190, + 302 + ], + "score": 1.0, + "content": "to neighbors that are", + "type": "text" + }, + { + "bbox": [ + 191, + 288, + 286, + 300 + ], + "score": 0.89, + "content": "2 ^ { \\bar { 0 } } , 2 ^ { \\bar { 1 } } , \\cdot \\cdot \\cdot , 2 ^ { \\lfloor \\log _ { 2 } ( n - 1 ) \\rfloor }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 286, + 506, + 302 + ], + "score": 1.0, + "content": "hops away. The left plot in Fig. 2 illustrates a directed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 298, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 298, + 351, + 314 + ], + "score": 1.0, + "content": "6-node exponential network topology. With maximum degree", + "type": "text" + }, + { + "bbox": [ + 352, + 299, + 391, + 312 + ], + "score": 0.93, + "content": "\\lceil \\log _ { 2 } ^ { - } ( n ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 298, + 506, + 314 + ], + "score": 1.0, + "content": "neighbors, partial averaging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 272, + 324 + ], + "score": 1.0, + "content": "over the static exponential graph will take", + "type": "text" + }, + { + "bbox": [ + 273, + 311, + 320, + 323 + ], + "score": 0.92, + "content": "\\Omega ( \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "communication time per iteration. However, it", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 320, + 340, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 340, + 336 + ], + "score": 1.0, + "content": "remains unclear what the spectral gap is for this topology.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 106, + 337, + 428, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 429, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 429, + 351 + ], + "score": 1.0, + "content": "Weight matrix associated with static exponential graph is defined as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 353, + 444, + 383 + ], + "lines": [ + { + "bbox": [ + 167, + 353, + 444, + 383 + ], + "spans": [ + { + "bbox": [ + 167, + 353, + 444, + 383 + ], + "score": 0.87, + "content": "w _ { i j } ^ { \\mathrm { e x p } } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { \\lceil \\log _ { 2 } ( n ) \\rceil + 1 } } & { \\mathrm { i f ~ } \\log _ { 2 } ( \\bmod ( j - i , n ) ) \\mathrm { ~ i s ~ a n ~ i n t e g e r ~ o r ~ } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e . } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "d7f7945e9a0431213e4924d8005c385e7f329885e5b23bcf8e9432976d27d0ed.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 167, + 353, + 444, + 363.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 167, + 363.0, + 444, + 373.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 167, + 373.0, + 444, + 383.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 503, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 503, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 503, + 397 + ], + "score": 1.0, + "content": "An example weight matrix associated with the static exponential graph in Fig. 2 is in Appendix A.1", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 441, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 317, + 410 + ], + "score": 1.0, + "content": "The following proposition evaluates the spectral gap", + "type": "text" + }, + { + "bbox": [ + 317, + 397, + 341, + 408 + ], + "score": 0.88, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 396, + 441, + 410 + ], + "score": 1.0, + "content": "for weight matrix in (5).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Proposition 1 (SPECTRAL GAP OF STATIC EXPO) The spectral gap of matrix (5), which can also", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 498, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 498, + 441 + ], + "score": 1.0, + "content": "be interpreted as the second largest magnitude of eigenvalues, satisfies (Proof is in Appendix A.2)", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 443, + 426, + 497 + ], + "lines": [ + { + "bbox": [ + 184, + 443, + 426, + 497 + ], + "spans": [ + { + "bbox": [ + 184, + 443, + 426, + 497 + ], + "score": 0.89, + "content": "1 - \\rho ( W ^ { \\mathrm { e x p } } ) \\left\\{ \\begin{array} { l l } { \\displaystyle = \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s e \\nu e n n u m b e r } \\\\ { \\displaystyle < \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s o d d n u m b e r } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "df43abe5d38b5897cb54a44aa43c1a3a05c6647aa510f36ffa4c76def30f5e3e.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 443, + 426, + 456.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 184, + 456.5, + 426, + 470.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 184, + 470.0, + 426, + 483.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 184, + 483.5, + 426, + 497.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 319, + 515 + ], + "lines": [ + { + "bbox": [ + 104, + 497, + 320, + 516 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 190, + 516 + ], + "score": 1.0, + "content": "In addition, we have", + "type": "text" + }, + { + "bbox": [ + 191, + 500, + 316, + 515 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 497, + 320, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 502, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 522, + 502, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 299, + 539 + ], + "score": 1.0, + "content": "Remark 1 For a general non-symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 299, + 525, + 311, + 535 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 522, + 402, + 539 + ], + "score": 1.0, + "content": ", it typically holds that", + "type": "text" + }, + { + "bbox": [ + 402, + 524, + 502, + 538 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W - \\frac { 1 } { n } \\pm \\Im \\Im ^ { T } \\| _ { 2 } \\neq \\rho ( W ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 534, + 429, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 209, + 552 + ], + "score": 1.0, + "content": "Proposition 1 establishes", + "type": "text" + }, + { + "bbox": [ + 210, + 537, + 336, + 551 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 534, + 429, + 552 + ], + "score": 1.0, + "content": "for exponential graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 315, + 577 + ], + "score": 1.0, + "content": "Remark 2 The hypercube graph is established in", + "type": "text" + }, + { + "bbox": [ + 315, + 564, + 331, + 575 + ], + "score": 0.33, + "content": "I 5 9", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 562, + 506, + 577 + ], + "score": 1.0, + "content": ", Chapter 16] to have the spectral gap as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 570, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 274, + 586 + ], + "score": 0.92, + "content": "1 - \\rho ( W ^ { \\mathrm { H y p e r C u b e } } ) = 2 / ( 1 + \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 570, + 506, + 589 + ], + "score": 1.0, + "content": ". While such spectral gap is on the same order as the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "exponential graph, there are two fundamental differences between these two graphs: (a) the hypercube", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 314, + 609 + ], + "score": 1.0, + "content": "graph has to be undirected and the corresponding", + "type": "text" + }, + { + "bbox": [ + 315, + 596, + 327, + 607 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "is symmetric; (b) the number of vertices of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 266, + 620 + ], + "score": 1.0, + "content": "hypercube must be a power of 2, i.e.,", + "type": "text" + }, + { + "bbox": [ + 266, + 608, + 300, + 618 + ], + "score": 0.9, + "content": "n = 2 ^ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 607, + 408, + 620 + ], + "score": 1.0, + "content": "for some positive integer", + "type": "text" + }, + { + "bbox": [ + 408, + 610, + 414, + 617 + ], + "score": 0.62, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 607, + 505, + 620 + ], + "score": 1.0, + "content": ". In comparision, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 618, + 378, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 378, + 631 + ], + "score": 1.0, + "content": "exponential graph is more flexible in the size of the graph structure.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 504, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "Remark 3 Proposition 1 clarifies the spectral gap of the static exponential graph. Many literatures", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 654, + 470, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 355, + 667 + ], + "score": 1.0, + "content": "before this work (such as [27]) claimed the spectral gap to be", + "type": "text" + }, + { + "bbox": [ + 355, + 655, + 376, + 667 + ], + "score": 0.85, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 654, + 470, + 667 + ], + "score": 1.0, + "content": ", which is not accurate.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 675, + 504, + 720 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 506, + 688 + ], + "score": 1.0, + "content": "The theoretical analysis of Proposition 1 is non-trivial. To evaluate the spectral gap, for any network", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 124, + 699 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 124, + 689, + 132, + 696 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 687, + 505, + 699 + ], + "score": 1.0, + "content": ", we have to derive the analytical expression for each eigenvalue using Fourier transform and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "score": 1.0, + "content": "calculate the magnitudes. The most tricky part is to assert which eigenvalue expression attains the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 192, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 192, + 721 + ], + "score": 1.0, + "content": "second largest value.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 507, + 86 + ], + "score": 1.0, + "content": "Another related work is the Matcha method [60] based on disjoint matching decomposition sampling.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "While similar to Matcha, decentralized SGD over one-peer exponential graphs has several fundamental", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "differences. First, one-peer exponential graph is directed while Matcha only supports undirected", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "and symmetric matching decomposition. Second, the favorable periodic exact-average property of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "score": 1.0, + "content": "one-peer exponential graphs only holds when sampled cyclicly. However, Matcha only supports", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "independent and random matching samples in analysis. For these reasons, Matcha cannot cover", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 475, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 475, + 150 + ], + "score": 1.0, + "content": "one-peer exponential graphs (especially when momentum is utilized in decentralized SGD).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 70, + 507, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Note. This paper considers deep training within high-performance data-center clusters, in which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "all GPUs are connected with high-bandwidth channels and the network topology can be fully", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "controlled. It is not for the wireless network setting in which the topology cannot be changed freely.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 154, + 506, + 189 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 202, + 341, + 217 + ], + "lines": [ + { + "bbox": [ + 104, + 201, + 342, + 221 + ], + "spans": [ + { + "bbox": [ + 104, + 201, + 342, + 221 + ], + "score": 1.0, + "content": "3 Spectral Gap of Static Exponential Graph", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 239 + ], + "score": 1.0, + "content": "As discussed above, the graph maximum degree decides the per-iteration communication cost while", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "the spectral gap determines the transient iteration complexity (see (4)). It is critical to seek topologies", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 290, + 262 + ], + "score": 1.0, + "content": "that are both sparse and with large spectral gap", + "type": "text" + }, + { + "bbox": [ + 291, + 250, + 313, + 261 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "simultaneously. In this section, we will establish", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 492, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 492, + 273 + ], + "score": 1.0, + "content": "that the static exponential graph, which was first introduced in [3, 30], is one of such topologies.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 228, + 506, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 276, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 388, + 291 + ], + "score": 1.0, + "content": "In a static exponential graph, each node is assigned an index from 0 to", + "type": "text" + }, + { + "bbox": [ + 388, + 277, + 413, + 288 + ], + "score": 0.86, + "content": "n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 275, + 506, + 291 + ], + "score": 1.0, + "content": "and will communicate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 286, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 190, + 302 + ], + "score": 1.0, + "content": "to neighbors that are", + "type": "text" + }, + { + "bbox": [ + 191, + 288, + 286, + 300 + ], + "score": 0.89, + "content": "2 ^ { \\bar { 0 } } , 2 ^ { \\bar { 1 } } , \\cdot \\cdot \\cdot , 2 ^ { \\lfloor \\log _ { 2 } ( n - 1 ) \\rfloor }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 286, + 506, + 302 + ], + "score": 1.0, + "content": "hops away. The left plot in Fig. 2 illustrates a directed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 298, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 298, + 351, + 314 + ], + "score": 1.0, + "content": "6-node exponential network topology. With maximum degree", + "type": "text" + }, + { + "bbox": [ + 352, + 299, + 391, + 312 + ], + "score": 0.93, + "content": "\\lceil \\log _ { 2 } ^ { - } ( n ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 298, + 506, + 314 + ], + "score": 1.0, + "content": "neighbors, partial averaging", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 272, + 324 + ], + "score": 1.0, + "content": "over the static exponential graph will take", + "type": "text" + }, + { + "bbox": [ + 273, + 311, + 320, + 323 + ], + "score": 0.92, + "content": "\\Omega ( \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "communication time per iteration. However, it", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 320, + 340, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 340, + 336 + ], + "score": 1.0, + "content": "remains unclear what the spectral gap is for this topology.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 275, + 506, + 336 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 337, + 428, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 429, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 429, + 351 + ], + "score": 1.0, + "content": "Weight matrix associated with static exponential graph is defined as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 353, + 444, + 383 + ], + "lines": [ + { + "bbox": [ + 167, + 353, + 444, + 383 + ], + "spans": [ + { + "bbox": [ + 167, + 353, + 444, + 383 + ], + "score": 0.87, + "content": "w _ { i j } ^ { \\mathrm { e x p } } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { \\lceil \\log _ { 2 } ( n ) \\rceil + 1 } } & { \\mathrm { i f ~ } \\log _ { 2 } ( \\bmod ( j - i , n ) ) \\mathrm { ~ i s ~ a n ~ i n t e g e r ~ o r ~ } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e . } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "d7f7945e9a0431213e4924d8005c385e7f329885e5b23bcf8e9432976d27d0ed.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 167, + 353, + 444, + 363.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 167, + 363.0, + 444, + 373.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 167, + 373.0, + 444, + 383.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 503, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 503, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 503, + 397 + ], + "score": 1.0, + "content": "An example weight matrix associated with the static exponential graph in Fig. 2 is in Appendix A.1", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 441, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 317, + 410 + ], + "score": 1.0, + "content": "The following proposition evaluates the spectral gap", + "type": "text" + }, + { + "bbox": [ + 317, + 397, + 341, + 408 + ], + "score": 0.88, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 396, + 441, + 410 + ], + "score": 1.0, + "content": "for weight matrix in (5).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 386, + 503, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Proposition 1 (SPECTRAL GAP OF STATIC EXPO) The spectral gap of matrix (5), which can also", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 498, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 498, + 441 + ], + "score": 1.0, + "content": "be interpreted as the second largest magnitude of eigenvalues, satisfies (Proof is in Appendix A.2)", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 416, + 505, + 441 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 443, + 426, + 497 + ], + "lines": [ + { + "bbox": [ + 184, + 443, + 426, + 497 + ], + "spans": [ + { + "bbox": [ + 184, + 443, + 426, + 497 + ], + "score": 0.89, + "content": "1 - \\rho ( W ^ { \\mathrm { e x p } } ) \\left\\{ \\begin{array} { l l } { \\displaystyle = \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s e \\nu e n n u m b e r } \\\\ { \\displaystyle < \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s o d d n u m b e r } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "df43abe5d38b5897cb54a44aa43c1a3a05c6647aa510f36ffa4c76def30f5e3e.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 443, + 426, + 456.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 184, + 456.5, + 426, + 470.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 184, + 470.0, + 426, + 483.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 184, + 483.5, + 426, + 497.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 319, + 515 + ], + "lines": [ + { + "bbox": [ + 104, + 497, + 320, + 516 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 190, + 516 + ], + "score": 1.0, + "content": "In addition, we have", + "type": "text" + }, + { + "bbox": [ + 191, + 500, + 316, + 515 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 497, + 320, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 497, + 320, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 502, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 522, + 502, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 299, + 539 + ], + "score": 1.0, + "content": "Remark 1 For a general non-symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 299, + 525, + 311, + 535 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 522, + 402, + 539 + ], + "score": 1.0, + "content": ", it typically holds that", + "type": "text" + }, + { + "bbox": [ + 402, + 524, + 502, + 538 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W - \\frac { 1 } { n } \\pm \\Im \\Im ^ { T } \\| _ { 2 } \\neq \\rho ( W ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 534, + 429, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 209, + 552 + ], + "score": 1.0, + "content": "Proposition 1 establishes", + "type": "text" + }, + { + "bbox": [ + 210, + 537, + 336, + 551 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 534, + 429, + 552 + ], + "score": 1.0, + "content": "for exponential graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 522, + 502, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 315, + 577 + ], + "score": 1.0, + "content": "Remark 2 The hypercube graph is established in", + "type": "text" + }, + { + "bbox": [ + 315, + 564, + 331, + 575 + ], + "score": 0.33, + "content": "I 5 9", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 562, + 506, + 577 + ], + "score": 1.0, + "content": ", Chapter 16] to have the spectral gap as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 570, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 274, + 586 + ], + "score": 0.92, + "content": "1 - \\rho ( W ^ { \\mathrm { H y p e r C u b e } } ) = 2 / ( 1 + \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 570, + 506, + 589 + ], + "score": 1.0, + "content": ". While such spectral gap is on the same order as the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "exponential graph, there are two fundamental differences between these two graphs: (a) the hypercube", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 314, + 609 + ], + "score": 1.0, + "content": "graph has to be undirected and the corresponding", + "type": "text" + }, + { + "bbox": [ + 315, + 596, + 327, + 607 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "is symmetric; (b) the number of vertices of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 266, + 620 + ], + "score": 1.0, + "content": "hypercube must be a power of 2, i.e.,", + "type": "text" + }, + { + "bbox": [ + 266, + 608, + 300, + 618 + ], + "score": 0.9, + "content": "n = 2 ^ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 607, + 408, + 620 + ], + "score": 1.0, + "content": "for some positive integer", + "type": "text" + }, + { + "bbox": [ + 408, + 610, + 414, + 617 + ], + "score": 0.62, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 607, + 505, + 620 + ], + "score": 1.0, + "content": ". In comparision, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 618, + 378, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 378, + 631 + ], + "score": 1.0, + "content": "exponential graph is more flexible in the size of the graph structure.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 562, + 506, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 504, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "Remark 3 Proposition 1 clarifies the spectral gap of the static exponential graph. Many literatures", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 654, + 470, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 355, + 667 + ], + "score": 1.0, + "content": "before this work (such as [27]) claimed the spectral gap to be", + "type": "text" + }, + { + "bbox": [ + 355, + 655, + 376, + 667 + ], + "score": 0.85, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 654, + 470, + 667 + ], + "score": 1.0, + "content": ", which is not accurate.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 643, + 505, + 667 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 675, + 504, + 720 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 506, + 688 + ], + "score": 1.0, + "content": "The theoretical analysis of Proposition 1 is non-trivial. To evaluate the spectral gap, for any network", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 124, + 699 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 124, + 689, + 132, + 696 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 687, + 505, + 699 + ], + "score": 1.0, + "content": ", we have to derive the analytical expression for each eigenvalue using Fourier transform and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "score": 1.0, + "content": "calculate the magnitudes. The most tricky part is to assert which eigenvalue expression attains the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 192, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 192, + 721 + ], + "score": 1.0, + "content": "second largest value.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 675, + 506, + 721 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 337, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 71, + 339, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 71, + 339, + 86 + ], + "score": 1.0, + "content": "We now numerically validate the established spectral gap.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 338, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 338, + 96 + ], + "score": 1.0, + "content": "In Fig. 3, we plotted the spectral gap of the static exponen-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 337, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 165, + 106 + ], + "score": 1.0, + "content": "tial graph with", + "type": "text" + }, + { + "bbox": [ + 165, + 96, + 173, + 104 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 93, + 337, + 106 + ], + "score": 1.0, + "content": "ranging from 4 to 290. It is observed that", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 337, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 172, + 118 + ], + "score": 1.0, + "content": "the derived gap", + "type": "text" + }, + { + "bbox": [ + 172, + 105, + 284, + 118 + ], + "score": 0.92, + "content": "\\rho = 1 - 2 / ( 1 + \\lceil \\log _ { 2 } ( n ) \\rceil )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 105, + 337, + 118 + ], + "score": 1.0, + "content": "is very tight", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 337, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 337, + 128 + ], + "score": 1.0, + "content": "(see the black dashed line). In fact, it exactly matches the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 337, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 228, + 139 + ], + "score": 1.0, + "content": "numerical spectral gap when", + "type": "text" + }, + { + "bbox": [ + 228, + 129, + 235, + 137 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 127, + 337, + 139 + ], + "score": 1.0, + "content": "is even. Moreover, it is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 336, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 336, + 151 + ], + "score": 1.0, + "content": "also observed the spectral gap of static exponential graph", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 148, + 270, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 270, + 162 + ], + "score": 1.0, + "content": "is much smaller than that of ring or grid.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 338, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 338, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 338, + 177 + ], + "score": 1.0, + "content": "Finally, we compare the spectral gap and maximum de-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 177, + 337, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 337, + 189 + ], + "score": 1.0, + "content": "gree of the static exponential graph with all other common", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 187, + 338, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 338, + 199 + ], + "score": 1.0, + "content": "graphs in Appendix A.3. It is observed that static exponen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 198, + 338, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 338, + 211 + ], + "score": 1.0, + "content": "tial graph, while with a sightly larger maximum degree,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "score": 1.0, + "content": "has a significantly smaller spectral gap than ring and grid.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "image", + "bbox": [ + 345, + 80, + 501, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 345, + 80, + 501, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 345, + 80, + 501, + 205 + ], + "spans": [ + { + "bbox": [ + 345, + 80, + 501, + 205 + ], + "score": 0.97, + "type": "image", + "image_path": "c6e6fcda0a87523c8d253a37abda487eba34df530571865620d798dd903940d9.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 345, + 80, + 501, + 93.88888888888889 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 345, + 93.88888888888889, + 501, + 107.77777777777777 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 345, + 107.77777777777777, + 501, + 121.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 345, + 121.66666666666666, + 501, + 135.55555555555554 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 345, + 135.55555555555554, + 501, + 149.44444444444443 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 345, + 149.44444444444443, + 501, + 163.33333333333331 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 345, + 163.33333333333331, + 501, + 177.2222222222222 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 345, + 177.2222222222222, + 501, + 191.1111111111111 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 345, + 191.1111111111111, + 501, + 204.99999999999997 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 345, + 208, + 502, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 206, + 504, + 220 + ], + "spans": [ + { + "bbox": [ + 344, + 206, + 504, + 220 + ], + "score": 1.0, + "content": "Figure 3: Spectral gap of some topologies.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + } + ], + "index": 17.0 + }, + { + "type": "title", + "bbox": [ + 105, + 235, + 458, + 249 + ], + "lines": [ + { + "bbox": [ + 103, + 232, + 460, + 253 + ], + "spans": [ + { + "bbox": [ + 103, + 232, + 460, + 253 + ], + "score": 1.0, + "content": "4 One-Peer Exponential Graph Achieves Periodic Exact-Averaging", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 231, + 268 + ], + "score": 1.0, + "content": "Static exponential graph incurs", + "type": "text" + }, + { + "bbox": [ + 231, + 254, + 278, + 266 + ], + "score": 0.92, + "content": "\\Omega ( \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 253, + 506, + 268 + ], + "score": 1.0, + "content": "communication overhead per iteration. To overcome this", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "issue, [3] proposes to decompose the static exponential graph into a sequence of one-peer graphs,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "in which each node cycles through all its neighbors, communicating, only, to a single neighbor per", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 420, + 299 + ], + "score": 1.0, + "content": "iteration, see the right plot in Fig. 2. Apparently, each one-peer realization incurs", + "type": "text" + }, + { + "bbox": [ + 420, + 286, + 441, + 299 + ], + "score": 0.89, + "content": "\\Omega ( 1 ) { \\bar { } }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "communication", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "cost, which matches with ring or grid. Since each realization is sparser than the static graph, one may", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "expect DmSGD with one-peer exponential graphs are less effective in aggregating information. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 318, + 475, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 475, + 333 + ], + "score": 1.0, + "content": "the following, we will establish an interesting result: one-peer is very effective in averaging.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 335, + 462, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 463, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 259, + 349 + ], + "score": 1.0, + "content": "Time-varying weight matrix. We let", + "type": "text" + }, + { + "bbox": [ + 259, + 335, + 319, + 348 + ], + "score": 0.93, + "content": "\\tau = \\lceil \\log _ { 2 } ( n ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 335, + 445, + 349 + ], + "score": 1.0, + "content": ". The weight matrix at iteration", + "type": "text" + }, + { + "bbox": [ + 446, + 336, + 452, + 345 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 335, + 463, + 349 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 351, + 408, + 393 + ], + "lines": [ + { + "bbox": [ + 201, + 351, + 408, + 393 + ], + "spans": [ + { + "bbox": [ + 201, + 351, + 408, + 393 + ], + "score": 0.93, + "content": "w _ { i j } ^ { ( k ) } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { 2 } } & { \\mathrm { i f } \\log _ { 2 } ( \\bmod ( j - i , n ) ) = \\bmod ( k , \\tau ) } \\\\ { \\frac { 1 } { 2 } } & { \\mathrm { i f } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "56a16c32ec5031afb71990c27e3978a2fc6659592e1690f7340e1c19e38dc926.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 201, + 351, + 408, + 365.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 201, + 365.0, + 408, + 379.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 201, + 379.0, + 408, + 393.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "The weight matrix for each realization of the one-peer exponential graphs in Fig. 2 is in Appendix", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "B.1. Since each node communicates to one single neighbor per iteration, the resulting weight matrix", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 415, + 497, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 497, + 427 + ], + "score": 1.0, + "content": "is very sparse, with only one non-zero element in the non-diagonal positions per row and column.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "Periodic exact-averaging. The periodic exact-averaging property, which was observed by [3]", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "without theoretical justifications, is fundamental to clarify the averaging effectiveness of one-peer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 450, + 494, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 421, + 462 + ], + "score": 1.0, + "content": "exponential graphs. The following lemma proves that the property holds when", + "type": "text" + }, + { + "bbox": [ + 421, + 452, + 429, + 460 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 450, + 494, + 462 + ], + "score": 1.0, + "content": "is a power of 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 467, + 505, + 501 + ], + "lines": [ + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 326, + 481 + ], + "score": 1.0, + "content": "Lemma 1 (PERIODIC EXACT AVERAGING) Suppose", + "type": "text" + }, + { + "bbox": [ + 326, + 468, + 377, + 480 + ], + "score": 0.94, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 467, + 471, + 481 + ], + "score": 1.0, + "content": "is a positive integer. If", + "type": "text" + }, + { + "bbox": [ + 472, + 466, + 494, + 479 + ], + "score": 0.89, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 467, + 507, + 481 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "the weight matrix generated by (7) over the one-peer exponential graphs, it then holds that each", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 488, + 470, + 502 + ], + "spans": [ + { + "bbox": [ + 107, + 489, + 129, + 500 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 488, + 230, + 502 + ], + "score": 1.0, + "content": "is doubly-stochastic, i.e.", + "type": "text" + }, + { + "bbox": [ + 230, + 489, + 279, + 500 + ], + "score": 0.91, + "content": "\\mathbf { \\dot { W } } ^ { ( \\dot { k } ) } \\mathbb { 1 } = \\mathbb { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 488, + 298, + 502 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 489, + 358, + 500 + ], + "score": 0.94, + "content": "\\mathbb { 1 } ^ { \\dot { T } } W ^ { ( k ) } \\dot { = } \\mathbb { 1 } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 488, + 470, + 502 + ], + "score": 1.0, + "content": ". Furthermore, it holds that", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 502, + 397, + 525 + ], + "lines": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "spans": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "score": 0.9, + "content": "W ^ { ( k + \\ell ) } W ^ { ( k + \\ell - 1 ) } \\cdot \\cdot \\cdot W ^ { ( k + 1 ) } W ^ { ( k ) } = \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T }", + "type": "interline_equation", + "image_path": "93d9e92849d6527fabfb3d35361e2ebf966007939d90d1cf725e2f83ea0da3e2.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 100, + 527, + 462, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 526, + 465, + 541 + ], + "spans": [ + { + "bbox": [ + 104, + 526, + 168, + 541 + ], + "score": 1.0, + "content": "for any integer", + "type": "text" + }, + { + "bbox": [ + 168, + 527, + 193, + 538 + ], + "score": 0.9, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 526, + 211, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 527, + 235, + 538 + ], + "score": 0.88, + "content": "\\ell \\geq \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 526, + 465, + 541 + ], + "score": 1.0, + "content": ". And equivalently, the consensus residue form holds that", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 538, + 443, + 562 + ], + "lines": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "spans": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "score": 0.92, + "content": "\\left( W ^ { ( k + \\ell ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\left( W ^ { ( k + \\ell - 1 ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\cdots \\left( W ^ { ( k ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) = 0", + "type": "interline_equation", + "image_path": "92e776d87465cc56b7e95f6dc42438afbfb1db43db516432fa0809fad098c814.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 214, + 576 + ], + "lines": [ + { + "bbox": [ + 104, + 563, + 215, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 215, + 577 + ], + "score": 1.0, + "content": "(Proof is in Appendix B.2).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 235, + 597 + ], + "score": 1.0, + "content": "Remark 4 The assumption that", + "type": "text" + }, + { + "bbox": [ + 235, + 585, + 267, + 596 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "is a positive integer seems necessary. We numerically tested", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 328, + 608 + ], + "score": 1.0, + "content": "various one-peer exponential graphs with non-integer", + "type": "text" + }, + { + "bbox": [ + 328, + 596, + 360, + 608 + ], + "score": 0.91, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 595, + 505, + 608 + ], + "score": 1.0, + "content": ". None of them is endowed with the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 606, + 239, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 239, + 620 + ], + "score": 1.0, + "content": "periodic exact-average property.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 180, + 639 + ], + "score": 1.0, + "content": "Remark 5 When", + "type": "text" + }, + { + "bbox": [ + 180, + 626, + 212, + 639 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "is a positive integer and each realization of the one-peer exponential", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "graph is sampled without replacement, it is easy to verify that the periodic exact-averaging property", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "still holds. However, if each realization is sampled with replacement, the periodic exact-averaging", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 104, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "property generally does not hold unless all realizations are occasionally sampled without repeating.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52.5 + }, + { + "type": "text", + "bbox": [ + 107, + 682, + 505, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "Remark 6 It is worth noting that an one-peer variant of the hypercube graph is established to", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 694, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 227, + 707 + ], + "score": 1.0, + "content": "achieve exact averaging with", + "type": "text" + }, + { + "bbox": [ + 227, + 694, + 279, + 706 + ], + "score": 0.91, + "content": "\\tau = \\log _ { n } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 694, + 505, + 707 + ], + "score": 1.0, + "content": "steps [54]. Such one-peer hypercube is undirected and", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 705, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 506, + 717 + ], + "score": 1.0, + "content": "symmetric, which is different from the one-peer exponential graph which is directed and asymmetric.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 337, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 71, + 339, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 71, + 339, + 86 + ], + "score": 1.0, + "content": "We now numerically validate the established spectral gap.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 338, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 338, + 96 + ], + "score": 1.0, + "content": "In Fig. 3, we plotted the spectral gap of the static exponen-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 337, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 165, + 106 + ], + "score": 1.0, + "content": "tial graph with", + "type": "text" + }, + { + "bbox": [ + 165, + 96, + 173, + 104 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 93, + 337, + 106 + ], + "score": 1.0, + "content": "ranging from 4 to 290. It is observed that", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 337, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 172, + 118 + ], + "score": 1.0, + "content": "the derived gap", + "type": "text" + }, + { + "bbox": [ + 172, + 105, + 284, + 118 + ], + "score": 0.92, + "content": "\\rho = 1 - 2 / ( 1 + \\lceil \\log _ { 2 } ( n ) \\rceil )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 105, + 337, + 118 + ], + "score": 1.0, + "content": "is very tight", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 337, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 337, + 128 + ], + "score": 1.0, + "content": "(see the black dashed line). In fact, it exactly matches the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 337, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 228, + 139 + ], + "score": 1.0, + "content": "numerical spectral gap when", + "type": "text" + }, + { + "bbox": [ + 228, + 129, + 235, + 137 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 127, + 337, + 139 + ], + "score": 1.0, + "content": "is even. Moreover, it is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 336, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 336, + 151 + ], + "score": 1.0, + "content": "also observed the spectral gap of static exponential graph", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 148, + 270, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 270, + 162 + ], + "score": 1.0, + "content": "is much smaller than that of ring or grid.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 71, + 339, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 338, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 338, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 338, + 177 + ], + "score": 1.0, + "content": "Finally, we compare the spectral gap and maximum de-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 177, + 337, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 337, + 189 + ], + "score": 1.0, + "content": "gree of the static exponential graph with all other common", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 187, + 338, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 338, + 199 + ], + "score": 1.0, + "content": "graphs in Appendix A.3. It is observed that static exponen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 198, + 338, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 338, + 211 + ], + "score": 1.0, + "content": "tial graph, while with a sightly larger maximum degree,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "score": 1.0, + "content": "has a significantly smaller spectral gap than ring and grid.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 165, + 338, + 222 + ] + }, + { + "type": "image", + "bbox": [ + 345, + 80, + 501, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 345, + 80, + 501, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 345, + 80, + 501, + 205 + ], + "spans": [ + { + "bbox": [ + 345, + 80, + 501, + 205 + ], + "score": 0.97, + "type": "image", + "image_path": "c6e6fcda0a87523c8d253a37abda487eba34df530571865620d798dd903940d9.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 345, + 80, + 501, + 93.88888888888889 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 345, + 93.88888888888889, + 501, + 107.77777777777777 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 345, + 107.77777777777777, + 501, + 121.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 345, + 121.66666666666666, + 501, + 135.55555555555554 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 345, + 135.55555555555554, + 501, + 149.44444444444443 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 345, + 149.44444444444443, + 501, + 163.33333333333331 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 345, + 163.33333333333331, + 501, + 177.2222222222222 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 345, + 177.2222222222222, + 501, + 191.1111111111111 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 345, + 191.1111111111111, + 501, + 204.99999999999997 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 345, + 208, + 502, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 206, + 504, + 220 + ], + "spans": [ + { + "bbox": [ + 344, + 206, + 504, + 220 + ], + "score": 1.0, + "content": "Figure 3: Spectral gap of some topologies.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + } + ], + "index": 17.0 + }, + { + "type": "title", + "bbox": [ + 105, + 235, + 458, + 249 + ], + "lines": [ + { + "bbox": [ + 103, + 232, + 460, + 253 + ], + "spans": [ + { + "bbox": [ + 103, + 232, + 460, + 253 + ], + "score": 1.0, + "content": "4 One-Peer Exponential Graph Achieves Periodic Exact-Averaging", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 231, + 268 + ], + "score": 1.0, + "content": "Static exponential graph incurs", + "type": "text" + }, + { + "bbox": [ + 231, + 254, + 278, + 266 + ], + "score": 0.92, + "content": "\\Omega ( \\log _ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 253, + 506, + 268 + ], + "score": 1.0, + "content": "communication overhead per iteration. To overcome this", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "issue, [3] proposes to decompose the static exponential graph into a sequence of one-peer graphs,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "in which each node cycles through all its neighbors, communicating, only, to a single neighbor per", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 420, + 299 + ], + "score": 1.0, + "content": "iteration, see the right plot in Fig. 2. Apparently, each one-peer realization incurs", + "type": "text" + }, + { + "bbox": [ + 420, + 286, + 441, + 299 + ], + "score": 0.89, + "content": "\\Omega ( 1 ) { \\bar { } }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "communication", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "cost, which matches with ring or grid. Since each realization is sparser than the static graph, one may", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "expect DmSGD with one-peer exponential graphs are less effective in aggregating information. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 318, + 475, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 475, + 333 + ], + "score": 1.0, + "content": "the following, we will establish an interesting result: one-peer is very effective in averaging.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 253, + 506, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 335, + 462, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 463, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 259, + 349 + ], + "score": 1.0, + "content": "Time-varying weight matrix. We let", + "type": "text" + }, + { + "bbox": [ + 259, + 335, + 319, + 348 + ], + "score": 0.93, + "content": "\\tau = \\lceil \\log _ { 2 } ( n ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 335, + 445, + 349 + ], + "score": 1.0, + "content": ". The weight matrix at iteration", + "type": "text" + }, + { + "bbox": [ + 446, + 336, + 452, + 345 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 335, + 463, + 349 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 335, + 463, + 349 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 351, + 408, + 393 + ], + "lines": [ + { + "bbox": [ + 201, + 351, + 408, + 393 + ], + "spans": [ + { + "bbox": [ + 201, + 351, + 408, + 393 + ], + "score": 0.93, + "content": "w _ { i j } ^ { ( k ) } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { 2 } } & { \\mathrm { i f } \\log _ { 2 } ( \\bmod ( j - i , n ) ) = \\bmod ( k , \\tau ) } \\\\ { \\frac { 1 } { 2 } } & { \\mathrm { i f } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "56a16c32ec5031afb71990c27e3978a2fc6659592e1690f7340e1c19e38dc926.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 201, + 351, + 408, + 365.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 201, + 365.0, + 408, + 379.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 201, + 379.0, + 408, + 393.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "The weight matrix for each realization of the one-peer exponential graphs in Fig. 2 is in Appendix", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "B.1. Since each node communicates to one single neighbor per iteration, the resulting weight matrix", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 415, + 497, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 497, + 427 + ], + "score": 1.0, + "content": "is very sparse, with only one non-zero element in the non-diagonal positions per row and column.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 392, + 505, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "Periodic exact-averaging. The periodic exact-averaging property, which was observed by [3]", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "without theoretical justifications, is fundamental to clarify the averaging effectiveness of one-peer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 450, + 494, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 421, + 462 + ], + "score": 1.0, + "content": "exponential graphs. The following lemma proves that the property holds when", + "type": "text" + }, + { + "bbox": [ + 421, + 452, + 429, + 460 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 450, + 494, + 462 + ], + "score": 1.0, + "content": "is a power of 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 428, + 506, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 467, + 505, + 501 + ], + "lines": [ + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 326, + 481 + ], + "score": 1.0, + "content": "Lemma 1 (PERIODIC EXACT AVERAGING) Suppose", + "type": "text" + }, + { + "bbox": [ + 326, + 468, + 377, + 480 + ], + "score": 0.94, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 467, + 471, + 481 + ], + "score": 1.0, + "content": "is a positive integer. If", + "type": "text" + }, + { + "bbox": [ + 472, + 466, + 494, + 479 + ], + "score": 0.89, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 467, + 507, + 481 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "the weight matrix generated by (7) over the one-peer exponential graphs, it then holds that each", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 488, + 470, + 502 + ], + "spans": [ + { + "bbox": [ + 107, + 489, + 129, + 500 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 488, + 230, + 502 + ], + "score": 1.0, + "content": "is doubly-stochastic, i.e.", + "type": "text" + }, + { + "bbox": [ + 230, + 489, + 279, + 500 + ], + "score": 0.91, + "content": "\\mathbf { \\dot { W } } ^ { ( \\dot { k } ) } \\mathbb { 1 } = \\mathbb { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 488, + 298, + 502 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 489, + 358, + 500 + ], + "score": 0.94, + "content": "\\mathbb { 1 } ^ { \\dot { T } } W ^ { ( k ) } \\dot { = } \\mathbb { 1 } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 488, + 470, + 502 + ], + "score": 1.0, + "content": ". Furthermore, it holds that", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 466, + 507, + 502 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 502, + 397, + 525 + ], + "lines": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "spans": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "score": 0.9, + "content": "W ^ { ( k + \\ell ) } W ^ { ( k + \\ell - 1 ) } \\cdot \\cdot \\cdot W ^ { ( k + 1 ) } W ^ { ( k ) } = \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T }", + "type": "interline_equation", + "image_path": "93d9e92849d6527fabfb3d35361e2ebf966007939d90d1cf725e2f83ea0da3e2.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 213, + 502, + 397, + 525 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 100, + 527, + 462, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 526, + 465, + 541 + ], + "spans": [ + { + "bbox": [ + 104, + 526, + 168, + 541 + ], + "score": 1.0, + "content": "for any integer", + "type": "text" + }, + { + "bbox": [ + 168, + 527, + 193, + 538 + ], + "score": 0.9, + "content": "k \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 526, + 211, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 527, + 235, + 538 + ], + "score": 0.88, + "content": "\\ell \\geq \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 526, + 465, + 541 + ], + "score": 1.0, + "content": ". And equivalently, the consensus residue form holds that", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45, + "bbox_fs": [ + 104, + 526, + 465, + 541 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 538, + 443, + 562 + ], + "lines": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "spans": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "score": 0.92, + "content": "\\left( W ^ { ( k + \\ell ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\left( W ^ { ( k + \\ell - 1 ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\cdots \\left( W ^ { ( k ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) = 0", + "type": "interline_equation", + "image_path": "92e776d87465cc56b7e95f6dc42438afbfb1db43db516432fa0809fad098c814.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 169, + 538, + 443, + 562 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 214, + 576 + ], + "lines": [ + { + "bbox": [ + 104, + 563, + 215, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 215, + 577 + ], + "score": 1.0, + "content": "(Proof is in Appendix B.2).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47, + "bbox_fs": [ + 104, + 563, + 215, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 235, + 597 + ], + "score": 1.0, + "content": "Remark 4 The assumption that", + "type": "text" + }, + { + "bbox": [ + 235, + 585, + 267, + 596 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "is a positive integer seems necessary. We numerically tested", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 328, + 608 + ], + "score": 1.0, + "content": "various one-peer exponential graphs with non-integer", + "type": "text" + }, + { + "bbox": [ + 328, + 596, + 360, + 608 + ], + "score": 0.91, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 595, + 505, + 608 + ], + "score": 1.0, + "content": ". None of them is endowed with the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 606, + 239, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 239, + 620 + ], + "score": 1.0, + "content": "periodic exact-average property.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49, + "bbox_fs": [ + 105, + 583, + 506, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 180, + 639 + ], + "score": 1.0, + "content": "Remark 5 When", + "type": "text" + }, + { + "bbox": [ + 180, + 626, + 212, + 639 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "is a positive integer and each realization of the one-peer exponential", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "graph is sampled without replacement, it is easy to verify that the periodic exact-averaging property", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "still holds. However, if each realization is sampled with replacement, the periodic exact-averaging", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 104, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "property generally does not hold unless all realizations are occasionally sampled without repeating.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52.5, + "bbox_fs": [ + 104, + 626, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 682, + 505, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "Remark 6 It is worth noting that an one-peer variant of the hypercube graph is established to", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 694, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 227, + 707 + ], + "score": 1.0, + "content": "achieve exact averaging with", + "type": "text" + }, + { + "bbox": [ + 227, + 694, + 279, + 706 + ], + "score": 0.91, + "content": "\\tau = \\log _ { n } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 694, + 505, + 707 + ], + "score": 1.0, + "content": "steps [54]. Such one-peer hypercube is undirected and", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 705, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 506, + 717 + ], + "score": 1.0, + "content": "symmetric, which is different from the one-peer exponential graph which is directed and asymmetric.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56, + "bbox_fs": [ + 105, + 682, + 506, + 717 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 337, + 197 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 337, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 337, + 85 + ], + "score": 1.0, + "content": "We now numerically validate Lemma 1. To this end, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 337, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 181, + 96 + ], + "score": 1.0, + "content": "initialize a vector", + "type": "text" + }, + { + "bbox": [ + 181, + 83, + 214, + 94 + ], + "score": 0.91, + "content": "\\bar { x _ { \\mathrm { ~ \\in ~ } } } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 83, + 337, + 96 + ], + "score": 1.0, + "content": "arbitrarily, and examine how", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 92, + 339, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 211, + 109 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| ( \\Pi _ { \\ell = 0 } ^ { k } W ^ { ( \\ell ) } - \\frac { 1 } { n } \\pmb { 1 } \\pmb { 1 } \\| ^ { T } ) x \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 92, + 308, + 109 + ], + "score": 1.0, + "content": "decreases with iteration", + "type": "text" + }, + { + "bbox": [ + 308, + 96, + 315, + 106 + ], + "score": 0.72, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 92, + 339, + 109 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 107, + 339, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 165, + 121 + ], + "score": 1.0, + "content": "weight matrix", + "type": "text" + }, + { + "bbox": [ + 165, + 108, + 188, + 119 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 107, + 339, + 121 + ], + "score": 1.0, + "content": "is either static or samples from one-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 120, + 338, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 338, + 131 + ], + "score": 1.0, + "content": "peer exponential graph or bipartite random match graph.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 131, + 336, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 336, + 143 + ], + "score": 1.0, + "content": "In Fig. 4, it is observed that one-peer exponential graphs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 142, + 338, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 236, + 153 + ], + "score": 1.0, + "content": "can achieve exact average after", + "type": "text" + }, + { + "bbox": [ + 236, + 142, + 268, + 153 + ], + "score": 0.93, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 142, + 338, + 153 + ], + "score": 1.0, + "content": "steps, which co-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 153, + 337, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 337, + 164 + ], + "score": 1.0, + "content": "incides with the results in Lemma 1. In contrast, the static", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 164, + 337, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 337, + 176 + ], + "score": 1.0, + "content": "exponential and bipartite random match graphs can only", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 174, + 338, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 338, + 186 + ], + "score": 1.0, + "content": "achieve the global average asymptotically. The justifica-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 185, + 288, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 288, + 196 + ], + "score": 1.0, + "content": "tion for Remarks 4 and 5 is in Appendix B.3.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 106, + 212, + 302, + 226 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 302, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 302, + 229 + ], + "score": 1.0, + "content": "5 DmSGD with Exponential Graphs", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "image", + "bbox": [ + 347, + 79, + 502, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 347, + 79, + 502, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 347, + 79, + 502, + 201 + ], + "spans": [ + { + "bbox": [ + 347, + 79, + 502, + 201 + ], + "score": 0.97, + "type": "image", + "image_path": "89129067f685321fb71b3eef9cea4444a11c7818b525fdcfb5d21abc483690c2.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 347, + 79, + 502, + 92.55555555555556 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 347, + 92.55555555555556, + 502, + 106.11111111111111 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 347, + 106.11111111111111, + 502, + 119.66666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 347, + 119.66666666666667, + 502, + 133.22222222222223 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 347, + 133.22222222222223, + 502, + 146.77777777777777 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 347, + 146.77777777777777, + 502, + 160.33333333333331 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 347, + 160.33333333333331, + 502, + 173.88888888888886 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 347, + 173.88888888888886, + 502, + 187.4444444444444 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 347, + 187.4444444444444, + 502, + 200.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 204, + 504, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 344, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Figure 4: Illustration of how consensus", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 343, + 214, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 343, + 214, + 505, + 225 + ], + "score": 1.0, + "content": "residues decay with iterations for various", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 343, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 343, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "graphs. O.E. and S.E. denote one-peer and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 344, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 344, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "static exponential graphs, and R.M. denotes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 344, + 244, + 454, + 254 + ], + "spans": [ + { + "bbox": [ + 344, + 244, + 454, + 254 + ], + "score": 1.0, + "content": "bipartite random match graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 336, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 337, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 337, + 249 + ], + "score": 1.0, + "content": "With the derived property in Sec. 3 and 4, this section", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 247, + 337, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 337, + 260 + ], + "score": 1.0, + "content": "will examine the convergence of DmSGD with static and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 260, + 223, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 223, + 271 + ], + "score": 1.0, + "content": "one-peer exponential graphs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "DmSGD with static exponential graph. Based on Proposition 1, we can achieve the convergence", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "rate and transient iterations, by following analysis in [64], of DmSGD with static exponential graph.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 103, + 306, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 103, + 306, + 350, + 329 + ], + "score": 1.0, + "content": "Corollary 1 Under Assumptions A.1–A.4, if γ = n(1−β)3√ ,", + "type": "text" + }, + { + "bbox": [ + 346, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "DmSGD (Algorithm 1) will converge at", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 334, + 482, + 367 + ], + "lines": [ + { + "bbox": [ + 113, + 334, + 482, + 367 + ], + "spans": [ + { + "bbox": [ + 113, + 334, + 482, + 367 + ], + "score": 0.93, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n \\log _ { 2 } ( n ) ( 1 - \\beta ) \\sigma ^ { 2 } } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\log _ { 2 } ^ { 2 } ( n ) } { T } \\right)", + "type": "interline_equation", + "image_path": "cec45730fb2c9210060c288bb0c5b5d3b35dbff42ddaa4c2fbd749f3e6f98735.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 113, + 334, + 482, + 345.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 113, + 345.0, + 482, + 356.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 113, + 356.0, + 482, + 367.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "Furthermore, the transient iteration complexity of DmSGD over static exponential graph is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 384, + 507, + 398 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 166, + 397 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 384, + 313, + 398 + ], + "score": 1.0, + "content": "for data-homogeneous scenario and", + "type": "text" + }, + { + "bbox": [ + 313, + 384, + 372, + 397 + ], + "score": 0.93, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 384, + 507, + 398 + ], + "score": 1.0, + "content": "for data-heterogeneous scenario.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "DmSGD with one-peer exponential graph. With each realization being sparser than its static", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 417, + 507, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 507, + 430 + ], + "score": 1.0, + "content": "counterpart, one-peer exponential graph is believed to converge slower. However, the periodic exact-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 428, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 507, + 441 + ], + "score": 1.0, + "content": "averaging property can help DmSGD achieve the same convergence rate as its static counterpart.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "Note that DmSGD with one-peer exponential graph is an one-loop algorithm, see Algorithm 1. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 449, + 386, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 386, + 463 + ], + "score": 1.0, + "content": "DmSGD updates start immediately after sampling one weight matrix.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 506, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 205, + 485 + ], + "score": 1.0, + "content": "Theorem 1 We assume", + "type": "text" + }, + { + "bbox": [ + 206, + 471, + 259, + 484 + ], + "score": 0.93, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 470, + 506, + 485 + ], + "score": 1.0, + "content": "is a positive integer, and the time-varying weight matrix is√", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 483, + 502, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 483, + 442, + 506 + ], + "score": 1.0, + "content": "generated by (7) over one-peer exponential graphs. Under Assumptions A.1–A.4 and", + "type": "text" + }, + { + "bbox": [ + 442, + 484, + 502, + 504 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\gamma = \\frac { \\sqrt { n ( 1 - \\beta ) ^ { 3 } } } { \\sqrt { T } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 500, + 393, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 189, + 514 + ], + "score": 1.0, + "content": "DmSGD (Algorithm", + "type": "text" + }, + { + "bbox": [ + 189, + 502, + 195, + 511 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 500, + 393, + 514 + ], + "score": 1.0, + "content": ") will converge at (Proof is in Appendix D.1-D.3).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 518, + 470, + 553 + ], + "lines": [ + { + "bbox": [ + 140, + 518, + 470, + 553 + ], + "spans": [ + { + "bbox": [ + 140, + 518, + 470, + 553 + ], + "score": 0.94, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n ( 1 - \\beta ) \\sigma ^ { 2 } \\tau } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\tau ^ { 2 } } { T } \\right) .", + "type": "interline_equation", + "image_path": "9ecb1531fba5d4f7a8a84f38f08ecaaf5800ba181a8c6ae8d9d2c9d471ffb9aa.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 140, + 518, + 470, + 529.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 140, + 529.6666666666666, + 470, + 541.3333333333333 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 140, + 541.3333333333333, + 470, + 552.9999999999999 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 558, + 506, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "Furthermore, the transient iteration complexity of DmSGD over one-peer exponential graph is", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 568, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 569, + 166, + 582 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 568, + 313, + 584 + ], + "score": 1.0, + "content": "for data-homogeneous scenario and", + "type": "text" + }, + { + "bbox": [ + 313, + 569, + 372, + 582 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 568, + 507, + 584 + ], + "score": 1.0, + "content": "for data-heterogeneous scenario.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 324, + 604 + ], + "score": 1.0, + "content": "Remark 7 Comparing (11) with (10), and noting that", + "type": "text" + }, + { + "bbox": [ + 324, + 591, + 375, + 603 + ], + "score": 0.92, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 590, + 505, + 604 + ], + "score": 1.0, + "content": ", we conclude that DmSGD with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 603, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 614 + ], + "score": 1.0, + "content": "one-peer graphs converge exactly as fast as with the static counterpart in terms of the established", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 613, + 503, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 503, + 626 + ], + "score": 1.0, + "content": "rate bounds. In addition, both graphs endow DmSGD with the same transient iteration complexity.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "score": 1.0, + "content": "Remark 8 We can also achieve the convergence rate for decentralized SGD (i.e., DSGD without", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 383, + 658 + ], + "score": 1.0, + "content": "momentum acceleration) with one-peer exponential graph by setting", + "type": "text" + }, + { + "bbox": [ + 383, + 646, + 409, + 657 + ], + "score": 0.91, + "content": "\\beta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ". It is easy to verify that", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 104, + 655, + 480, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 480, + 669 + ], + "score": 1.0, + "content": "DSGD with one-peer graphs can also converge as fast as with the static exponential graph.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Remark 9 The convergence rate and transient iteration complexity of DSGD with general mixing", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "matrices sampling strategy are also studied in [25]. However, the results in reference [25] does", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "not cover the scenario with momentum acceleration. As we show in the proof details, it is highly", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 711, + 240, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 240, + 723 + ], + "score": 1.0, + "content": "non-trivial to handle momentum.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 57.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 337, + 197 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 337, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 337, + 85 + ], + "score": 1.0, + "content": "We now numerically validate Lemma 1. To this end, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 337, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 181, + 96 + ], + "score": 1.0, + "content": "initialize a vector", + "type": "text" + }, + { + "bbox": [ + 181, + 83, + 214, + 94 + ], + "score": 0.91, + "content": "\\bar { x _ { \\mathrm { ~ \\in ~ } } } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 83, + 337, + 96 + ], + "score": 1.0, + "content": "arbitrarily, and examine how", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 92, + 339, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 211, + 109 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\| ( \\Pi _ { \\ell = 0 } ^ { k } W ^ { ( \\ell ) } - \\frac { 1 } { n } \\pmb { 1 } \\pmb { 1 } \\| ^ { T } ) x \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 92, + 308, + 109 + ], + "score": 1.0, + "content": "decreases with iteration", + "type": "text" + }, + { + "bbox": [ + 308, + 96, + 315, + 106 + ], + "score": 0.72, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 92, + 339, + 109 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 107, + 339, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 165, + 121 + ], + "score": 1.0, + "content": "weight matrix", + "type": "text" + }, + { + "bbox": [ + 165, + 108, + 188, + 119 + ], + "score": 0.88, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 107, + 339, + 121 + ], + "score": 1.0, + "content": "is either static or samples from one-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 120, + 338, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 338, + 131 + ], + "score": 1.0, + "content": "peer exponential graph or bipartite random match graph.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 131, + 336, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 336, + 143 + ], + "score": 1.0, + "content": "In Fig. 4, it is observed that one-peer exponential graphs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 142, + 338, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 236, + 153 + ], + "score": 1.0, + "content": "can achieve exact average after", + "type": "text" + }, + { + "bbox": [ + 236, + 142, + 268, + 153 + ], + "score": 0.93, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 142, + 338, + 153 + ], + "score": 1.0, + "content": "steps, which co-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 153, + 337, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 337, + 164 + ], + "score": 1.0, + "content": "incides with the results in Lemma 1. In contrast, the static", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 164, + 337, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 337, + 176 + ], + "score": 1.0, + "content": "exponential and bipartite random match graphs can only", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 174, + 338, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 338, + 186 + ], + "score": 1.0, + "content": "achieve the global average asymptotically. The justifica-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 185, + 288, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 288, + 196 + ], + "score": 1.0, + "content": "tion for Remarks 4 and 5 is in Appendix B.3.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 73, + 339, + 196 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 212, + 302, + 226 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 302, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 302, + 229 + ], + "score": 1.0, + "content": "5 DmSGD with Exponential Graphs", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "image", + "bbox": [ + 347, + 79, + 502, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 347, + 79, + 502, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 347, + 79, + 502, + 201 + ], + "spans": [ + { + "bbox": [ + 347, + 79, + 502, + 201 + ], + "score": 0.97, + "type": "image", + "image_path": "89129067f685321fb71b3eef9cea4444a11c7818b525fdcfb5d21abc483690c2.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 347, + 79, + 502, + 92.55555555555556 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 347, + 92.55555555555556, + 502, + 106.11111111111111 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 347, + 106.11111111111111, + 502, + 119.66666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 347, + 119.66666666666667, + 502, + 133.22222222222223 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 347, + 133.22222222222223, + 502, + 146.77777777777777 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 347, + 146.77777777777777, + 502, + 160.33333333333331 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 347, + 160.33333333333331, + 502, + 173.88888888888886 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 347, + 173.88888888888886, + 502, + 187.4444444444444 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 347, + 187.4444444444444, + 502, + 200.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 204, + 504, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 344, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Figure 4: Illustration of how consensus", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 343, + 214, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 343, + 214, + 505, + 225 + ], + "score": 1.0, + "content": "residues decay with iterations for various", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 343, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 343, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "graphs. O.E. and S.E. denote one-peer and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 344, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 344, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "static exponential graphs, and R.M. denotes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 344, + 244, + 454, + 254 + ], + "spans": [ + { + "bbox": [ + 344, + 244, + 454, + 254 + ], + "score": 1.0, + "content": "bipartite random match graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 336, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 337, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 337, + 249 + ], + "score": 1.0, + "content": "With the derived property in Sec. 3 and 4, this section", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 247, + 337, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 337, + 260 + ], + "score": 1.0, + "content": "will examine the convergence of DmSGD with static and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 260, + 223, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 223, + 271 + ], + "score": 1.0, + "content": "one-peer exponential graphs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 236, + 337, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "DmSGD with static exponential graph. Based on Proposition 1, we can achieve the convergence", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "rate and transient iterations, by following analysis in [64], of DmSGD with static exponential graph.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 274, + 505, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 103, + 306, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 103, + 306, + 350, + 329 + ], + "score": 1.0, + "content": "Corollary 1 Under Assumptions A.1–A.4, if γ = n(1−β)3√ ,", + "type": "text" + }, + { + "bbox": [ + 346, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "DmSGD (Algorithm 1) will converge at", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 103, + 306, + 506, + 329 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 334, + 482, + 367 + ], + "lines": [ + { + "bbox": [ + 113, + 334, + 482, + 367 + ], + "spans": [ + { + "bbox": [ + 113, + 334, + 482, + 367 + ], + "score": 0.93, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n \\log _ { 2 } ( n ) ( 1 - \\beta ) \\sigma ^ { 2 } } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\log _ { 2 } ^ { 2 } ( n ) } { T } \\right)", + "type": "interline_equation", + "image_path": "cec45730fb2c9210060c288bb0c5b5d3b35dbff42ddaa4c2fbd749f3e6f98735.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 113, + 334, + 482, + 345.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 113, + 345.0, + 482, + 356.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 113, + 356.0, + 482, + 367.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "Furthermore, the transient iteration complexity of DmSGD over static exponential graph is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 384, + 507, + 398 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 166, + 397 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 384, + 313, + 398 + ], + "score": 1.0, + "content": "for data-homogeneous scenario and", + "type": "text" + }, + { + "bbox": [ + 313, + 384, + 372, + 397 + ], + "score": 0.93, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 384, + 507, + 398 + ], + "score": 1.0, + "content": "for data-heterogeneous scenario.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 371, + 507, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "DmSGD with one-peer exponential graph. With each realization being sparser than its static", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 417, + 507, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 507, + 430 + ], + "score": 1.0, + "content": "counterpart, one-peer exponential graph is believed to converge slower. However, the periodic exact-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 428, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 507, + 441 + ], + "score": 1.0, + "content": "averaging property can help DmSGD achieve the same convergence rate as its static counterpart.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 452 + ], + "score": 1.0, + "content": "Note that DmSGD with one-peer exponential graph is an one-loop algorithm, see Algorithm 1. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 449, + 386, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 386, + 463 + ], + "score": 1.0, + "content": "DmSGD updates start immediately after sampling one weight matrix.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 406, + 507, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 506, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 205, + 485 + ], + "score": 1.0, + "content": "Theorem 1 We assume", + "type": "text" + }, + { + "bbox": [ + 206, + 471, + 259, + 484 + ], + "score": 0.93, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 470, + 506, + 485 + ], + "score": 1.0, + "content": "is a positive integer, and the time-varying weight matrix is√", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 483, + 502, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 483, + 442, + 506 + ], + "score": 1.0, + "content": "generated by (7) over one-peer exponential graphs. Under Assumptions A.1–A.4 and", + "type": "text" + }, + { + "bbox": [ + 442, + 484, + 502, + 504 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\gamma = \\frac { \\sqrt { n ( 1 - \\beta ) ^ { 3 } } } { \\sqrt { T } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 500, + 393, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 189, + 514 + ], + "score": 1.0, + "content": "DmSGD (Algorithm", + "type": "text" + }, + { + "bbox": [ + 189, + 502, + 195, + 511 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 500, + 393, + 514 + ], + "score": 1.0, + "content": ") will converge at (Proof is in Appendix D.1-D.3).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 104, + 470, + 506, + 514 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 518, + 470, + 553 + ], + "lines": [ + { + "bbox": [ + 140, + 518, + 470, + 553 + ], + "spans": [ + { + "bbox": [ + 140, + 518, + 470, + 553 + ], + "score": 0.94, + "content": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n ( 1 - \\beta ) \\sigma ^ { 2 } \\tau } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\tau ^ { 2 } } { T } \\right) .", + "type": "interline_equation", + "image_path": "9ecb1531fba5d4f7a8a84f38f08ecaaf5800ba181a8c6ae8d9d2c9d471ffb9aa.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 140, + 518, + 470, + 529.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 140, + 529.6666666666666, + 470, + 541.3333333333333 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 140, + 541.3333333333333, + 470, + 552.9999999999999 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 558, + 506, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "Furthermore, the transient iteration complexity of DmSGD over one-peer exponential graph is", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 568, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 569, + 166, + 582 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 568, + 313, + 584 + ], + "score": 1.0, + "content": "for data-homogeneous scenario and", + "type": "text" + }, + { + "bbox": [ + 313, + 569, + 372, + 582 + ], + "score": 0.92, + "content": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 568, + 507, + 584 + ], + "score": 1.0, + "content": "for data-heterogeneous scenario.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 557, + 507, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 324, + 604 + ], + "score": 1.0, + "content": "Remark 7 Comparing (11) with (10), and noting that", + "type": "text" + }, + { + "bbox": [ + 324, + 591, + 375, + 603 + ], + "score": 0.92, + "content": "\\tau = \\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 590, + 505, + 604 + ], + "score": 1.0, + "content": ", we conclude that DmSGD with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 603, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 614 + ], + "score": 1.0, + "content": "one-peer graphs converge exactly as fast as with the static counterpart in terms of the established", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 613, + 503, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 503, + 626 + ], + "score": 1.0, + "content": "rate bounds. In addition, both graphs endow DmSGD with the same transient iteration complexity.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 590, + 505, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "score": 1.0, + "content": "Remark 8 We can also achieve the convergence rate for decentralized SGD (i.e., DSGD without", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 383, + 658 + ], + "score": 1.0, + "content": "momentum acceleration) with one-peer exponential graph by setting", + "type": "text" + }, + { + "bbox": [ + 383, + 646, + 409, + 657 + ], + "score": 0.91, + "content": "\\beta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ". It is easy to verify that", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 104, + 655, + 480, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 480, + 669 + ], + "score": 1.0, + "content": "DSGD with one-peer graphs can also converge as fast as with the static exponential graph.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54, + "bbox_fs": [ + 104, + 633, + 506, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Remark 9 The convergence rate and transient iteration complexity of DSGD with general mixing", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "matrices sampling strategy are also studied in [25]. However, the results in reference [25] does", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "not cover the scenario with momentum acceleration. As we show in the proof details, it is highly", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 711, + 240, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 240, + 723 + ], + "score": 1.0, + "content": "non-trivial to handle momentum.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 57.5, + "bbox_fs": [ + 105, + 677, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "It is worth noting that the analysis for the above theorem is non-trivial. While it targets on the one-peer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "exponential graph, the analysis techniques can be extended to the general time-varying topologies.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "To our best knowledge, it establishes the first result for DSGD with momentum acceleration, over the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "time-varying topologies, and in the non-convex settings. Existing analysis either focuses on DSGD", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "without momentum [25], or DmSGD with static topologies [64]. In addition, the last two terms in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "(11), actually, can be further tightened by the spectral gap of one-peer exponential graphs. Since the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 138, + 465, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 465, + 151 + ], + "score": 1.0, + "content": "tightened terms are rather complicated, we leave them to the discussion in Appendix D.4.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "State-of-the-art balance between communication and convergence. Table 1 (and tables in Ap-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "pendix D.5) summarize the per-iteration communication time and transient iteration complexity for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 257, + 189 + ], + "score": 1.0, + "content": "all commonly-used topologies. When", + "type": "text" + }, + { + "bbox": [ + 257, + 178, + 264, + 186 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 177, + 380, + 189 + ], + "score": 1.0, + "content": "is sufficiently large, the term", + "type": "text" + }, + { + "bbox": [ + 380, + 176, + 413, + 188 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "can be ignored. In this", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "scenario, the exponential graphs (including both static and one-peer variants) achieve state-of-the-art", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 198, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 128, + 211 + ], + "score": 0.89, + "content": "\\tilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 198, + 263, + 213 + ], + "score": 1.0, + "content": "per-iteration communication and", + "type": "text" + }, + { + "bbox": [ + 263, + 198, + 289, + 212 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 198, + 407, + 213 + ], + "score": 1.0, + "content": "transient iterations, in which", + "type": "text" + }, + { + "bbox": [ + 407, + 198, + 426, + 212 + ], + "score": 0.91, + "content": "\\tilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 198, + 506, + 213 + ], + "score": 1.0, + "content": "hides all logarithm", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "factors. In Appendix D.5, we numerically validate that exponential graphs have smaller transient", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "iteration complexity than ring or grid graph as predicted in Table 1. The comparison between ex-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "ponential graph with random graphs [41, 6, 9, 10] (such as the Erdos-Renyi graph and geometric", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 244, + 297, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 297, + 255 + ], + "score": 1.0, + "content": "random graph) is discussed in Appendix A.3.3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 503, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "One-peer exponential graph is recommended for decentralized deep training. It is because one-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "peer exponential graph endows DmSGD with the same convergence rate as its static counterpart, but", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 336, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 336, + 294 + ], + "score": 1.0, + "content": "incurs strictly less communication overhead per iteration.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 304, + 191, + 318 + ], + "lines": [ + { + "bbox": [ + 104, + 302, + 193, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 193, + 321 + ], + "score": 1.0, + "content": "6 Experiments", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "This section will validate our theoretical results by extensive deep learning experiments. First, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "evaluate how DmSGD with exponential graphs perform against other commonly-used graphs with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "varying network size. Second, we examine whether one-peer exponential graphs achieve the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "score": 1.0, + "content": "convergence rate and accuracy as its static counterpart across different tasks, models, and algorithms.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "Metrics. Training time and validation accuracy are two critical metrics to examine the effectiveness", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "of a distributed training algorithm in deep learning. These two metrics are typically evaluated after", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "the algorithm completes a fixed number of epochs (say, 90 epochs). Training time can reflect the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "score": 1.0, + "content": "communication efficiency while accuracy, though might not be precise, can roughly measure the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 418, + 502, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 502, + 430 + ], + "score": 1.0, + "content": "convergence rate (or iteration complexity). These two metrics are used in most of our experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 107, + 436, + 155, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 158, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 158, + 451 + ], + "score": 1.0, + "content": "6.1 Setup", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "We implement all decentralized algorithms with PyTorch [46] 1.8.0 using NCCL 2.8.3 (CUDA 10.1)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "as the communication backend. For parallel SGD, we used PyTorch’s native Distributed Data Parallel", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "(DDP) module. For the implementation of decentralized methods, we utilize BlueFog [63], which is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "a high-performance decentralized deep training framework, to facilitate the topology organization,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "weight matrix generation, and efficient partial averaging. We also follow DDP’s design to enable", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 517 + ], + "score": 1.0, + "content": "computation and communication overlap. Each server contains 8 V100 GPUs in our cluster and is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 517, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 528 + ], + "score": 1.0, + "content": "treated as one node. The inter-node network fabrics are 25 Gbps TCP as default, which is a common", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 526, + 253, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 253, + 540 + ], + "score": 1.0, + "content": "distributed training platform setting.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 553, + 390, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 392, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 392, + 569 + ], + "score": 1.0, + "content": "6.2 Exponential graphs enable efficient and high-quality training", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 569, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "In this subsection we evaluate how DmSGD with exponential graphs perform against other commonly-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 580, + 308, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 308, + 591 + ], + "score": 1.0, + "content": "used topologies in the task of image classification.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "Implementation. We conduct a series of image classification experiments with the ImageNet-1K", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "[16], which consists of 1,281,167 training images and 50,000 validation images in 1000 classes. We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "train classification models with different topologies and numbers of nodes to verify our theoretical", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "score": 1.0, + "content": "findings. The training protocol in [21] is used. In details, we train total 90 epochs. The learning", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "rate is warmed up in the first 5 epochs and is decayed by a factor of 10 at 30, 60 and 80-th epoch.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "The momentum SGD optimizer is used with linear learning rate scaling by default. Experiments are", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "trained in the mixed precision using Pytorch native amp module. We implement DmSGD with all", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "graphs listed in Table 1. The details of each graph is described in Appendix E. For each graph, we test", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 683, + 500, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 500, + 696 + ], + "score": 1.0, + "content": "the training time and validation accuracy for DmSGD with GPU numbers ranging from 32 to 256.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "Experiment results. The comparison between different graphs (with varying size) in top-1 validation", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 710, + 453, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 453, + 724 + ], + "score": 1.0, + "content": "accuracy and training time after 90 epochs is listed in Table 2. Major observations are:", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "It is worth noting that the analysis for the above theorem is non-trivial. While it targets on the one-peer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "exponential graph, the analysis techniques can be extended to the general time-varying topologies.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "To our best knowledge, it establishes the first result for DSGD with momentum acceleration, over the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "time-varying topologies, and in the non-convex settings. Existing analysis either focuses on DSGD", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "without momentum [25], or DmSGD with static topologies [64]. In addition, the last two terms in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "(11), actually, can be further tightened by the spectral gap of one-peer exponential graphs. Since the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 138, + 465, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 465, + 151 + ], + "score": 1.0, + "content": "tightened terms are rather complicated, we leave them to the discussion in Appendix D.4.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 72, + 506, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "State-of-the-art balance between communication and convergence. Table 1 (and tables in Ap-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "pendix D.5) summarize the per-iteration communication time and transient iteration complexity for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 257, + 189 + ], + "score": 1.0, + "content": "all commonly-used topologies. When", + "type": "text" + }, + { + "bbox": [ + 257, + 178, + 264, + 186 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 177, + 380, + 189 + ], + "score": 1.0, + "content": "is sufficiently large, the term", + "type": "text" + }, + { + "bbox": [ + 380, + 176, + 413, + 188 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "can be ignored. In this", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "scenario, the exponential graphs (including both static and one-peer variants) achieve state-of-the-art", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 198, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 128, + 211 + ], + "score": 0.89, + "content": "\\tilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 198, + 263, + 213 + ], + "score": 1.0, + "content": "per-iteration communication and", + "type": "text" + }, + { + "bbox": [ + 263, + 198, + 289, + 212 + ], + "score": 0.93, + "content": "\\tilde { \\Omega } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 198, + 407, + 213 + ], + "score": 1.0, + "content": "transient iterations, in which", + "type": "text" + }, + { + "bbox": [ + 407, + 198, + 426, + 212 + ], + "score": 0.91, + "content": "\\tilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 198, + 506, + 213 + ], + "score": 1.0, + "content": "hides all logarithm", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "factors. In Appendix D.5, we numerically validate that exponential graphs have smaller transient", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "iteration complexity than ring or grid graph as predicted in Table 1. The comparison between ex-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "ponential graph with random graphs [41, 6, 9, 10] (such as the Erdos-Renyi graph and geometric", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 244, + 297, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 297, + 255 + ], + "score": 1.0, + "content": "random graph) is discussed in Appendix A.3.3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 153, + 506, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 503, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "One-peer exponential graph is recommended for decentralized deep training. It is because one-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "peer exponential graph endows DmSGD with the same convergence rate as its static counterpart, but", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 336, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 336, + 294 + ], + "score": 1.0, + "content": "incurs strictly less communication overhead per iteration.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 259, + 505, + 294 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 304, + 191, + 318 + ], + "lines": [ + { + "bbox": [ + 104, + 302, + 193, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 193, + 321 + ], + "score": 1.0, + "content": "6 Experiments", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "This section will validate our theoretical results by extensive deep learning experiments. First, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "evaluate how DmSGD with exponential graphs perform against other commonly-used graphs with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "varying network size. Second, we examine whether one-peer exponential graphs achieve the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "score": 1.0, + "content": "convergence rate and accuracy as its static counterpart across different tasks, models, and algorithms.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 324, + 506, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "Metrics. Training time and validation accuracy are two critical metrics to examine the effectiveness", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "of a distributed training algorithm in deep learning. These two metrics are typically evaluated after", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "the algorithm completes a fixed number of epochs (say, 90 epochs). Training time can reflect the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "score": 1.0, + "content": "communication efficiency while accuracy, though might not be precise, can roughly measure the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 418, + 502, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 502, + 430 + ], + "score": 1.0, + "content": "convergence rate (or iteration complexity). These two metrics are used in most of our experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 374, + 505, + 430 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 436, + 155, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 158, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 158, + 451 + ], + "score": 1.0, + "content": "6.1 Setup", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "We implement all decentralized algorithms with PyTorch [46] 1.8.0 using NCCL 2.8.3 (CUDA 10.1)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "as the communication backend. For parallel SGD, we used PyTorch’s native Distributed Data Parallel", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "(DDP) module. For the implementation of decentralized methods, we utilize BlueFog [63], which is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "a high-performance decentralized deep training framework, to facilitate the topology organization,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "weight matrix generation, and efficient partial averaging. We also follow DDP’s design to enable", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 517 + ], + "score": 1.0, + "content": "computation and communication overlap. Each server contains 8 V100 GPUs in our cluster and is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 517, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 528 + ], + "score": 1.0, + "content": "treated as one node. The inter-node network fabrics are 25 Gbps TCP as default, which is a common", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 526, + 253, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 253, + 540 + ], + "score": 1.0, + "content": "distributed training platform setting.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 450, + 506, + 540 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 553, + 390, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 392, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 392, + 569 + ], + "score": 1.0, + "content": "6.2 Exponential graphs enable efficient and high-quality training", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 569, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "In this subsection we evaluate how DmSGD with exponential graphs perform against other commonly-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 580, + 308, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 308, + 591 + ], + "score": 1.0, + "content": "used topologies in the task of image classification.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 567, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "Implementation. We conduct a series of image classification experiments with the ImageNet-1K", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "[16], which consists of 1,281,167 training images and 50,000 validation images in 1000 classes. We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "train classification models with different topologies and numbers of nodes to verify our theoretical", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "score": 1.0, + "content": "findings. The training protocol in [21] is used. In details, we train total 90 epochs. The learning", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "rate is warmed up in the first 5 epochs and is decayed by a factor of 10 at 30, 60 and 80-th epoch.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "The momentum SGD optimizer is used with linear learning rate scaling by default. Experiments are", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "trained in the mixed precision using Pytorch native amp module. We implement DmSGD with all", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "graphs listed in Table 1. The details of each graph is described in Appendix E. For each graph, we test", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 683, + 500, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 500, + 696 + ], + "score": 1.0, + "content": "the training time and validation accuracy for DmSGD with GPU numbers ranging from 32 to 256.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 596, + 506, + 696 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "Experiment results. The comparison between different graphs (with varying size) in top-1 validation", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 710, + 453, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 453, + 724 + ], + "score": 1.0, + "content": "accuracy and training time after 90 epochs is listed in Table 2. Major observations are:", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 699, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 69, + 507, + 163 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 53, + 496, + 65 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 51, + 497, + 66 + ], + "spans": [ + { + "bbox": [ + 114, + 51, + 299, + 66 + ], + "score": 1.0, + "content": "Table 2: Comparison of top-1 validation accuracy", + "type": "text" + }, + { + "bbox": [ + 299, + 54, + 311, + 63 + ], + "score": 0.66, + "content": "\\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 51, + 497, + 66 + ], + "score": 1.0, + "content": "and training time (hours) with different topologies.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 69, + 507, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 69, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 69, + 507, + 163 + ], + "score": 0.976, + "html": "
NODES TOPOLOGY4(4x8 GPUs)8(8x8 GPUs)16(16x8 GPUs)32(32x8 GPUs)
ACC.TIMEACC.TIMEACC.TIMEACC.TIME
RING76.13 ±0.02311.676.07 ±0.0136.576.08 ±0.0263.375.58 ±0.0211.8
GRID76.08 ±0.00711.676.35 ±0.0376.775.88 ±0.0113.475.76 ±0.0222.0
BI-RAND.MATCH.75.96 ±0.03211.176.26 ±0.0275.776.07 ±0.0122.875.83 ±0.0291.5
RANDOM GRAPH75.97 ±0.02811.576.01 ±0.0337.176.18 ±0.0086.776.24 ±0.0184.7
STATIC EXP.76.21 ±0.02811.676.32 ±0.0376.976.30 ±0.0074.176.28 ±0.0202.5
ONE-PEER EXP.76.28 ±0.06311.176.47 ±0.0355.776.42 ±0.0302.876.30 ±0.0621.5
", + "type": "table", + "image_path": "a92a210f09849421930f1937dfdf8c43b2002eb9695b7c2d4ff974e67878db6f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 69, + 507, + 100.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 100.33333333333333, + 507, + 131.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 131.66666666666666, + 507, + 163.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 170, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "[1] All graphs (except the random graph) endows DmSGD with training time linear speedup. Among", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "them, bipartite random matching and one-peer exponential graphs achieve the best linear speedup due", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "to their efficient per-iteration communication. However, the accuracy of the matching graph cannot", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "match one-peer exponential graph. The random graph fails to achieve linear speedup because of its", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 214, + 299, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 299, + 226 + ], + "score": 1.0, + "content": "extremely expensive communication overheads.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 149, + 238 + ], + "score": 1.0, + "content": "[2] In the", + "type": "text" + }, + { + "bbox": [ + 149, + 226, + 178, + 236 + ], + "score": 0.9, + "content": "3 2 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 225, + 507, + 238 + ], + "score": 1.0, + "content": "GPUs scenario, the training time to finish all 90 epochs can be sorted as follows:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 144, + 248 + ], + "score": 1.0, + "content": "one-peer", + "type": "text" + }, + { + "bbox": [ + 144, + 237, + 154, + 246 + ], + "score": 0.63, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 236, + 217, + 248 + ], + "score": 1.0, + "content": "Bi-RandMatch", + "type": "text" + }, + { + "bbox": [ + 218, + 237, + 291, + 248 + ], + "score": 0.82, + "content": "< \\mathrm { R i n g } < \\mathrm { G r i d } <", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 236, + 365, + 248 + ], + "score": 1.0, + "content": "static exponential", + "type": "text" + }, + { + "bbox": [ + 365, + 237, + 375, + 246 + ], + "score": 0.81, + "content": "<", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "random graph, which coincides", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 247, + 346, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 346, + 259 + ], + "score": 1.0, + "content": "with the per-iteration communication time listed in Table 1.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 149, + 271 + ], + "score": 1.0, + "content": "[3] In the", + "type": "text" + }, + { + "bbox": [ + 149, + 259, + 178, + 270 + ], + "score": 0.9, + "content": "3 2 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "GPUs scenario, the training accuracy achieved by each graph after 90 epochs is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 269, + 502, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 237, + 283 + ], + "score": 1.0, + "content": "sorted as follows: random graph", + "type": "text" + }, + { + "bbox": [ + 237, + 271, + 248, + 280 + ], + "score": 0.77, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 269, + 320, + 283 + ], + "score": 1.0, + "content": "static exponential", + "type": "text" + }, + { + "bbox": [ + 320, + 271, + 331, + 280 + ], + "score": 0.74, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 269, + 367, + 283 + ], + "score": 1.0, + "content": "one-peer", + "type": "text" + }, + { + "bbox": [ + 368, + 271, + 378, + 280 + ], + "score": 0.8, + "content": ">", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 269, + 439, + 283 + ], + "score": 1.0, + "content": "Bi-RandMatch", + "type": "text" + }, + { + "bbox": [ + 440, + 270, + 502, + 281 + ], + "score": 0.37, + "content": "> \\mathrm { G r i d } > \\mathrm { R i n g }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "which coincides with the transient iteration complexity listed in Table 1. Note that the random graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "is rather dense (see the detail in Appendix A.3.1) so it has good accuracy but consumes significant", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 217, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 217, + 315 + ], + "score": 1.0, + "content": "wall-clock time in training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 323, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "With the second and third observations, we can find exponential graphs (especially the one-peer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "exponential graph) can enable both fast and high-quality training performance. We also examined the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 435, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 272, + 357 + ], + "score": 1.0, + "content": "performance of exponential graphs when", + "type": "text" + }, + { + "bbox": [ + 272, + 347, + 279, + 355 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 345, + 435, + 357 + ], + "score": 1.0, + "content": "is not a power of 2, see Appendix E.2.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 106, + 369, + 371, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 373, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 373, + 384 + ], + "score": 1.0, + "content": "6.3 One-peer exponential graph v.s. static exponential graph", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "In this subsection we will focus on the two exponential graphs studied in this paper. In particular, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "will validate that one-peer exponential graph endows DmSGD with the same convergence rate as its", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 404, + 501, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 501, + 418 + ], + "score": 1.0, + "content": "static counterpart (i.e., the conclusion in Remark 7) across different tasks, models, and algorithms.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Comparison across models and algorithms. Now we compare one-peer and static exponential", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "graphs with different neural network architectures and algorithms. The task is image classification", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "and the setting is the same as in Sec. 6.2. We test both graphs for ResNet [22], MobileNetv2 [50] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "EfficientNet [56], which are widely-used models in industry. In addition to the DmSGD algorithm", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(Algorithm 1) studied in this paper, we also examine how exponential graphs perform with other", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 475, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 505, + 490 + ], + "score": 1.0, + "content": "commonly-used decentralized momentum method: the vanilla DmSGD [3] which does not exchange", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "momentum between neighbors, and QG-DmSGD [32] which adds a quasi-global momentum to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 438, + 511 + ], + "score": 1.0, + "content": "relieve the influence of data heterogeneity. We do not examine DecentLaM [67] and", + "type": "text" + }, + { + "bbox": [ + 438, + 497, + 451, + 509 + ], + "score": 0.85, + "content": "\\mathrm { D ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "[57] because", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "both methods require symmetric weight matrix during the training process which exponential graphs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "cannot provide. We also list the performance of parallel SGD using global averaging as one baseline.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 238, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 239, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 239, + 549 + ], + "score": 1.0, + "content": "Table 3 lists the top-1 valida-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 238, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 238, + 559 + ], + "score": 1.0, + "content": "tion accuracy comparison across", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 238, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 238, + 570 + ], + "score": 1.0, + "content": "all models and algorithms. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 237, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 237, + 579 + ], + "score": 1.0, + "content": "all scenarios, it is observed that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 238, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 238, + 592 + ], + "score": 1.0, + "content": "both graphs can lead to roughly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 591, + 239, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 239, + 603 + ], + "score": 1.0, + "content": "the same accuracy across mod-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 600, + 239, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 239, + 615 + ], + "score": 1.0, + "content": "els and algorithms. The accuracy", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 239, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 239, + 624 + ], + "score": 1.0, + "content": "difference (DIFF) is marginal.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 238, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 238, + 636 + ], + "score": 1.0, + "content": "We also depict the convergence", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 635, + 239, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 239, + 646 + ], + "score": 1.0, + "content": "curves in training loss and ac-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 645, + 238, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 238, + 657 + ], + "score": 1.0, + "content": "curacy for DmSGD with both", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 656, + 238, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 238, + 668 + ], + "score": 1.0, + "content": "graphs in Fig. 5. It shows both", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 40.5 + }, + { + "type": "image", + "bbox": [ + 245, + 549, + 503, + 638 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 245, + 549, + 503, + 638 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 245, + 549, + 503, + 638 + ], + "spans": [ + { + "bbox": [ + 245, + 549, + 503, + 638 + ], + "score": 0.97, + "type": "image", + "image_path": "52f474ec7692e039999038d22622d0f50930b7507149649451ac52bf6583104b.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 245, + 549, + 503, + 578.6666666666666 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 245, + 578.6666666666666, + 503, + 608.3333333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 245, + 608.3333333333333, + 503, + 637.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 244, + 639, + 505, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 244, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 244, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "Figure 5: Convergence curves on the ImageNet (ResNet-50) in terms of", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 245, + 649, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 245, + 649, + 458, + 660 + ], + "score": 1.0, + "content": "training loss and validation top-1 accuracy . Network size is", + "type": "text" + }, + { + "bbox": [ + 459, + 649, + 480, + 658 + ], + "score": 0.89, + "content": "8 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 649, + 506, + 660 + ], + "score": 1.0, + "content": "GPUs.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + } + ], + "index": 46.75 + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 448, + 680 + ], + "score": 1.0, + "content": "curves evolve closely to each other, indicating that one-peer exponential graph enables", + "type": "text" + }, + { + "bbox": [ + 448, + 667, + 484, + 677 + ], + "score": 0.31, + "content": "\\mathrm { D m } \\mathrm { S G D }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "the same convergence rate as its static counterpart. This is consistent with Theorem 1 and Remark", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "7. Since one-peer is more communication-efficient than static exponential graph (see Table 2), it is", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 104, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "recommended to utilize one-peer exponential graph in decentralized deep training. In addition, we", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "observe that decentralized methods, while utilizing partial-averaging during training process, has no", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 53 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 69, + 507, + 163 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 53, + 496, + 65 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 51, + 497, + 66 + ], + "spans": [ + { + "bbox": [ + 114, + 51, + 299, + 66 + ], + "score": 1.0, + "content": "Table 2: Comparison of top-1 validation accuracy", + "type": "text" + }, + { + "bbox": [ + 299, + 54, + 311, + 63 + ], + "score": 0.66, + "content": "\\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 51, + 497, + 66 + ], + "score": 1.0, + "content": "and training time (hours) with different topologies.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 69, + 507, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 69, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 69, + 507, + 163 + ], + "score": 0.976, + "html": "
NODES TOPOLOGY4(4x8 GPUs)8(8x8 GPUs)16(16x8 GPUs)32(32x8 GPUs)
ACC.TIMEACC.TIMEACC.TIMEACC.TIME
RING76.13 ±0.02311.676.07 ±0.0136.576.08 ±0.0263.375.58 ±0.0211.8
GRID76.08 ±0.00711.676.35 ±0.0376.775.88 ±0.0113.475.76 ±0.0222.0
BI-RAND.MATCH.75.96 ±0.03211.176.26 ±0.0275.776.07 ±0.0122.875.83 ±0.0291.5
RANDOM GRAPH75.97 ±0.02811.576.01 ±0.0337.176.18 ±0.0086.776.24 ±0.0184.7
STATIC EXP.76.21 ±0.02811.676.32 ±0.0376.976.30 ±0.0074.176.28 ±0.0202.5
ONE-PEER EXP.76.28 ±0.06311.176.47 ±0.0355.776.42 ±0.0302.876.30 ±0.0621.5
", + "type": "table", + "image_path": "a92a210f09849421930f1937dfdf8c43b2002eb9695b7c2d4ff974e67878db6f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 69, + 507, + 100.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 100.33333333333333, + 507, + 131.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 131.66666666666666, + 507, + 163.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 170, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "[1] All graphs (except the random graph) endows DmSGD with training time linear speedup. Among", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "them, bipartite random matching and one-peer exponential graphs achieve the best linear speedup due", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "to their efficient per-iteration communication. However, the accuracy of the matching graph cannot", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "match one-peer exponential graph. The random graph fails to achieve linear speedup because of its", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 214, + 299, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 299, + 226 + ], + "score": 1.0, + "content": "extremely expensive communication overheads.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 169, + 506, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 149, + 238 + ], + "score": 1.0, + "content": "[2] In the", + "type": "text" + }, + { + "bbox": [ + 149, + 226, + 178, + 236 + ], + "score": 0.9, + "content": "3 2 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 225, + 507, + 238 + ], + "score": 1.0, + "content": "GPUs scenario, the training time to finish all 90 epochs can be sorted as follows:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 144, + 248 + ], + "score": 1.0, + "content": "one-peer", + "type": "text" + }, + { + "bbox": [ + 144, + 237, + 154, + 246 + ], + "score": 0.63, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 236, + 217, + 248 + ], + "score": 1.0, + "content": "Bi-RandMatch", + "type": "text" + }, + { + "bbox": [ + 218, + 237, + 291, + 248 + ], + "score": 0.82, + "content": "< \\mathrm { R i n g } < \\mathrm { G r i d } <", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 236, + 365, + 248 + ], + "score": 1.0, + "content": "static exponential", + "type": "text" + }, + { + "bbox": [ + 365, + 237, + 375, + 246 + ], + "score": 0.81, + "content": "<", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "random graph, which coincides", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 247, + 346, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 346, + 259 + ], + "score": 1.0, + "content": "with the per-iteration communication time listed in Table 1.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 225, + 507, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 149, + 271 + ], + "score": 1.0, + "content": "[3] In the", + "type": "text" + }, + { + "bbox": [ + 149, + 259, + 178, + 270 + ], + "score": 0.9, + "content": "3 2 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "GPUs scenario, the training accuracy achieved by each graph after 90 epochs is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 269, + 502, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 237, + 283 + ], + "score": 1.0, + "content": "sorted as follows: random graph", + "type": "text" + }, + { + "bbox": [ + 237, + 271, + 248, + 280 + ], + "score": 0.77, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 269, + 320, + 283 + ], + "score": 1.0, + "content": "static exponential", + "type": "text" + }, + { + "bbox": [ + 320, + 271, + 331, + 280 + ], + "score": 0.74, + "content": "\\approx", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 269, + 367, + 283 + ], + "score": 1.0, + "content": "one-peer", + "type": "text" + }, + { + "bbox": [ + 368, + 271, + 378, + 280 + ], + "score": 0.8, + "content": ">", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 269, + 439, + 283 + ], + "score": 1.0, + "content": "Bi-RandMatch", + "type": "text" + }, + { + "bbox": [ + 440, + 270, + 502, + 281 + ], + "score": 0.37, + "content": "> \\mathrm { G r i d } > \\mathrm { R i n g }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "which coincides with the transient iteration complexity listed in Table 1. Note that the random graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "is rather dense (see the detail in Appendix A.3.1) so it has good accuracy but consumes significant", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 217, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 217, + 315 + ], + "score": 1.0, + "content": "wall-clock time in training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 258, + 506, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 323, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "With the second and third observations, we can find exponential graphs (especially the one-peer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "exponential graph) can enable both fast and high-quality training performance. We also examined the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 435, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 272, + 357 + ], + "score": 1.0, + "content": "performance of exponential graphs when", + "type": "text" + }, + { + "bbox": [ + 272, + 347, + 279, + 355 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 345, + 435, + 357 + ], + "score": 1.0, + "content": "is not a power of 2, see Appendix E.2.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 321, + 506, + 357 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 369, + 371, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 373, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 373, + 384 + ], + "score": 1.0, + "content": "6.3 One-peer exponential graph v.s. static exponential graph", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "In this subsection we will focus on the two exponential graphs studied in this paper. In particular, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "will validate that one-peer exponential graph endows DmSGD with the same convergence rate as its", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 404, + 501, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 501, + 418 + ], + "score": 1.0, + "content": "static counterpart (i.e., the conclusion in Remark 7) across different tasks, models, and algorithms.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 383, + 505, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Comparison across models and algorithms. Now we compare one-peer and static exponential", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "graphs with different neural network architectures and algorithms. The task is image classification", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "and the setting is the same as in Sec. 6.2. We test both graphs for ResNet [22], MobileNetv2 [50] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "EfficientNet [56], which are widely-used models in industry. In addition to the DmSGD algorithm", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(Algorithm 1) studied in this paper, we also examine how exponential graphs perform with other", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 475, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 505, + 490 + ], + "score": 1.0, + "content": "commonly-used decentralized momentum method: the vanilla DmSGD [3] which does not exchange", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "momentum between neighbors, and QG-DmSGD [32] which adds a quasi-global momentum to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 438, + 511 + ], + "score": 1.0, + "content": "relieve the influence of data heterogeneity. We do not examine DecentLaM [67] and", + "type": "text" + }, + { + "bbox": [ + 438, + 497, + 451, + 509 + ], + "score": 0.85, + "content": "\\mathrm { D ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "[57] because", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "both methods require symmetric weight matrix during the training process which exponential graphs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "cannot provide. We also list the performance of parallel SGD using global averaging as one baseline.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 421, + 506, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 238, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 239, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 239, + 549 + ], + "score": 1.0, + "content": "Table 3 lists the top-1 valida-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 238, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 238, + 559 + ], + "score": 1.0, + "content": "tion accuracy comparison across", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 238, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 238, + 570 + ], + "score": 1.0, + "content": "all models and algorithms. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 237, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 237, + 579 + ], + "score": 1.0, + "content": "all scenarios, it is observed that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 238, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 238, + 592 + ], + "score": 1.0, + "content": "both graphs can lead to roughly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 591, + 239, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 239, + 603 + ], + "score": 1.0, + "content": "the same accuracy across mod-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 600, + 239, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 239, + 615 + ], + "score": 1.0, + "content": "els and algorithms. The accuracy", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 239, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 239, + 624 + ], + "score": 1.0, + "content": "difference (DIFF) is marginal.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 238, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 238, + 636 + ], + "score": 1.0, + "content": "We also depict the convergence", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 635, + 239, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 239, + 646 + ], + "score": 1.0, + "content": "curves in training loss and ac-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 645, + 238, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 238, + 657 + ], + "score": 1.0, + "content": "curacy for DmSGD with both", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 656, + 238, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 238, + 668 + ], + "score": 1.0, + "content": "graphs in Fig. 5. It shows both", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 534, + 239, + 668 + ] + }, + { + "type": "image", + "bbox": [ + 245, + 549, + 503, + 638 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 245, + 549, + 503, + 638 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 245, + 549, + 503, + 638 + ], + "spans": [ + { + "bbox": [ + 245, + 549, + 503, + 638 + ], + "score": 0.97, + "type": "image", + "image_path": "52f474ec7692e039999038d22622d0f50930b7507149649451ac52bf6583104b.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 245, + 549, + 503, + 578.6666666666666 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 245, + 578.6666666666666, + 503, + 608.3333333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 245, + 608.3333333333333, + 503, + 637.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 244, + 639, + 505, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 244, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 244, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "Figure 5: Convergence curves on the ImageNet (ResNet-50) in terms of", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 245, + 649, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 245, + 649, + 458, + 660 + ], + "score": 1.0, + "content": "training loss and validation top-1 accuracy . Network size is", + "type": "text" + }, + { + "bbox": [ + 459, + 649, + 480, + 658 + ], + "score": 0.89, + "content": "8 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 649, + 506, + 660 + ], + "score": 1.0, + "content": "GPUs.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + } + ], + "index": 46.75 + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 448, + 680 + ], + "score": 1.0, + "content": "curves evolve closely to each other, indicating that one-peer exponential graph enables", + "type": "text" + }, + { + "bbox": [ + 448, + 667, + 484, + 677 + ], + "score": 0.31, + "content": "\\mathrm { D m } \\mathrm { S G D }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "the same convergence rate as its static counterpart. This is consistent with Theorem 1 and Remark", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "7. Since one-peer is more communication-efficient than static exponential graph (see Table 2), it is", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 104, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "recommended to utilize one-peer exponential graph in decentralized deep training. In addition, we", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "observe that decentralized methods, while utilizing partial-averaging during training process, has no", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "significant accuracy degradation compared parallel SGD. Decentralized SGD can even be superior", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 154, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 154, + 198 + ], + "score": 1.0, + "content": "sometimes.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 53, + "bbox_fs": [ + 104, + 667, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 88, + 497, + 162 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 64, + 503, + 86 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 63, + 505, + 76 + ], + "spans": [ + { + "bbox": [ + 105, + 63, + 505, + 76 + ], + "score": 1.0, + "content": "Table 3: Top-1 validation accuracy and wall-clock time (in hours) comparison with different models and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 74, + 414, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 74, + 414, + 86 + ], + "score": 1.0, + "content": "algorithms on ImageNet dataset over static/one-peer exponential graphs (8x8 GPUs).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 112, + 88, + 497, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 88, + 497, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 88, + 497, + 162 + ], + "score": 0.981, + "html": "
MODEL TOPOLOGYREsNET-50MOBILENET-V2EFFICIENTNET
STATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD76.21 (7.0)70.12 (5.8)77.63 (9.0)
VANILLA DMSGD76.14 (6.6)76.06 (5.5)69.98 (5.6)69.81 (4.6)77.62 (8.4)77.48 (6.9)
DMSGD76.50 (6.9)76.52(5.7)69.62 (5.7)69.98 (4.8)77.44 (8.7)77.51 (7.1)
QG-DMSGD76.43 (6.6)76.35(5.6)69.83 (5.6)69.81 (4.6)77.60 (8.4)77.72 (6.9)
", + "type": "table", + "image_path": "d2f76766d684f033377afdcf0e6ce9f12e42200a31d6c4556528efb3bce2b7af.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 112, + 88, + 497, + 112.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 112, + 112.66666666666667, + 497, + 137.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 112, + 137.33333333333334, + 497, + 162.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 108, + 174, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "significant accuracy degradation compared parallel SGD. Decentralized SGD can even be superior", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 154, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 154, + 198 + ], + "score": 1.0, + "content": "sometimes.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 507, + 215 + ], + "score": 1.0, + "content": "Comparison across different tasks. We next compare the aforementioned algorithms with one-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "peer and static exponential graphs in another well-known task: object detection. We will test the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "following widely-used models: Faster-RCNN [49] and RetinaNet [34] on popular PASCAL VOC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "[19] and COCO [35] datasets. We adopt the MMDetection [12] framework as the building blocks", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "and utilize ResNet-50 with FPN [33] as the backbone network. We choose mean Average Precision", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "(mAP) as the evaluation metric for both datesets. We used 8 GPUs (which are connected by the static", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 267, + 490, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 490, + 280 + ], + "score": 1.0, + "content": "or dynamic exponential topology) and set the total batch size as 64 in all detection experiments.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 504, + 295 + ], + "score": 1.0, + "content": "Table 4 compares the performance of decentralized training across different object detection models", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "and datasets. Similar to the above experiment, it is observed that both graphs enable decentralized", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "algorithms with almost the same performance in each scenario. This again illustrates the value of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "one-peer exponential graph in deep learning tasks - it endows decentralized deep training with both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 286, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 286, + 341 + ], + "score": 1.0, + "content": "fast training speed and satisfactory accuracy.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 107, + 363, + 504, + 446 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 132, + 352, + 474, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 133, + 351, + 475, + 364 + ], + "spans": [ + { + "bbox": [ + 133, + 351, + 475, + 364 + ], + "score": 1.0, + "content": "Table 4: Comparison of different methods and models on PASCAL VOC and COCO datasets.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 107, + 363, + 504, + 446 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 363, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 107, + 363, + 504, + 446 + ], + "score": 0.984, + "html": "
DATASET MODEL TOPOLOGYPASCAL VOCCoCo
RETINANETFASTER RCNNRETINANETFASTER RCNN
STATICONE-PEERSTATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD79.0-80.3=36.2=37.2=
VANILLA DMSGD79.079.180.780.536.336.137.337.2
DMSGD79.179.080.480.536.436.437.137.0
QG-DMSGD79.279.180.880.436.336.237.237.1
", + "type": "table", + "image_path": "89a07688685c93f809adbe8d72b504b6d3c52dcfccab3c956c97406711acd55e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 107, + 363, + 504, + 390.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 107, + 390.6666666666667, + 504, + 418.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 107, + 418.33333333333337, + 504, + 446.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 20.0 + }, + { + "type": "title", + "bbox": [ + 107, + 457, + 280, + 471 + ], + "lines": [ + { + "bbox": [ + 104, + 456, + 281, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 281, + 473 + ], + "score": 1.0, + "content": "7 Conclusion and Future Works", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 472, + 491 + ], + "score": 1.0, + "content": "In this paper, we establish the spectral gap of static exponential graph and prove that any", + "type": "text" + }, + { + "bbox": [ + 473, + 478, + 505, + 490 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 452, + 501 + ], + "score": 1.0, + "content": "consecutive one-peer exponential graphs can together achieve exact averaging when", + "type": "text" + }, + { + "bbox": [ + 452, + 491, + 460, + 499 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "is a power", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "of 2. With these results, we reveal that one-peer exponential graphs endow DmSGD with the same", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "convergence rate as their static counterpart. We also establish that exponential graphs achieve nearly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "minimum per-iteration communication time and transient iteration complexity simultaneously when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 535, + 114, + 542 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "is large. All conclusions are thoroughly examined with industrial-standard benchmarks. As the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "future work, we will investigate symmetric time-varying graphs that can perform as well as one-peer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 554, + 447, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 317, + 567 + ], + "score": 1.0, + "content": "exponential graph. Symmetric graphs are critical for", + "type": "text" + }, + { + "bbox": [ + 318, + 554, + 330, + 564 + ], + "score": 0.87, + "content": "\\mathrm { D } ^ { \\beth }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 554, + 447, + 567 + ], + "score": 1.0, + "content": "and DecentLaM algorithms.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 108, + 583, + 207, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 208, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 208, + 599 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "The authors are grateful to Dr. Sai Praneeth Karimireddy from EPFL for the helpful discussions on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 619, + 192, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 192, + 632 + ], + "score": 1.0, + "content": "the hypercube graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 163, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 165, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 165, + 663 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 111, + 669, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 110, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 110, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "[1] Sulaiman A Alghunaim and Kun Yuan. A unified and refined convergence analysis for non-convex", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 679, + 356, + 691 + ], + "spans": [ + { + "bbox": [ + 126, + 679, + 356, + 691 + ], + "score": 1.0, + "content": "decentralized learning. arXiv preprint arXiv:2110.09993, 2021.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 111, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 111, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "[2] Dan Alistarh, Demjan Grubic, Jerry Li, Ryota Tomioka, and Milan Vojnovic. Qsgd: Communication-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 125, + 700, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 125, + 700, + 505, + 714 + ], + "score": 1.0, + "content": "efficient sgd via gradient quantization and encoding. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 125, + 712, + 249, + 722 + ], + "spans": [ + { + "bbox": [ + 125, + 712, + 249, + 722 + ], + "score": 1.0, + "content": "Systems, pages 1709–1720, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 88, + 497, + 162 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 64, + 503, + 86 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 63, + 505, + 76 + ], + "spans": [ + { + "bbox": [ + 105, + 63, + 505, + 76 + ], + "score": 1.0, + "content": "Table 3: Top-1 validation accuracy and wall-clock time (in hours) comparison with different models and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 74, + 414, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 74, + 414, + 86 + ], + "score": 1.0, + "content": "algorithms on ImageNet dataset over static/one-peer exponential graphs (8x8 GPUs).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 112, + 88, + 497, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 88, + 497, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 88, + 497, + 162 + ], + "score": 0.981, + "html": "
MODEL TOPOLOGYREsNET-50MOBILENET-V2EFFICIENTNET
STATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD76.21 (7.0)70.12 (5.8)77.63 (9.0)
VANILLA DMSGD76.14 (6.6)76.06 (5.5)69.98 (5.6)69.81 (4.6)77.62 (8.4)77.48 (6.9)
DMSGD76.50 (6.9)76.52(5.7)69.62 (5.7)69.98 (4.8)77.44 (8.7)77.51 (7.1)
QG-DMSGD76.43 (6.6)76.35(5.6)69.83 (5.6)69.81 (4.6)77.60 (8.4)77.72 (6.9)
", + "type": "table", + "image_path": "d2f76766d684f033377afdcf0e6ce9f12e42200a31d6c4556528efb3bce2b7af.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 112, + 88, + 497, + 112.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 112, + 112.66666666666667, + 497, + 137.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 112, + 137.33333333333334, + 497, + 162.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 108, + 174, + 504, + 196 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 174, + 505, + 198 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 507, + 215 + ], + "score": 1.0, + "content": "Comparison across different tasks. We next compare the aforementioned algorithms with one-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "peer and static exponential graphs in another well-known task: object detection. We will test the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "following widely-used models: Faster-RCNN [49] and RetinaNet [34] on popular PASCAL VOC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "[19] and COCO [35] datasets. We adopt the MMDetection [12] framework as the building blocks", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "and utilize ResNet-50 with FPN [33] as the backbone network. We choose mean Average Precision", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "(mAP) as the evaluation metric for both datesets. We used 8 GPUs (which are connected by the static", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 267, + 490, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 490, + 280 + ], + "score": 1.0, + "content": "or dynamic exponential topology) and set the total batch size as 64 in all detection experiments.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 201, + 507, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 504, + 295 + ], + "score": 1.0, + "content": "Table 4 compares the performance of decentralized training across different object detection models", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "and datasets. Similar to the above experiment, it is observed that both graphs enable decentralized", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "algorithms with almost the same performance in each scenario. This again illustrates the value of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "one-peer exponential graph in deep learning tasks - it endows decentralized deep training with both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 286, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 286, + 341 + ], + "score": 1.0, + "content": "fast training speed and satisfactory accuracy.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 283, + 506, + 341 + ] + }, + { + "type": "table", + "bbox": [ + 107, + 363, + 504, + 446 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 132, + 352, + 474, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 133, + 351, + 475, + 364 + ], + "spans": [ + { + "bbox": [ + 133, + 351, + 475, + 364 + ], + "score": 1.0, + "content": "Table 4: Comparison of different methods and models on PASCAL VOC and COCO datasets.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 107, + 363, + 504, + 446 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 363, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 107, + 363, + 504, + 446 + ], + "score": 0.984, + "html": "
DATASET MODEL TOPOLOGYPASCAL VOCCoCo
RETINANETFASTER RCNNRETINANETFASTER RCNN
STATICONE-PEERSTATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD79.0-80.3=36.2=37.2=
VANILLA DMSGD79.079.180.780.536.336.137.337.2
DMSGD79.179.080.480.536.436.437.137.0
QG-DMSGD79.279.180.880.436.336.237.237.1
", + "type": "table", + "image_path": "89a07688685c93f809adbe8d72b504b6d3c52dcfccab3c956c97406711acd55e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 107, + 363, + 504, + 390.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 107, + 390.6666666666667, + 504, + 418.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 107, + 418.33333333333337, + 504, + 446.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 20.0 + }, + { + "type": "title", + "bbox": [ + 107, + 457, + 280, + 471 + ], + "lines": [ + { + "bbox": [ + 104, + 456, + 281, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 281, + 473 + ], + "score": 1.0, + "content": "7 Conclusion and Future Works", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 472, + 491 + ], + "score": 1.0, + "content": "In this paper, we establish the spectral gap of static exponential graph and prove that any", + "type": "text" + }, + { + "bbox": [ + 473, + 478, + 505, + 490 + ], + "score": 0.92, + "content": "\\log _ { 2 } ( n )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 452, + 501 + ], + "score": 1.0, + "content": "consecutive one-peer exponential graphs can together achieve exact averaging when", + "type": "text" + }, + { + "bbox": [ + 452, + 491, + 460, + 499 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "is a power", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "of 2. With these results, we reveal that one-peer exponential graphs endow DmSGD with the same", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "convergence rate as their static counterpart. We also establish that exponential graphs achieve nearly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "minimum per-iteration communication time and transient iteration complexity simultaneously when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 535, + 114, + 542 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "is large. All conclusions are thoroughly examined with industrial-standard benchmarks. As the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "future work, we will investigate symmetric time-varying graphs that can perform as well as one-peer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 554, + 447, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 317, + 567 + ], + "score": 1.0, + "content": "exponential graph. Symmetric graphs are critical for", + "type": "text" + }, + { + "bbox": [ + 318, + 554, + 330, + 564 + ], + "score": 0.87, + "content": "\\mathrm { D } ^ { \\beth }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 554, + 447, + 567 + ], + "score": 1.0, + "content": "and DecentLaM algorithms.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 477, + 506, + 567 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 583, + 207, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 208, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 208, + 599 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "The authors are grateful to Dr. Sai Praneeth Karimireddy from EPFL for the helpful discussions on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 619, + 192, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 192, + 632 + ], + "score": 1.0, + "content": "the hypercube graph.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 607, + 506, + 632 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 163, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 165, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 165, + 663 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "list", + "bbox": [ + 111, + 669, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 110, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 110, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "[1] Sulaiman A Alghunaim and Kun Yuan. A unified and refined convergence analysis for non-convex", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 679, + 356, + 691 + ], + "spans": [ + { + "bbox": [ + 126, + 679, + 356, + 691 + ], + "score": 1.0, + "content": "decentralized learning. arXiv preprint arXiv:2110.09993, 2021.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 111, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "[2] Dan Alistarh, Demjan Grubic, Jerry Li, Ryota Tomioka, and Milan Vojnovic. Qsgd: Communication-", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 700, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 125, + 700, + 505, + 714 + ], + "score": 1.0, + "content": "efficient sgd via gradient quantization and encoding. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 125, + 712, + 249, + 722 + ], + "spans": [ + { + "bbox": [ + 125, + 712, + 249, + 722 + ], + "score": 1.0, + "content": "Systems, pages 1709–1720, 2017.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 212, + 88, + 221, + 96 + ], + "spans": [ + { + "bbox": [ + 212, + 88, + 221, + 96 + ], + "score": 1.0, + "content": "ng.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_end_line": true + }, + { + "bbox": [ + 125, + 93, + 150, + 105 + ], + "spans": [ + { + "bbox": [ + 125, + 93, + 150, + 105 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 110, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "[4] Aditya Balu, Zhanhong Jiang, Sin Yong Tan, Chinmay Hedge, Young M Lee, and Soumik Sarkar. De-", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 124, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 124, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "centralized deep learning using momentum-accelerated consensus. arXiv preprint arXiv:2010.11166,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 125, + 151, + 137 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 151, + 137 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 135, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 109, + 135, + 506, + 150 + ], + "score": 1.0, + "content": "[5] Tal Ben-Nun and Torsten Hoefler. Demystifying parallel and distributed deep learning: An in-depth", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 123, + 145, + 401, + 160 + ], + "spans": [ + { + "bbox": [ + 123, + 145, + 401, + 160 + ], + "score": 1.0, + "content": "concurrency analysis. ACM Computing Surveys (CSUR), 52(4):1–43, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 110, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "[6] Itai Benjamini, Gady Kozma, and Nicholas Wormald. The mixing time of the giant component of a random", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 124, + 167, + 358, + 181 + ], + "spans": [ + { + "bbox": [ + 124, + 167, + 358, + 181 + ], + "score": 1.0, + "content": "graph. Random Structures & Algorithms, 45(3):383–407, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 179, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 110, + 179, + 506, + 192 + ], + "score": 1.0, + "content": "[7] Albert S Berahas, Raghu Bollapragada, Nitish Shirish Keskar, and Ermin Wei. Balancing communication", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 190, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 125, + 190, + 506, + 203 + ], + "score": 1.0, + "content": "and computation in distributed optimization. IEEE Transactions on Automatic Control, 64(8):3141–3155,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 199, + 150, + 211 + ], + "spans": [ + { + "bbox": [ + 126, + 199, + 150, + 211 + ], + "score": 1.0, + "content": "2018.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 108, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "[8] Jeremy Bernstein, Jiawei Zhao, Kamyar Azizzadenesheli, and Anima Anandkumar. signsgd with majority", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 222, + 453, + 233 + ], + "spans": [ + { + "bbox": [ + 126, + 222, + 453, + 233 + ], + "score": 1.0, + "content": "vote is communication efficient and fault tolerant. arXiv preprint arXiv:1810.05291, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 110, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "[9] Andrew Beveridge and Jeanmarie Youngblood. The best mixing time for random walks on trees. Graphs", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 124, + 242, + 290, + 254 + ], + "spans": [ + { + "bbox": [ + 124, + 242, + 290, + 254 + ], + "score": 1.0, + "content": "and Combinatorics, 32(6):2211–2239, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 255, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 266 + ], + "score": 1.0, + "content": "[10] Stephen P Boyd, Arpita Ghosh, Balaji Prabhakar, and Devavrat Shah. Mixing times for random walks on", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 264, + 388, + 277 + ], + "spans": [ + { + "bbox": [ + 124, + 264, + 388, + 277 + ], + "score": 1.0, + "content": "geometric random graphs. In ALENEX/ANALCO, pages 240–249, 2005.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 275, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 506, + 290 + ], + "score": 1.0, + "content": "[11] Jianshu Chen and Ali H Sayed. Diffusion adaptation strategies for distributed optimization and learning", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 286, + 421, + 297 + ], + "spans": [ + { + "bbox": [ + 126, + 286, + 421, + 297 + ], + "score": 1.0, + "content": "over networks. IEEE Transactions on Signal Processing, 60(8):4289–4305, 2012.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "[12] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng,", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 306, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 125, + 306, + 506, + 320 + ], + "score": 1.0, + "content": "Ziwei Liu, Jiarui Xu, et al. Mmdetection: Open mmlab detection toolbox and benchmark. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 317, + 220, + 330 + ], + "spans": [ + { + "bbox": [ + 126, + 317, + 220, + 330 + ], + "score": 1.0, + "content": "arXiv:1906.07155, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "[13] Tianyi Chen, Georgios Giannakis, Tao Sun, and Wotao Yin. LAG: Lazily aggregated gradient for", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 125, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "communication-efficient distributed learning. In Advances in Neural Information Processing Systems,", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 124, + 349, + 217, + 361 + ], + "spans": [ + { + "bbox": [ + 124, + 349, + 217, + 361 + ], + "score": 1.0, + "content": "pages 5050–5060, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 359, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 375 + ], + "score": 1.0, + "content": "[14] Yiming Chen, Kun Yuan, Yingya Zhang, Pan Pan, Yinghui Xu, and Wotao Yin. Accelerating gossip SGD", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 370, + 449, + 383 + ], + "spans": [ + { + "bbox": [ + 125, + 370, + 449, + 383 + ], + "score": 1.0, + "content": "with periodic global averaging. In International Conference on Machine Learning, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "score": 1.0, + "content": "[15] Yat-Tin Chow, Wei Shi, Tianyu Wu, and Wotao Yin. Expander graph and communication-efficient", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 125, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "decentralized optimization. In 2016 50th Asilomar Conference on Signals, Systems and Computers, pages", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 125, + 401, + 218, + 415 + ], + "spans": [ + { + "bbox": [ + 125, + 401, + 218, + 415 + ], + "score": 1.0, + "content": "1715–1720. IEEE, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "[16] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 126, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "image database. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 248–255.", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 434, + 169, + 446 + ], + "spans": [ + { + "bbox": [ + 126, + 434, + 169, + 446 + ], + "score": 1.0, + "content": "Ieee, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "[17] P. Di Lorenzo and G. Scutari. Next: In-network nonconvex optimization. IEEE Transactions on Signal", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 455, + 360, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 455, + 360, + 466 + ], + "score": 1.0, + "content": "and Information Processing over Networks, 2(2):120–136, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "score": 1.0, + "content": "[18] John C Duchi, Alekh Agarwal, and Martin J Wainwright. Dual averaging for distributed optimization:", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 126, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "Convergence analysis and network scaling. IEEE Transactions on Automatic control, 57(3):592–606, 2011.", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "[19] Mark Everingham, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 124, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "pascal visual object classes (voc) challenge. International journal of computer vision, 88(2):303–338,", + "type": "text", + "cross_page": true + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 508, + 150, + 520 + ], + "spans": [ + { + "bbox": [ + 126, + 508, + 150, + 520 + ], + "score": 1.0, + "content": "2010.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 521, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 532 + ], + "score": 1.0, + "content": "[20] Hongchang Gao and Heng Huang. Periodic stochastic gradient descent with momentum for decentralized", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 530, + 306, + 542 + ], + "spans": [ + { + "bbox": [ + 125, + 530, + 306, + 542 + ], + "score": 1.0, + "content": "training. arXiv preprint arXiv:2008.10435, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 107, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "[21] Priya Goyal, Piotr Dollár, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, Andrew", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 126, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet in 1 hour. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 44 + }, + { + "bbox": [ + 124, + 561, + 252, + 574 + ], + "spans": [ + { + "bbox": [ + 124, + 561, + 252, + 574 + ], + "score": 1.0, + "content": "preprint arXiv:1706.02677, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "[22] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition.", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 582, + 479, + 597 + ], + "spans": [ + { + "bbox": [ + 124, + 582, + 479, + 597 + ], + "score": 1.0, + "content": "In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "score": 1.0, + "content": "[23] Kun Huang and Shi Pu. Improving the transient times for distributed stochastic gradient methods. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 605, + 253, + 618 + ], + "spans": [ + { + "bbox": [ + 125, + 605, + 253, + 618 + ], + "score": 1.0, + "content": "preprint arXiv:2105.04851, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "[24] Anastasia Koloskova, Tao Lin, Sebastian U Stich, and Martin Jaggi. Decentralized deep learning with", + "type": "text", + "cross_page": true + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 627, + 502, + 639 + ], + "spans": [ + { + "bbox": [ + 126, + 627, + 502, + 639 + ], + "score": 1.0, + "content": "arbitrary communication compression. In International Conference on Learning Representations, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "[25] Anastasia Koloskova, Nicolas Loizou, Sadra Boreiri, Martin Jaggi, and Sebastian U Stich. A unified theory", + "type": "text", + "cross_page": true + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 124, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "of decentralized sgd with changing topology and local updates. In International Conference on Machine", + "type": "text", + "cross_page": true + } + ], + "index": 53 + }, + { + "bbox": [ + 126, + 658, + 262, + 671 + ], + "spans": [ + { + "bbox": [ + 126, + 658, + 262, + 671 + ], + "score": 1.0, + "content": "Learning (ICML), pages 1–12, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 54, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 107, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "[26] Anastasia Koloskova, Sebastian Stich, and Martin Jaggi. Decentralized stochastic optimization and gossip", + "type": "text", + "cross_page": true + } + ], + "index": 55, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 124, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "algorithms with compressed communication. In International Conference on Machine Learning, pages", + "type": "text", + "cross_page": true + } + ], + "index": 56 + }, + { + "bbox": [ + 126, + 690, + 194, + 702 + ], + "spans": [ + { + "bbox": [ + 126, + 690, + 194, + 702 + ], + "score": 1.0, + "content": "3478–3487, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 57, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 700, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 507, + 715 + ], + "score": 1.0, + "content": "[27] Lingjing Kong, Tao Lin, Anastasia Koloskova, Martin Jaggi, and Sebastian U Stich. Consensus control for", + "type": "text", + "cross_page": true + } + ], + "index": 58, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 711, + 438, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 438, + 725 + ], + "score": 1.0, + "content": "decentralized deep learning. In International Conference on Machine Learning, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 59, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[28] Mu Li, David G Andersen, Jun Woo Park, Alexander J Smola, Amr Ahmed, Vanja Josifovski, James", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 83, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 124, + 83, + 507, + 96 + ], + "score": 1.0, + "content": "Long, Eugene J Shekita, and Bor-Yiing Su. Scaling distributed machine learning with the parameter server.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 124, + 91, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 124, + 91, + 432, + 108 + ], + "score": 1.0, + "content": "In 11th {USENIX} Symposium on Operating Systems Design and Implementation", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 432, + 93, + 477, + 104 + ], + "score": 0.58, + "content": "\\{ O \\bar { S } D I \\} ~ I 4 )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 478, + 91, + 507, + 108 + ], + "score": 1.0, + "content": ", pages", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 125, + 104, + 186, + 115 + ], + "spans": [ + { + "bbox": [ + 125, + 104, + 186, + 115 + ], + "score": 1.0, + "content": "583–598, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "[29] Z. Li, W. Shi, and M. Yan. A decentralized proximal-gradient method with network independent step-sizes", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 124, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 125, + 124, + 506, + 137 + ], + "score": 1.0, + "content": "and separated convergence rates. IEEE Transactions on Signal Processing, July 2019. early acces. Also", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 125, + 135, + 242, + 146 + ], + "spans": [ + { + "bbox": [ + 125, + 135, + 242, + 146 + ], + "score": 1.0, + "content": "available on arXiv:1704.07807.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "score": 1.0, + "content": "[30] Xiangru Lian, Ce Zhang, Huan Zhang, Cho-Jui Hsieh, Wei Zhang, and Ji Liu. Can decentralized algorithms", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 154, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 125, + 154, + 506, + 168 + ], + "score": 1.0, + "content": "outperform centralized algorithms? A case study for decentralized parallel stochastic gradient descent. In", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 165, + 408, + 177 + ], + "spans": [ + { + "bbox": [ + 125, + 165, + 408, + 177 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pages 5330–5340, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 176, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 506, + 187 + ], + "score": 1.0, + "content": "[31] Xiangru Lian, Wei Zhang, Ce Zhang, and Ji Liu. Asynchronous decentralized parallel stochastic gradient", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 185, + 433, + 199 + ], + "spans": [ + { + "bbox": [ + 125, + 185, + 433, + 199 + ], + "score": 1.0, + "content": "descent. In International Conference on Machine Learning, pages 3043–3052, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "score": 1.0, + "content": "[32] Tao Lin, Sai Praneeth Karimireddy, Sebastian U Stich, and Martin Jaggi. Quasi-global momentum:", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 125, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Accelerating decentralized deep learning on heterogeneous data. In International Conference on Machine", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 124, + 217, + 188, + 229 + ], + "spans": [ + { + "bbox": [ + 124, + 217, + 188, + 229 + ], + "score": 1.0, + "content": "Learning, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. Feature", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 236, + 507, + 251 + ], + "spans": [ + { + "bbox": [ + 124, + 236, + 507, + 251 + ], + "score": 1.0, + "content": "pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 124, + 246, + 291, + 259 + ], + "spans": [ + { + "bbox": [ + 124, + 246, + 291, + 259 + ], + "score": 1.0, + "content": "pattern recognition, pages 2117–2125, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "[34] Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 269, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 125, + 269, + 506, + 280 + ], + "score": 1.0, + "content": "detection. In Proceedings of the IEEE international conference on computer vision, pages 2980–2988,", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 277, + 150, + 290 + ], + "spans": [ + { + "bbox": [ + 125, + 277, + 150, + 290 + ], + "score": 1.0, + "content": "2017.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "[35] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár,", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 124, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "and C Lawrence Zitnick. Microsoft coco: Common objects in context. In European conference on", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 124, + 308, + 306, + 320 + ], + "spans": [ + { + "bbox": [ + 124, + 308, + 306, + 320 + ], + "score": 1.0, + "content": "computer vision, pages 740–755. Springer, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "score": 1.0, + "content": "[36] Xiaorui Liu, Yao Li, Rongrong Wang, Jiliang Tang, and Ming Yan. Linear convergent decentralized", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 328, + 390, + 341 + ], + "spans": [ + { + "bbox": [ + 124, + 328, + 390, + 341 + ], + "score": 1.0, + "content": "optimization with compression. arXiv preprint arXiv:2007.00232, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 339, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 507, + 353 + ], + "score": 1.0, + "content": "[37] Yanli Liu, Yuejiao Sun, and Wotao Yin. Decentralized learning with lazy and approximate dual gradients.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 349, + 357, + 362 + ], + "spans": [ + { + "bbox": [ + 124, + 349, + 357, + 362 + ], + "score": 1.0, + "content": "IEEE Transactions on Signal Processing, 69:1362–1377, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "score": 1.0, + "content": "[38] Yaohua Liu, Wei Xu, Gang Wu, Zhi Tian, and Qing Ling. Communication-censored admm for decentralized", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 371, + 460, + 383 + ], + "spans": [ + { + "bbox": [ + 125, + 371, + 460, + 383 + ], + "score": 1.0, + "content": "consensus optimization. IEEE Transactions on Signal Processing, 67(10):2565–2579, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 382, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 507, + 394 + ], + "score": 1.0, + "content": "[39] Nicolas Loizou and Peter Richtárik. Momentum and stochastic momentum for stochastic gradient, newton,", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 391, + 507, + 405 + ], + "spans": [ + { + "bbox": [ + 125, + 391, + 507, + 405 + ], + "score": 1.0, + "content": "proximal point and subspace descent methods. Computational Optimization and Applications, 77(3):653–", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 402, + 168, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 402, + 168, + 413 + ], + "score": 1.0, + "content": "710, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 412, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 507, + 425 + ], + "score": 1.0, + "content": "[40] Songtao Lu and Chai Wah Wu. Decentralized stochastic non-convex optimization over weakly connected", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 422, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 125, + 422, + 507, + 435 + ], + "score": 1.0, + "content": "time-varying digraphs. In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 432, + 347, + 446 + ], + "spans": [ + { + "bbox": [ + 124, + 432, + 347, + 446 + ], + "score": 1.0, + "content": "Signal Processing (ICASSP), pages 5770–5774. IEEE, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 442, + 507, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 507, + 456 + ], + "score": 1.0, + "content": "[41] Asaf Nachmias and Yuval Peres. Critical random graphs: diameter and mixing time. The Annals of", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 453, + 260, + 465 + ], + "spans": [ + { + "bbox": [ + 125, + 453, + 260, + 465 + ], + "score": 1.0, + "content": "Probability, 36(4):1267–1286, 2008.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "[42] Angelia Nedic and Alex Olshevsky. Distributed optimization over time-varying directed graphs. ´ IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 474, + 337, + 486 + ], + "spans": [ + { + "bbox": [ + 125, + 474, + 337, + 486 + ], + "score": 1.0, + "content": "Transactions on Automatic Control, 60(3):601–615, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 484, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 498 + ], + "score": 1.0, + "content": "[43] Angelia Nedic, Alex Olshevsky, and Michael G Rabbat. Network topology and communication- ´", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 494, + 496, + 508 + ], + "spans": [ + { + "bbox": [ + 125, + 494, + 496, + 508 + ], + "score": 1.0, + "content": "computation tradeoffs in decentralized optimization. Proceedings of the IEEE, 106(5):953–976, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "[44] A. Nedic, A. Olshevsky, and W. Shi. Achieving geometric convergence for distributed optimization over", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 515, + 410, + 529 + ], + "spans": [ + { + "bbox": [ + 125, + 515, + 410, + 529 + ], + "score": 1.0, + "content": "time-varying graphs. SIAM Journal on Optimization, 27(4):2597–2633, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "[45] Angelia Nedic and Asuman Ozdaglar. Distributed subgradient methods for multi-agent optimization. IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 537, + 328, + 548 + ], + "spans": [ + { + "bbox": [ + 125, + 537, + 328, + 548 + ], + "score": 1.0, + "content": "Transactions on Automatic Control, 54(1):48–61, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "[46] Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen,", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 125, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. Pytorch: An imperative style, high-performance deep", + "type": "text", + "cross_page": true + } + ], + "index": 47 + }, + { + "bbox": [ + 125, + 566, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 125, + 566, + 507, + 580 + ], + "score": 1.0, + "content": "learning library. In Advances in Neural Information Processing Systems (NeurIPS), pages 8024–8035,", + "type": "text", + "cross_page": true + } + ], + "index": 48 + }, + { + "bbox": [ + 125, + 576, + 150, + 588 + ], + "spans": [ + { + "bbox": [ + 125, + 576, + 150, + 588 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 586, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 507, + 601 + ], + "score": 1.0, + "content": "[47] Pitch Patarasuk and Xin Yuan. Bandwidth optimal all-reduce algorithms for clusters of workstations.", + "type": "text", + "cross_page": true + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 597, + 380, + 611 + ], + "spans": [ + { + "bbox": [ + 125, + 597, + 380, + 611 + ], + "score": 1.0, + "content": "Journal of Parallel and Distributed Computing, 69(2):117–124, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 51, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "[48] Shi Pu, Alex Olshevsky, and Ioannis Ch Paschalidis. A sharp estimate on the transient time of distributed", + "type": "text", + "cross_page": true + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 618, + 375, + 632 + ], + "spans": [ + { + "bbox": [ + 124, + 618, + 375, + 632 + ], + "score": 1.0, + "content": "stochastic gradient descent. arXiv preprint arXiv:1906.02702, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 53, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "[49] Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: towards real-time object detection", + "type": "text", + "cross_page": true + } + ], + "index": 54, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 125, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "with region proposal networks. IEEE transactions on pattern analysis and machine intelligence, 39(6):1137–", + "type": "text", + "cross_page": true + } + ], + "index": 55 + }, + { + "bbox": [ + 125, + 650, + 172, + 661 + ], + "spans": [ + { + "bbox": [ + 125, + 650, + 172, + 661 + ], + "score": 1.0, + "content": "1149, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 56, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 107, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "[50] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2:", + "type": "text", + "cross_page": true + } + ], + "index": 57, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 669, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 124, + 669, + 507, + 683 + ], + "score": 1.0, + "content": "Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and", + "type": "text", + "cross_page": true + } + ], + "index": 58 + }, + { + "bbox": [ + 124, + 680, + 291, + 693 + ], + "spans": [ + { + "bbox": [ + 124, + 680, + 291, + 693 + ], + "score": 1.0, + "content": "pattern recognition, pages 4510–4520, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 59, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 690, + 428, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 428, + 703 + ], + "score": 1.0, + "content": "[51] Ali H Sayed. Adaptive networks. Proceedings of the IEEE, 102(4):460–497, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 60, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 700, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 715 + ], + "score": 1.0, + "content": "[52] Gesualdo Scutari and Ying Sun. Distributed nonconvex constrained optimization over time-varying", + "type": "text", + "cross_page": true + } + ], + "index": 61, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 711, + 354, + 725 + ], + "spans": [ + { + "bbox": [ + 125, + 711, + 354, + 725 + ], + "score": 1.0, + "content": "digraphs. Mathematical Programming, 176(1):497–544, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 62, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 379, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 379, + 85 + ], + "score": 1.0, + "content": "[53] E. Seneta. Non-negative matrices and markov chains (2nd ed.). 1981.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "[54] Guodong Shi, Bo Li, Mikael Johansson, and Karl Henrik Johansson. Finite-time convergent gossiping.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 95, + 364, + 106 + ], + "spans": [ + { + "bbox": [ + 126, + 95, + 364, + 106 + ], + "score": 1.0, + "content": "IEEE/ACM Transactions on Networking, 24(5):2782–2794, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "[55] Sebastian Urban Stich. Local sgd converges fast and communicates little. In International Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 115, + 274, + 127 + ], + "spans": [ + { + "bbox": [ + 125, + 115, + 274, + 127 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "[56] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural networks. In", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 136, + 421, + 149 + ], + "spans": [ + { + "bbox": [ + 125, + 136, + 421, + 149 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pages 6105–6114. PMLR, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 343, + 159 + ], + "score": 1.0, + "content": "[57] Hanlin Tang, Xiangru Lian, Ming Yan, Ce Zhang, and Ji Liu.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 344, + 146, + 353, + 156 + ], + "score": 0.81, + "content": "d ^ { 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 354, + 146, + 505, + 159 + ], + "score": 1.0, + "content": ": Decentralized training over decentralized", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 156, + 422, + 170 + ], + "spans": [ + { + "bbox": [ + 125, + 156, + 422, + 170 + ], + "score": 1.0, + "content": "data. In International Conference on Machine Learning, pages 4848–4856, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 169, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 505, + 180 + ], + "score": 1.0, + "content": "[58] Hanlin Tang, Chen Yu, Xiangru Lian, Tong Zhang, and Ji Liu. Doublesqueeze: Parallel stochastic gradient", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 126, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "descent with double-pass error-compensated compression. In International Conference on Machine", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 188, + 283, + 201 + ], + "spans": [ + { + "bbox": [ + 125, + 188, + 283, + 201 + ], + "score": 1.0, + "content": "Learning, pages 6155–6165. PMLR, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 196, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 213 + ], + "score": 1.0, + "content": "[59] Luca Trevisan. Lecture notes on graph partitioning, expanders and spectral methods. University of", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 209, + 473, + 221 + ], + "spans": [ + { + "bbox": [ + 126, + 209, + 473, + 221 + ], + "score": 1.0, + "content": "California, Berkeley, https://people. eecs. berkeley. edu/˜ luca/books/expanders-2016. pdf, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 217, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 506, + 235 + ], + "score": 1.0, + "content": "[60] Jianyu Wang, Anit Kumar Sahu, Zhouyi Yang, Gauri Joshi, and Soummya Kar. MATCHA: Speeding up", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 230, + 486, + 242 + ], + "spans": [ + { + "bbox": [ + 125, + 230, + 486, + 242 + ], + "score": 1.0, + "content": "decentralized SGD via matching decomposition sampling. arXiv preprint arXiv:1905.09435, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 241, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 506, + 253 + ], + "score": 1.0, + "content": "[61] Jianyu Wang, Vinayak Tantia, Nicolas Ballas, and Michael Rabbat. Slowmo: Improving communication-", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 249, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 125, + 249, + 507, + 264 + ], + "score": 1.0, + "content": "efficient distributed sgd with slow momentum. In International Conference on Learning Representations,", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 260, + 150, + 272 + ], + "spans": [ + { + "bbox": [ + 125, + 260, + 150, + 272 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "[62] Ran Xin, Usman A Khan, and Soummya Kar. An improved convergence analysis for decentralized online", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 281, + 405, + 293 + ], + "spans": [ + { + "bbox": [ + 125, + 281, + 405, + 293 + ], + "score": 1.0, + "content": "stochastic non-convex optimization. arXiv preprint arXiv:2008.04195, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "[63] Bicheng Ying, Kun Yuan, Hanbin Hu, Yiming Chen, and Wotao Yin. Bluefog: Make decentralized", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 303, + 476, + 315 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 476, + 315 + ], + "score": 1.0, + "content": "algorithms practical for optimization and deep learning. arXiv preprint arXiv:2111.04287, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 107, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "[64] Hao Yu, Rong Jin, and Sen Yang. On the linear speedup analysis of communication efficient momentum", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 322, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 125, + 322, + 505, + 337 + ], + "score": 1.0, + "content": "sgd for distributed non-convex optimization. In International Conference on Machine Learning, pages", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 125, + 332, + 222, + 345 + ], + "spans": [ + { + "bbox": [ + 125, + 332, + 222, + 345 + ], + "score": 1.0, + "content": "7184–7193. PMLR, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 342, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 358 + ], + "score": 1.0, + "content": "[65] Kun Yuan and Sulaiman A Alghunaim. Removing data heterogeneity influence enhances network topology", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 354, + 395, + 366 + ], + "spans": [ + { + "bbox": [ + 125, + 354, + 395, + 366 + ], + "score": 1.0, + "content": "dependence of decentralized sgd. arXiv preprint arXiv:2105.08023, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "[66] Kun Yuan, Sulaiman A Alghunaim, Bicheng Ying, and Ali H Sayed. On the influence of bias-correction", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 375, + 439, + 387 + ], + "spans": [ + { + "bbox": [ + 125, + 375, + 439, + 387 + ], + "score": 1.0, + "content": "on distributed stochastic optimization. IEEE Transactions on Signal Processing, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 387, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 506, + 398 + ], + "score": 1.0, + "content": "[67] Kun Yuan, Yiming Chen, Xinmeng Huang, Yingya Zhang, Pan Pan, Yinghui Xu, and Wotao Yin. Decent-", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 395, + 507, + 409 + ], + "spans": [ + { + "bbox": [ + 124, + 395, + 507, + 409 + ], + "score": 1.0, + "content": "LaM: Decentralized momentum SGD for large-batch deep training. arXiv preprint arXiv:2104.11981,", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 125, + 406, + 150, + 418 + ], + "spans": [ + { + "bbox": [ + 125, + 406, + 150, + 418 + ], + "score": 1.0, + "content": "2021.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "[68] K. Yuan, B. Ying, X. Zhao, and A. H. Sayed. Exact dffusion for distributed optimization and learning –", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 426, + 477, + 439 + ], + "spans": [ + { + "bbox": [ + 124, + 426, + 477, + 439 + ], + "score": 1.0, + "content": "Part I: Algorithm development. IEEE Transactions on Signal Processing, 67(3):708 – 723, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "[69] Jiaqi Zhang and Keyou You. Decentralized stochastic gradient tracking for non-convex empirical risk", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 448, + 326, + 460 + ], + "spans": [ + { + "bbox": [ + 125, + 448, + 326, + 460 + ], + "score": 1.0, + "content": "minimization. arXiv preprint arXiv:1909.02712, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_end_line": true + } + ], + "index": 38, + "bbox_fs": [ + 110, + 668, + 506, + 722 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 91, + 507, + 725 + ], + "lines": [ + { + "bbox": [ + 212, + 88, + 221, + 96 + ], + "spans": [ + { + "bbox": [ + 212, + 88, + 221, + 96 + ], + "score": 1.0, + "content": "ng.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 125, + 93, + 150, + 105 + ], + "spans": [ + { + "bbox": [ + 125, + 93, + 150, + 105 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 110, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 110, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "[4] Aditya Balu, Zhanhong Jiang, Sin Yong Tan, Chinmay Hedge, Young M Lee, and Soumik Sarkar. De-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 124, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 124, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "centralized deep learning using momentum-accelerated consensus. arXiv preprint arXiv:2010.11166,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 125, + 151, + 137 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 151, + 137 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 135, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 109, + 135, + 506, + 150 + ], + "score": 1.0, + "content": "[5] Tal Ben-Nun and Torsten Hoefler. Demystifying parallel and distributed deep learning: An in-depth", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 123, + 145, + 401, + 160 + ], + "spans": [ + { + "bbox": [ + 123, + 145, + 401, + 160 + ], + "score": 1.0, + "content": "concurrency analysis. ACM Computing Surveys (CSUR), 52(4):1–43, 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 110, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "[6] Itai Benjamini, Gady Kozma, and Nicholas Wormald. The mixing time of the giant component of a random", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 124, + 167, + 358, + 181 + ], + "spans": [ + { + "bbox": [ + 124, + 167, + 358, + 181 + ], + "score": 1.0, + "content": "graph. Random Structures & Algorithms, 45(3):383–407, 2014.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 179, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 110, + 179, + 506, + 192 + ], + "score": 1.0, + "content": "[7] Albert S Berahas, Raghu Bollapragada, Nitish Shirish Keskar, and Ermin Wei. Balancing communication", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 190, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 125, + 190, + 506, + 203 + ], + "score": 1.0, + "content": "and computation in distributed optimization. IEEE Transactions on Automatic Control, 64(8):3141–3155,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 199, + 150, + 211 + ], + "spans": [ + { + "bbox": [ + 126, + 199, + 150, + 211 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 108, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "[8] Jeremy Bernstein, Jiawei Zhao, Kamyar Azizzadenesheli, and Anima Anandkumar. signsgd with majority", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 222, + 453, + 233 + ], + "spans": [ + { + "bbox": [ + 126, + 222, + 453, + 233 + ], + "score": 1.0, + "content": "vote is communication efficient and fault tolerant. arXiv preprint arXiv:1810.05291, 2018.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 110, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "[9] Andrew Beveridge and Jeanmarie Youngblood. The best mixing time for random walks on trees. Graphs", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 124, + 242, + 290, + 254 + ], + "spans": [ + { + "bbox": [ + 124, + 242, + 290, + 254 + ], + "score": 1.0, + "content": "and Combinatorics, 32(6):2211–2239, 2016.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 255, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 266 + ], + "score": 1.0, + "content": "[10] Stephen P Boyd, Arpita Ghosh, Balaji Prabhakar, and Devavrat Shah. Mixing times for random walks on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 124, + 264, + 388, + 277 + ], + "spans": [ + { + "bbox": [ + 124, + 264, + 388, + 277 + ], + "score": 1.0, + "content": "geometric random graphs. In ALENEX/ANALCO, pages 240–249, 2005.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 275, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 506, + 290 + ], + "score": 1.0, + "content": "[11] Jianshu Chen and Ali H Sayed. Diffusion adaptation strategies for distributed optimization and learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 286, + 421, + 297 + ], + "spans": [ + { + "bbox": [ + 126, + 286, + 421, + 297 + ], + "score": 1.0, + "content": "over networks. IEEE Transactions on Signal Processing, 60(8):4289–4305, 2012.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "[12] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 306, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 125, + 306, + 506, + 320 + ], + "score": 1.0, + "content": "Ziwei Liu, Jiarui Xu, et al. Mmdetection: Open mmlab detection toolbox and benchmark. arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 317, + 220, + 330 + ], + "spans": [ + { + "bbox": [ + 126, + 317, + 220, + 330 + ], + "score": 1.0, + "content": "arXiv:1906.07155, 2019.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "[13] Tianyi Chen, Georgios Giannakis, Tao Sun, and Wotao Yin. LAG: Lazily aggregated gradient for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 125, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 125, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "communication-efficient distributed learning. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 124, + 349, + 217, + 361 + ], + "spans": [ + { + "bbox": [ + 124, + 349, + 217, + 361 + ], + "score": 1.0, + "content": "pages 5050–5060, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 359, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 375 + ], + "score": 1.0, + "content": "[14] Yiming Chen, Kun Yuan, Yingya Zhang, Pan Pan, Yinghui Xu, and Wotao Yin. Accelerating gossip SGD", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 125, + 370, + 449, + 383 + ], + "spans": [ + { + "bbox": [ + 125, + 370, + 449, + 383 + ], + "score": 1.0, + "content": "with periodic global averaging. In International Conference on Machine Learning, 2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "score": 1.0, + "content": "[15] Yat-Tin Chow, Wei Shi, Tianyu Wu, and Wotao Yin. Expander graph and communication-efficient", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 125, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 125, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "decentralized optimization. In 2016 50th Asilomar Conference on Signals, Systems and Computers, pages", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 125, + 401, + 218, + 415 + ], + "spans": [ + { + "bbox": [ + 125, + 401, + 218, + 415 + ], + "score": 1.0, + "content": "1715–1720. IEEE, 2016.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "[16] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 126, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "image database. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 248–255.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 434, + 169, + 446 + ], + "spans": [ + { + "bbox": [ + 126, + 434, + 169, + 446 + ], + "score": 1.0, + "content": "Ieee, 2009.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "[17] P. Di Lorenzo and G. Scutari. Next: In-network nonconvex optimization. IEEE Transactions on Signal", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 126, + 455, + 360, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 455, + 360, + 466 + ], + "score": 1.0, + "content": "and Information Processing over Networks, 2(2):120–136, 2016.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 507, + 481 + ], + "score": 1.0, + "content": "[18] John C Duchi, Alekh Agarwal, and Martin J Wainwright. Dual averaging for distributed optimization:", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 126, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "Convergence analysis and network scaling. IEEE Transactions on Automatic control, 57(3):592–606, 2011.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "[19] Mark Everingham, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 124, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 124, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "pascal visual object classes (voc) challenge. International journal of computer vision, 88(2):303–338,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 508, + 150, + 520 + ], + "spans": [ + { + "bbox": [ + 126, + 508, + 150, + 520 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 521, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 532 + ], + "score": 1.0, + "content": "[20] Hongchang Gao and Heng Huang. Periodic stochastic gradient descent with momentum for decentralized", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 125, + 530, + 306, + 542 + ], + "spans": [ + { + "bbox": [ + 125, + 530, + 306, + 542 + ], + "score": 1.0, + "content": "training. arXiv preprint arXiv:2008.10435, 2020.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 107, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "[21] Priya Goyal, Piotr Dollár, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, Andrew", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 126, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet in 1 hour. arXiv", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 124, + 561, + 252, + 574 + ], + "spans": [ + { + "bbox": [ + 124, + 561, + 252, + 574 + ], + "score": 1.0, + "content": "preprint arXiv:1706.02677, 2017.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "[22] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 124, + 582, + 479, + 597 + ], + "spans": [ + { + "bbox": [ + 124, + 582, + 479, + 597 + ], + "score": 1.0, + "content": "In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "score": 1.0, + "content": "[23] Kun Huang and Shi Pu. Improving the transient times for distributed stochastic gradient methods. arXiv", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 125, + 605, + 253, + 618 + ], + "spans": [ + { + "bbox": [ + 125, + 605, + 253, + 618 + ], + "score": 1.0, + "content": "preprint arXiv:2105.04851, 2021.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "[24] Anastasia Koloskova, Tao Lin, Sebastian U Stich, and Martin Jaggi. Decentralized deep learning with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 126, + 627, + 502, + 639 + ], + "spans": [ + { + "bbox": [ + 126, + 627, + 502, + 639 + ], + "score": 1.0, + "content": "arbitrary communication compression. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "[25] Anastasia Koloskova, Nicolas Loizou, Sadra Boreiri, Martin Jaggi, and Sebastian U Stich. A unified theory", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 124, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 124, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "of decentralized sgd with changing topology and local updates. In International Conference on Machine", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 126, + 658, + 262, + 671 + ], + "spans": [ + { + "bbox": [ + 126, + 658, + 262, + 671 + ], + "score": 1.0, + "content": "Learning (ICML), pages 1–12, 2020.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 107, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 107, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "[26] Anastasia Koloskova, Sebastian Stich, and Martin Jaggi. Decentralized stochastic optimization and gossip", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 124, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 124, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "algorithms with compressed communication. In International Conference on Machine Learning, pages", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 126, + 690, + 194, + 702 + ], + "spans": [ + { + "bbox": [ + 126, + 690, + 194, + 702 + ], + "score": 1.0, + "content": "3478–3487, 2019.", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 700, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 507, + 715 + ], + "score": 1.0, + "content": "[27] Lingjing Kong, Tao Lin, Anastasia Koloskova, Martin Jaggi, and Sebastian U Stich. Consensus control for", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 126, + 711, + 438, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 438, + 725 + ], + "score": 1.0, + "content": "decentralized deep learning. In International Conference on Machine Learning, 2021.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 29.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 91, + 507, + 725 + ], + "lines": [], + "index": 29.5, + "bbox_fs": [ + 104, + 88, + 507, + 725 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 70, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[28] Mu Li, David G Andersen, Jun Woo Park, Alexander J Smola, Amr Ahmed, Vanja Josifovski, James", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 124, + 83, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 124, + 83, + 507, + 96 + ], + "score": 1.0, + "content": "Long, Eugene J Shekita, and Bor-Yiing Su. Scaling distributed machine learning with the parameter server.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 124, + 91, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 124, + 91, + 432, + 108 + ], + "score": 1.0, + "content": "In 11th {USENIX} Symposium on Operating Systems Design and Implementation", + "type": "text" + }, + { + "bbox": [ + 432, + 93, + 477, + 104 + ], + "score": 0.58, + "content": "\\{ O \\bar { S } D I \\} ~ I 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 91, + 507, + 108 + ], + "score": 1.0, + "content": ", pages", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 125, + 104, + 186, + 115 + ], + "spans": [ + { + "bbox": [ + 125, + 104, + 186, + 115 + ], + "score": 1.0, + "content": "583–598, 2014.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "[29] Z. Li, W. Shi, and M. Yan. A decentralized proximal-gradient method with network independent step-sizes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 125, + 124, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 125, + 124, + 506, + 137 + ], + "score": 1.0, + "content": "and separated convergence rates. IEEE Transactions on Signal Processing, July 2019. early acces. Also", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 125, + 135, + 242, + 146 + ], + "spans": [ + { + "bbox": [ + 125, + 135, + 242, + 146 + ], + "score": 1.0, + "content": "available on arXiv:1704.07807.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "score": 1.0, + "content": "[30] Xiangru Lian, Ce Zhang, Huan Zhang, Cho-Jui Hsieh, Wei Zhang, and Ji Liu. Can decentralized algorithms", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 125, + 154, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 125, + 154, + 506, + 168 + ], + "score": 1.0, + "content": "outperform centralized algorithms? A case study for decentralized parallel stochastic gradient descent. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 165, + 408, + 177 + ], + "spans": [ + { + "bbox": [ + 125, + 165, + 408, + 177 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pages 5330–5340, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 176, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 506, + 187 + ], + "score": 1.0, + "content": "[31] Xiangru Lian, Wei Zhang, Ce Zhang, and Ji Liu. Asynchronous decentralized parallel stochastic gradient", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 185, + 433, + 199 + ], + "spans": [ + { + "bbox": [ + 125, + 185, + 433, + 199 + ], + "score": 1.0, + "content": "descent. In International Conference on Machine Learning, pages 3043–3052, 2018.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "score": 1.0, + "content": "[32] Tao Lin, Sai Praneeth Karimireddy, Sebastian U Stich, and Martin Jaggi. Quasi-global momentum:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 125, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Accelerating decentralized deep learning on heterogeneous data. In International Conference on Machine", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 124, + 217, + 188, + 229 + ], + "spans": [ + { + "bbox": [ + 124, + 217, + 188, + 229 + ], + "score": 1.0, + "content": "Learning, 2021.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. Feature", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 124, + 236, + 507, + 251 + ], + "spans": [ + { + "bbox": [ + 124, + 236, + 507, + 251 + ], + "score": 1.0, + "content": "pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 124, + 246, + 291, + 259 + ], + "spans": [ + { + "bbox": [ + 124, + 246, + 291, + 259 + ], + "score": 1.0, + "content": "pattern recognition, pages 2117–2125, 2017.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "[34] Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 125, + 269, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 125, + 269, + 506, + 280 + ], + "score": 1.0, + "content": "detection. In Proceedings of the IEEE international conference on computer vision, pages 2980–2988,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 277, + 150, + 290 + ], + "spans": [ + { + "bbox": [ + 125, + 277, + 150, + 290 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "[35] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 124, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 124, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "and C Lawrence Zitnick. Microsoft coco: Common objects in context. In European conference on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 124, + 308, + 306, + 320 + ], + "spans": [ + { + "bbox": [ + 124, + 308, + 306, + 320 + ], + "score": 1.0, + "content": "computer vision, pages 740–755. Springer, 2014.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "score": 1.0, + "content": "[36] Xiaorui Liu, Yao Li, Rongrong Wang, Jiliang Tang, and Ming Yan. Linear convergent decentralized", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 124, + 328, + 390, + 341 + ], + "spans": [ + { + "bbox": [ + 124, + 328, + 390, + 341 + ], + "score": 1.0, + "content": "optimization with compression. arXiv preprint arXiv:2007.00232, 2020.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 339, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 507, + 353 + ], + "score": 1.0, + "content": "[37] Yanli Liu, Yuejiao Sun, and Wotao Yin. Decentralized learning with lazy and approximate dual gradients.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 124, + 349, + 357, + 362 + ], + "spans": [ + { + "bbox": [ + 124, + 349, + 357, + 362 + ], + "score": 1.0, + "content": "IEEE Transactions on Signal Processing, 69:1362–1377, 2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "score": 1.0, + "content": "[38] Yaohua Liu, Wei Xu, Gang Wu, Zhi Tian, and Qing Ling. Communication-censored admm for decentralized", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 125, + 371, + 460, + 383 + ], + "spans": [ + { + "bbox": [ + 125, + 371, + 460, + 383 + ], + "score": 1.0, + "content": "consensus optimization. IEEE Transactions on Signal Processing, 67(10):2565–2579, 2019.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 382, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 507, + 394 + ], + "score": 1.0, + "content": "[39] Nicolas Loizou and Peter Richtárik. Momentum and stochastic momentum for stochastic gradient, newton,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 125, + 391, + 507, + 405 + ], + "spans": [ + { + "bbox": [ + 125, + 391, + 507, + 405 + ], + "score": 1.0, + "content": "proximal point and subspace descent methods. Computational Optimization and Applications, 77(3):653–", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 402, + 168, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 402, + 168, + 413 + ], + "score": 1.0, + "content": "710, 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 412, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 507, + 425 + ], + "score": 1.0, + "content": "[40] Songtao Lu and Chai Wah Wu. Decentralized stochastic non-convex optimization over weakly connected", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 125, + 422, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 125, + 422, + 507, + 435 + ], + "score": 1.0, + "content": "time-varying digraphs. In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 432, + 347, + 446 + ], + "spans": [ + { + "bbox": [ + 124, + 432, + 347, + 446 + ], + "score": 1.0, + "content": "Signal Processing (ICASSP), pages 5770–5774. IEEE, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 442, + 507, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 507, + 456 + ], + "score": 1.0, + "content": "[41] Asaf Nachmias and Yuval Peres. Critical random graphs: diameter and mixing time. The Annals of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 125, + 453, + 260, + 465 + ], + "spans": [ + { + "bbox": [ + 125, + 453, + 260, + 465 + ], + "score": 1.0, + "content": "Probability, 36(4):1267–1286, 2008.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "[42] Angelia Nedic and Alex Olshevsky. Distributed optimization over time-varying directed graphs. ´ IEEE", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 125, + 474, + 337, + 486 + ], + "spans": [ + { + "bbox": [ + 125, + 474, + 337, + 486 + ], + "score": 1.0, + "content": "Transactions on Automatic Control, 60(3):601–615, 2014.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 484, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 498 + ], + "score": 1.0, + "content": "[43] Angelia Nedic, Alex Olshevsky, and Michael G Rabbat. Network topology and communication- ´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 125, + 494, + 496, + 508 + ], + "spans": [ + { + "bbox": [ + 125, + 494, + 496, + 508 + ], + "score": 1.0, + "content": "computation tradeoffs in decentralized optimization. Proceedings of the IEEE, 106(5):953–976, 2018.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "[44] A. Nedic, A. Olshevsky, and W. Shi. Achieving geometric convergence for distributed optimization over", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 125, + 515, + 410, + 529 + ], + "spans": [ + { + "bbox": [ + 125, + 515, + 410, + 529 + ], + "score": 1.0, + "content": "time-varying graphs. SIAM Journal on Optimization, 27(4):2597–2633, 2017.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "[45] Angelia Nedic and Asuman Ozdaglar. Distributed subgradient methods for multi-agent optimization. IEEE", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 125, + 537, + 328, + 548 + ], + "spans": [ + { + "bbox": [ + 125, + 537, + 328, + 548 + ], + "score": 1.0, + "content": "Transactions on Automatic Control, 54(1):48–61, 2009.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "[46] Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 125, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. Pytorch: An imperative style, high-performance deep", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 125, + 566, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 125, + 566, + 507, + 580 + ], + "score": 1.0, + "content": "learning library. In Advances in Neural Information Processing Systems (NeurIPS), pages 8024–8035,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 125, + 576, + 150, + 588 + ], + "spans": [ + { + "bbox": [ + 125, + 576, + 150, + 588 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 586, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 507, + 601 + ], + "score": 1.0, + "content": "[47] Pitch Patarasuk and Xin Yuan. Bandwidth optimal all-reduce algorithms for clusters of workstations.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 125, + 597, + 380, + 611 + ], + "spans": [ + { + "bbox": [ + 125, + 597, + 380, + 611 + ], + "score": 1.0, + "content": "Journal of Parallel and Distributed Computing, 69(2):117–124, 2009.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "[48] Shi Pu, Alex Olshevsky, and Ioannis Ch Paschalidis. A sharp estimate on the transient time of distributed", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 124, + 618, + 375, + 632 + ], + "spans": [ + { + "bbox": [ + 124, + 618, + 375, + 632 + ], + "score": 1.0, + "content": "stochastic gradient descent. arXiv preprint arXiv:1906.02702, 2019.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "[49] Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: towards real-time object detection", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 125, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 125, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "with region proposal networks. IEEE transactions on pattern analysis and machine intelligence, 39(6):1137–", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 125, + 650, + 172, + 661 + ], + "spans": [ + { + "bbox": [ + 125, + 650, + 172, + 661 + ], + "score": 1.0, + "content": "1149, 2016.", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 107, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 107, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "[50] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2:", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 124, + 669, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 124, + 669, + 507, + 683 + ], + "score": 1.0, + "content": "Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 124, + 680, + 291, + 693 + ], + "spans": [ + { + "bbox": [ + 124, + 680, + 291, + 693 + ], + "score": 1.0, + "content": "pattern recognition, pages 4510–4520, 2018.", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 690, + 428, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 428, + 703 + ], + "score": 1.0, + "content": "[51] Ali H Sayed. Adaptive networks. Proceedings of the IEEE, 102(4):460–497, 2014.", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 700, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 715 + ], + "score": 1.0, + "content": "[52] Gesualdo Scutari and Ying Sun. Distributed nonconvex constrained optimization over time-varying", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 125, + 711, + 354, + 725 + ], + "spans": [ + { + "bbox": [ + 125, + 711, + 354, + 725 + ], + "score": 1.0, + "content": "digraphs. Mathematical Programming, 176(1):497–544, 2019.", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 31 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 70, + 507, + 724 + ], + "lines": [], + "index": 31, + "bbox_fs": [ + 104, + 72, + 507, + 725 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 506, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 379, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 379, + 85 + ], + "score": 1.0, + "content": "[53] E. Seneta. Non-negative matrices and markov chains (2nd ed.). 1981.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "[54] Guodong Shi, Bo Li, Mikael Johansson, and Karl Henrik Johansson. Finite-time convergent gossiping.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 95, + 364, + 106 + ], + "spans": [ + { + "bbox": [ + 126, + 95, + 364, + 106 + ], + "score": 1.0, + "content": "IEEE/ACM Transactions on Networking, 24(5):2782–2794, 2015.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "[55] Sebastian Urban Stich. Local sgd converges fast and communicates little. In International Conference on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 125, + 115, + 274, + 127 + ], + "spans": [ + { + "bbox": [ + 125, + 115, + 274, + 127 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "[56] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural networks. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 125, + 136, + 421, + 149 + ], + "spans": [ + { + "bbox": [ + 125, + 136, + 421, + 149 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pages 6105–6114. PMLR, 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 343, + 159 + ], + "score": 1.0, + "content": "[57] Hanlin Tang, Xiangru Lian, Ming Yan, Ce Zhang, and Ji Liu.", + "type": "text" + }, + { + "bbox": [ + 344, + 146, + 353, + 156 + ], + "score": 0.81, + "content": "d ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 146, + 505, + 159 + ], + "score": 1.0, + "content": ": Decentralized training over decentralized", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 125, + 156, + 422, + 170 + ], + "spans": [ + { + "bbox": [ + 125, + 156, + 422, + 170 + ], + "score": 1.0, + "content": "data. In International Conference on Machine Learning, pages 4848–4856, 2018.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 169, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 505, + 180 + ], + "score": 1.0, + "content": "[58] Hanlin Tang, Chen Yu, Xiangru Lian, Tong Zhang, and Ji Liu. Doublesqueeze: Parallel stochastic gradient", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 126, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "descent with double-pass error-compensated compression. In International Conference on Machine", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 188, + 283, + 201 + ], + "spans": [ + { + "bbox": [ + 125, + 188, + 283, + 201 + ], + "score": 1.0, + "content": "Learning, pages 6155–6165. PMLR, 2019.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 196, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 213 + ], + "score": 1.0, + "content": "[59] Luca Trevisan. Lecture notes on graph partitioning, expanders and spectral methods. University of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 209, + 473, + 221 + ], + "spans": [ + { + "bbox": [ + 126, + 209, + 473, + 221 + ], + "score": 1.0, + "content": "California, Berkeley, https://people. eecs. berkeley. edu/˜ luca/books/expanders-2016. pdf, 2017.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 217, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 506, + 235 + ], + "score": 1.0, + "content": "[60] Jianyu Wang, Anit Kumar Sahu, Zhouyi Yang, Gauri Joshi, and Soummya Kar. MATCHA: Speeding up", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 125, + 230, + 486, + 242 + ], + "spans": [ + { + "bbox": [ + 125, + 230, + 486, + 242 + ], + "score": 1.0, + "content": "decentralized SGD via matching decomposition sampling. arXiv preprint arXiv:1905.09435, 2019.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 241, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 506, + 253 + ], + "score": 1.0, + "content": "[61] Jianyu Wang, Vinayak Tantia, Nicolas Ballas, and Michael Rabbat. Slowmo: Improving communication-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 249, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 125, + 249, + 507, + 264 + ], + "score": 1.0, + "content": "efficient distributed sgd with slow momentum. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 260, + 150, + 272 + ], + "spans": [ + { + "bbox": [ + 125, + 260, + 150, + 272 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "[62] Ran Xin, Usman A Khan, and Soummya Kar. An improved convergence analysis for decentralized online", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 281, + 405, + 293 + ], + "spans": [ + { + "bbox": [ + 125, + 281, + 405, + 293 + ], + "score": 1.0, + "content": "stochastic non-convex optimization. arXiv preprint arXiv:2008.04195, 2020.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "[63] Bicheng Ying, Kun Yuan, Hanbin Hu, Yiming Chen, and Wotao Yin. Bluefog: Make decentralized", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 303, + 476, + 315 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 476, + 315 + ], + "score": 1.0, + "content": "algorithms practical for optimization and deep learning. arXiv preprint arXiv:2111.04287, 2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 107, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "[64] Hao Yu, Rong Jin, and Sen Yang. On the linear speedup analysis of communication efficient momentum", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 125, + 322, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 125, + 322, + 505, + 337 + ], + "score": 1.0, + "content": "sgd for distributed non-convex optimization. In International Conference on Machine Learning, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 125, + 332, + 222, + 345 + ], + "spans": [ + { + "bbox": [ + 125, + 332, + 222, + 345 + ], + "score": 1.0, + "content": "7184–7193. PMLR, 2019.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 342, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 358 + ], + "score": 1.0, + "content": "[65] Kun Yuan and Sulaiman A Alghunaim. Removing data heterogeneity influence enhances network topology", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 125, + 354, + 395, + 366 + ], + "spans": [ + { + "bbox": [ + 125, + 354, + 395, + 366 + ], + "score": 1.0, + "content": "dependence of decentralized sgd. arXiv preprint arXiv:2105.08023, 2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "[66] Kun Yuan, Sulaiman A Alghunaim, Bicheng Ying, and Ali H Sayed. On the influence of bias-correction", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 125, + 375, + 439, + 387 + ], + "spans": [ + { + "bbox": [ + 125, + 375, + 439, + 387 + ], + "score": 1.0, + "content": "on distributed stochastic optimization. IEEE Transactions on Signal Processing, 2020.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 387, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 506, + 398 + ], + "score": 1.0, + "content": "[67] Kun Yuan, Yiming Chen, Xinmeng Huang, Yingya Zhang, Pan Pan, Yinghui Xu, and Wotao Yin. Decent-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 124, + 395, + 507, + 409 + ], + "spans": [ + { + "bbox": [ + 124, + 395, + 507, + 409 + ], + "score": 1.0, + "content": "LaM: Decentralized momentum SGD for large-batch deep training. arXiv preprint arXiv:2104.11981,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 125, + 406, + 150, + 418 + ], + "spans": [ + { + "bbox": [ + 125, + 406, + 150, + 418 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "[68] K. Yuan, B. Ying, X. Zhao, and A. H. Sayed. Exact dffusion for distributed optimization and learning –", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 124, + 426, + 477, + 439 + ], + "spans": [ + { + "bbox": [ + 124, + 426, + 477, + 439 + ], + "score": 1.0, + "content": "Part I: Algorithm development. IEEE Transactions on Signal Processing, 67(3):708 – 723, 2019.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "[69] Jiaqi Zhang and Keyou You. Decentralized stochastic gradient tracking for non-convex empirical risk", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 125, + 448, + 326, + 460 + ], + "spans": [ + { + "bbox": [ + 125, + 448, + 326, + 460 + ], + "score": 1.0, + "content": "minimization. arXiv preprint arXiv:1909.02712, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 18 + } + ], + "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, + 72, + 506, + 461 + ], + "lines": [], + "index": 18, + "bbox_fs": [ + 105, + 73, + 507, + 460 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/l2UWXn5iBQI/l2UWXn5iBQI_model.json b/parse/train/l2UWXn5iBQI/l2UWXn5iBQI_model.json new file mode 100644 index 0000000000000000000000000000000000000000..aa04d5f070bec03f797ffbe4f6f8af18fa47bf19 --- /dev/null +++ b/parse/train/l2UWXn5iBQI/l2UWXn5iBQI_model.json @@ -0,0 +1,19661 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 1024, + 1304, + 1024, + 1304, + 1448, + 398, + 1448 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1576, + 1403, + 1576, + 1403, + 1729, + 299, + 1729 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 398, + 805, + 1303, + 805, + 1303, + 1017, + 398, + 1017 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1743, + 1404, + 1743, + 1404, + 1925, + 298, + 1925 + ], + "score": 0.972 + }, + { + "category_id": 0, + "poly": [ + 402, + 271, + 1301, + 271, + 1301, + 383, + 402, + 383 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 300, + 1521, + 530, + 1521, + 530, + 1558, + 300, + 1558 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 333, + 1951, + 898, + 1951, + 898, + 1979, + 333, + 1979 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 297, + 2033, + 1070, + 2033, + 1070, + 2062, + 297, + 2062 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 788, + 732, + 912, + 732, + 912, + 769, + 788, + 769 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 432, + 533, + 1269, + 533, + 1269, + 656, + 432, + 656 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 356, + 496, + 1339, + 496, + 1339, + 531, + 356, + 531 + ], + "score": 0.786 + }, + { + "category_id": 13, + "poly": [ + 511, + 1054, + 630, + 1054, + 630, + 1088, + 511, + 1088 + ], + "score": 0.92, + "latex": "O ( \\log ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 983, + 1114, + 1059, + 1114, + 1059, + 1148, + 983, + 1148 + ], + "score": 0.92, + "latex": "\\log ( n )" + }, + { + "category_id": 13, + "poly": [ + 1009, + 497, + 1062, + 497, + 1062, + 530, + 1009, + 530 + ], + "score": 0.79, + "latex": "\\mathbf { H } \\mathbf { u } ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 807, + 1060, + 828, + 1060, + 828, + 1082, + 807, + 1082 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 461, + 497, + 549, + 497, + 549, + 531, + 461, + 531 + ], + "score": 0.59, + "latex": "\\mathbf { Y i n g ^ { 1 , 3 } }" + }, + { + "category_id": 13, + "poly": [ + 561, + 497, + 707, + 497, + 707, + 530, + 561, + 530 + ], + "score": 0.53, + "latex": "\\mathbf { K u n \\ Y u a n ^ { 2 * } }" + }, + { + "category_id": 13, + "poly": [ + 813, + 497, + 901, + 497, + 901, + 529, + 813, + 529 + ], + "score": 0.44, + "latex": "\\mathbf { C h e n ^ { 2 * } }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 497, + 1186, + 497, + 1186, + 529, + 1125, + 529 + ], + "score": 0.42, + "latex": "\\mathbf { P a n } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1280, + 496, + 1339, + 496, + 1339, + 530, + 1280, + 530 + ], + "score": 0.33, + "latex": "\\mathbf { Y i n ^ { 2 } }" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 272.0, + 1302.0, + 272.0, + 1302.0, + 330.0, + 400.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 326.0, + 1149.0, + 326.0, + 1149.0, + 389.0, + 551.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1517.0, + 536.0, + 1517.0, + 536.0, + 1564.0, + 292.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1947.0, + 900.0, + 1947.0, + 900.0, + 1985.0, + 333.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 295.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 732.0, + 917.0, + 732.0, + 917.0, + 771.0, + 784.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1025.0, + 1308.0, + 1025.0, + 1308.0, + 1057.0, + 395.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1054.0, + 510.0, + 1054.0, + 510.0, + 1089.0, + 394.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1054.0, + 806.0, + 1054.0, + 806.0, + 1089.0, + 631.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1054.0, + 1306.0, + 1054.0, + 1306.0, + 1089.0, + 829.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1082.0, + 1306.0, + 1082.0, + 1306.0, + 1122.0, + 392.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1113.0, + 982.0, + 1113.0, + 982.0, + 1150.0, + 393.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1113.0, + 1305.0, + 1113.0, + 1305.0, + 1150.0, + 1060.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1146.0, + 1308.0, + 1146.0, + 1308.0, + 1181.0, + 393.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1177.0, + 1307.0, + 1177.0, + 1307.0, + 1210.0, + 394.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1206.0, + 1309.0, + 1206.0, + 1309.0, + 1241.0, + 394.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1236.0, + 1307.0, + 1236.0, + 1307.0, + 1271.0, + 393.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1268.0, + 1305.0, + 1268.0, + 1305.0, + 1299.0, + 395.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1298.0, + 1308.0, + 1298.0, + 1308.0, + 1330.0, + 394.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1329.0, + 1307.0, + 1329.0, + 1307.0, + 1358.0, + 396.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1358.0, + 1308.0, + 1358.0, + 1308.0, + 1393.0, + 394.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1387.0, + 1306.0, + 1387.0, + 1306.0, + 1422.0, + 394.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1416.0, + 1286.0, + 1416.0, + 1286.0, + 1454.0, + 392.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 1407.0, + 1605.0, + 1407.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1637.0, + 1405.0, + 1637.0, + 1405.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1404.0, + 1668.0, + 1404.0, + 1701.0, + 295.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1330.0, + 1697.0, + 1330.0, + 1734.0, + 295.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 805.0, + 1304.0, + 805.0, + 1304.0, + 841.0, + 394.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 830.0, + 1307.0, + 830.0, + 1307.0, + 875.0, + 391.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 865.0, + 1308.0, + 865.0, + 1308.0, + 901.0, + 393.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 897.0, + 1306.0, + 897.0, + 1306.0, + 931.0, + 394.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 926.0, + 1306.0, + 926.0, + 1306.0, + 962.0, + 393.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 955.0, + 1305.0, + 955.0, + 1305.0, + 992.0, + 393.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 987.0, + 1013.0, + 987.0, + 1013.0, + 1022.0, + 393.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1738.0, + 1405.0, + 1738.0, + 1405.0, + 1782.0, + 292.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 1409.0, + 1862.0, + 1409.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1896.0, + 1164.0, + 1896.0, + 1164.0, + 1927.0, + 296.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 524.0, + 1274.0, + 524.0, + 1274.0, + 570.0, + 424.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 555.0, + 1165.0, + 555.0, + 1165.0, + 601.0, + 533.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 593.0, + 1236.0, + 593.0, + 1236.0, + 629.0, + 446.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 622.0, + 1269.0, + 622.0, + 1269.0, + 660.0, + 430.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 492.0, + 460.0, + 492.0, + 460.0, + 539.0, + 353.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 492.0, + 560.0, + 492.0, + 560.0, + 539.0, + 550.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 492.0, + 812.0, + 492.0, + 812.0, + 539.0, + 708.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 492.0, + 1008.0, + 492.0, + 1008.0, + 539.0, + 902.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 492.0, + 1124.0, + 492.0, + 1124.0, + 539.0, + 1063.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 492.0, + 1279.0, + 492.0, + 1279.0, + 539.0, + 1187.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 492.0, + 1343.0, + 492.0, + 1343.0, + 539.0, + 1340.0, + 539.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 489, + 1406, + 489, + 1406, + 825, + 296, + 825 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 959, + 839, + 959, + 1202, + 298, + 1202 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 297, + 317, + 1400, + 317, + 1400, + 466, + 297, + 466 + ], + "score": 0.974, + "html": "
TopologyRingGridRand-GraphRand-MatchStatic Exp One-peer Exp
Per-iter Comm.(2)2(4)()(1)Ω(log2(n))(1)
Trans. Iters.Ω(n7)Ω(n5)(n3)1Ω(n³ log2(n))Ω(n³log²2(n))
" + }, + { + "category_id": 6, + "poly": [ + 296, + 196, + 1406, + 196, + 1406, + 310, + 296, + 310 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 983, + 845, + 1395, + 845, + 1395, + 1170, + 983, + 1170 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 1248, + 1405, + 1248, + 1405, + 1492, + 298, + 1492 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 334, + 1976, + 758, + 1976, + 758, + 2008, + 334, + 2008 + ], + "score": 0.906 + }, + { + "category_id": 4, + "poly": [ + 979, + 1175, + 1401, + 1175, + 1401, + 1233, + 979, + 1233 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 325, + 1504, + 1407, + 1504, + 1407, + 1946, + 325, + 1946 + ], + "score": 0.818 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 297, + 1218, + 959, + 1218, + 959, + 1249, + 297, + 1249 + ], + "score": 0.326 + }, + { + "category_id": 0, + "poly": [ + 297, + 1218, + 959, + 1218, + 959, + 1249, + 297, + 1249 + ], + "score": 0.24 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 860, + 2061, + 860, + 2085, + 840, + 2085 + ], + "score": 0.234 + }, + { + "category_id": 13, + "poly": [ + 1272, + 1784, + 1345, + 1784, + 1345, + 1823, + 1272, + 1823 + ], + "score": 0.93, + "latex": "\\tilde { \\Omega } ( n ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 828, + 1784, + 897, + 1784, + 897, + 1823, + 828, + 1823 + ], + "score": 0.93, + "latex": "\\tilde { \\Omega } ( 1 ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1278, + 1399, + 1278, + 1399, + 1312, + 1289, + 1312 + ], + "score": 0.92, + "latex": "\\lceil \\log _ { 2 } ( n ) \\rceil" + }, + { + "category_id": 13, + "poly": [ + 707, + 1628, + 796, + 1628, + 796, + 1662, + 707, + 1662 + ], + "score": 0.92, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1534, + 1309, + 1534, + 1309, + 1568, + 1147, + 1568 + ], + "score": 0.92, + "latex": "O ( 1 / \\log _ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1565, + 1092, + 1565, + 1092, + 1598, + 1032, + 1598 + ], + "score": 0.9, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 436, + 1974, + 484, + 1974, + 484, + 2008, + 436, + 2008 + ], + "score": 0.88, + "latex": "\\tilde { \\Omega } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 836, + 1665, + 856, + 1665, + 856, + 1686, + 836, + 1686 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 191.0, + 1408.0, + 191.0, + 1408.0, + 233.0, + 293.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 221.0, + 1406.0, + 221.0, + 1406.0, + 256.0, + 294.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 253.0, + 1404.0, + 253.0, + 1404.0, + 282.0, + 295.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1408.0, + 277.0, + 1408.0, + 313.0, + 294.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 841.0, + 1050.0, + 841.0, + 1050.0, + 872.0, + 1010.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 864.0, + 1363.0, + 864.0, + 1363.0, + 890.0, + 1197.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 891.0, + 1310.0, + 891.0, + 1310.0, + 915.0, + 1199.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 908.0, + 1050.0, + 908.0, + 1050.0, + 938.0, + 1010.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 958.0, + 1090.0, + 958.0, + 1090.0, + 976.0, + 1056.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 981.0, + 1045.0, + 981.0, + 1045.0, + 1003.0, + 1000.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1056.0, + 1296.0, + 1056.0, + 1296.0, + 1066.0, + 1287.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1076.0, + 1275.0, + 1076.0, + 1275.0, + 1105.0, + 1098.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1131.0, + 1058.0, + 1131.0, + 1058.0, + 1151.0, + 1041.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1127.0, + 1157.0, + 1127.0, + 1157.0, + 1155.0, + 1106.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1128.0, + 1237.0, + 1128.0, + 1237.0, + 1153.0, + 1187.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1128.0, + 1318.0, + 1128.0, + 1318.0, + 1153.0, + 1269.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1127.0, + 1400.0, + 1127.0, + 1400.0, + 1155.0, + 1349.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1145.0, + 1258.0, + 1145.0, + 1258.0, + 1174.0, + 1166.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1112.0, + 1053.0, + 1112.0, + 1053.0, + 1142.0, + 998.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1969.0, + 435.0, + 1969.0, + 435.0, + 2013.0, + 331.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1969.0, + 761.0, + 1969.0, + 761.0, + 2013.0, + 485.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1205.0, + 978.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1203.0, + 1394.0, + 1203.0, + 1394.0, + 1234.0, + 978.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 961.0, + 1214.0, + 961.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 1406.0, + 489.0, + 1406.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 520.0, + 1408.0, + 520.0, + 1408.0, + 558.0, + 291.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1406.0, + 552.0, + 1406.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1406.0, + 580.0, + 1406.0, + 616.0, + 293.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 612.0, + 1406.0, + 612.0, + 1406.0, + 645.0, + 293.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 640.0, + 1407.0, + 640.0, + 1407.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 700.0, + 1404.0, + 700.0, + 1404.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 1406.0, + 733.0, + 1406.0, + 767.0, + 295.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 762.0, + 1406.0, + 762.0, + 1406.0, + 799.0, + 294.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 792.0, + 1359.0, + 792.0, + 1359.0, + 830.0, + 293.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 840.0, + 961.0, + 840.0, + 961.0, + 872.0, + 297.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 961.0, + 861.0, + 961.0, + 910.0, + 293.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 900.0, + 958.0, + 900.0, + 958.0, + 935.0, + 296.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 931.0, + 958.0, + 931.0, + 958.0, + 963.0, + 296.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 961.0, + 960.0, + 961.0, + 960.0, + 993.0, + 296.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 992.0, + 960.0, + 992.0, + 960.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1021.0, + 961.0, + 1021.0, + 961.0, + 1054.0, + 293.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1052.0, + 961.0, + 1052.0, + 961.0, + 1084.0, + 296.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1083.0, + 960.0, + 1083.0, + 960.0, + 1115.0, + 296.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1111.0, + 962.0, + 1111.0, + 962.0, + 1147.0, + 296.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1139.0, + 962.0, + 1139.0, + 962.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 624.0, + 1170.0, + 624.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 1406.0, + 1247.0, + 1406.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1288.0, + 1279.0, + 1288.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1309.0, + 1403.0, + 1309.0, + 1403.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 1405.0, + 1340.0, + 1405.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1406.0, + 292.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1431.0, + 1408.0, + 1431.0, + 1408.0, + 1464.0, + 295.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1458.0, + 867.0, + 1458.0, + 867.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1500.0, + 1405.0, + 1500.0, + 1405.0, + 1539.0, + 324.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1531.0, + 1146.0, + 1531.0, + 1146.0, + 1570.0, + 348.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1531.0, + 1404.0, + 1531.0, + 1404.0, + 1570.0, + 1310.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1565.0, + 1031.0, + 1565.0, + 1031.0, + 1599.0, + 350.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1565.0, + 1226.0, + 1565.0, + 1226.0, + 1599.0, + 1093.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1594.0, + 1408.0, + 1594.0, + 1408.0, + 1636.0, + 339.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1627.0, + 706.0, + 1627.0, + 706.0, + 1666.0, + 348.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1627.0, + 1407.0, + 1627.0, + 1407.0, + 1666.0, + 797.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1657.0, + 835.0, + 1657.0, + 835.0, + 1695.0, + 346.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1657.0, + 1038.0, + 1657.0, + 1038.0, + 1695.0, + 857.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1690.0, + 1407.0, + 1690.0, + 1407.0, + 1727.0, + 327.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1723.0, + 1407.0, + 1723.0, + 1407.0, + 1756.0, + 350.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1754.0, + 1243.0, + 1754.0, + 1243.0, + 1785.0, + 349.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1787.0, + 827.0, + 1787.0, + 827.0, + 1824.0, + 325.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1787.0, + 1271.0, + 1787.0, + 1271.0, + 1824.0, + 898.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1787.0, + 1409.0, + 1787.0, + 1409.0, + 1824.0, + 1346.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1817.0, + 1410.0, + 1817.0, + 1410.0, + 1856.0, + 348.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1847.0, + 1387.0, + 1847.0, + 1387.0, + 1888.0, + 348.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1919.0, + 324.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1913.0, + 1272.0, + 1913.0, + 1272.0, + 1948.0, + 349.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 961.0, + 1214.0, + 961.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1145, + 828, + 1145, + 828, + 1421, + 298, + 1421 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 821, + 1405, + 821, + 1405, + 946, + 296, + 946 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 1039, + 1405, + 1039, + 1405, + 1134, + 297, + 1134 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1808, + 1404, + 1808, + 1404, + 1903, + 298, + 1903 + ], + "score": 0.964 + }, + { + "category_id": 3, + "poly": [ + 381, + 201, + 1287, + 201, + 1287, + 456, + 381, + 456 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1405, + 1692, + 1405, + 1796, + 298, + 1796 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 297, + 1921, + 1404, + 1921, + 1404, + 2008, + 297, + 2008 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 290, + 746, + 1403, + 746, + 1403, + 809, + 290, + 809 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1434, + 826, + 1434, + 826, + 1496, + 296, + 1496 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 497, + 652, + 1199, + 652, + 1199, + 736, + 497, + 736 + ], + "score": 0.935 + }, + { + "category_id": 4, + "poly": [ + 505, + 475, + 1184, + 475, + 1184, + 506, + 505, + 506 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 292, + 563, + 1316, + 563, + 1316, + 596, + 292, + 596 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 294, + 1557, + 1399, + 1557, + 1399, + 1629, + 294, + 1629 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 287, + 1639, + 1358, + 1639, + 1358, + 1681, + 287, + 1681 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 294, + 609, + 1356, + 609, + 1356, + 642, + 294, + 642 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1366, + 978, + 1400, + 978, + 1400, + 1008, + 1366, + 1008 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 676, + 1400, + 676, + 1400, + 707, + 1366, + 707 + ], + "score": 0.876 + }, + { + "category_id": 1, + "poly": [ + 292, + 1508, + 1404, + 1508, + 1404, + 1546, + 292, + 1546 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 297, + 511, + 1186, + 511, + 1186, + 550, + 297, + 550 + ], + "score": 0.828 + }, + { + "category_id": 0, + "poly": [ + 848, + 1159, + 1098, + 1159, + 1098, + 1191, + 848, + 1191 + ], + "score": 0.754 + }, + { + "category_id": 8, + "poly": [ + 572, + 956, + 1124, + 956, + 1124, + 1028, + 572, + 1028 + ], + "score": 0.723 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.667 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 860, + 2061, + 860, + 2085, + 841, + 2085 + ], + "score": 0.482 + }, + { + "category_id": 1, + "poly": [ + 867, + 1196, + 1375, + 1196, + 1375, + 1461, + 867, + 1461 + ], + "score": 0.47 + }, + { + "category_id": 8, + "poly": [ + 867, + 1196, + 1375, + 1196, + 1375, + 1461, + 867, + 1461 + ], + "score": 0.307 + }, + { + "category_id": 1, + "poly": [ + 572, + 956, + 1124, + 956, + 1124, + 1028, + 572, + 1028 + ], + "score": 0.272 + }, + { + "category_id": 14, + "poly": [ + 495, + 648, + 1203, + 648, + 1203, + 739, + 495, + 739 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } f ( x ) = { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } f _ { i } ( x ) \\quad { \\mathrm { w h e r e } } \\quad f _ { i } ( x ) : = \\mathbb { E } _ { \\xi _ { i } \\sim D _ { i } } F ( x ; \\xi _ { i } ) ." + }, + { + "category_id": 13, + "poly": [ + 1196, + 1692, + 1348, + 1692, + 1348, + 1724, + 1196, + 1724 + ], + "score": 0.94, + "latex": "W ^ { ( k ) } \\mathbb { 1 } ~ = ~ \\mathbb { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1318, + 1348, + 1318, + 1348, + 1361, + 1095, + 1361 + ], + "score": 0.93, + "latex": "g _ { i } ^ { ( k ) } = \\nabla F ( x _ { i } ^ { ( k ) } ; \\xi _ { i } ^ { ( k ) } )" + }, + { + "category_id": 13, + "poly": [ + 438, + 1594, + 709, + 1594, + 709, + 1628, + 438, + 1628 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ \\nabla F ( x ; \\xi _ { i } ) ] = \\nabla f _ { i } ( x )" + }, + { + "category_id": 13, + "poly": [ + 761, + 1593, + 1121, + 1593, + 1121, + 1629, + 761, + 1629 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\hat { \\mathbb { E } } \\| \\nabla \\dot { F } ( x ; \\xi _ { i } ) - \\mathbf { \\bar { \\nabla } } f _ { i } ( x ) \\| ^ { 2 } \\leq \\sigma ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 820, + 1727, + 1313, + 1727, + 1313, + 1764, + 820, + 1764 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\rho ( W ) : = \\operatorname* { m a x } _ { \\lambda _ { i } ( W ) \\neq 1 } \\{ | \\lambda _ { i } ( W ) | \\} \\in ( 0 , 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 505, + 1070, + 797, + 1070, + 797, + 1110, + 505, + 1110 + ], + "score": 0.93, + "latex": "W : = [ w _ { i j } ] _ { i , j = 1 } ^ { n } \\in \\mathbb { R } ^ { n \\times n } ." + }, + { + "category_id": 13, + "poly": [ + 400, + 746, + 462, + 746, + 462, + 780, + 400, + 780 + ], + "score": 0.92, + "latex": "f _ { i } ( x )" + }, + { + "category_id": 13, + "poly": [ + 807, + 1556, + 854, + 1556, + 854, + 1597, + 807, + 1597 + ], + "score": 0.92, + "latex": "\\xi _ { i } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1357, + 661, + 1357, + 661, + 1388, + 548, + 1388 + ], + "score": 0.92, + "latex": "{ \\check { W } } ^ { k } \\equiv W" + }, + { + "category_id": 13, + "poly": [ + 587, + 1510, + 649, + 1510, + 649, + 1544, + 587, + 1544 + ], + "score": 0.92, + "latex": "f _ { i } ( x )" + }, + { + "category_id": 13, + "poly": [ + 699, + 1872, + 820, + 1872, + 820, + 1903, + 699, + 1903 + ], + "score": 0.91, + "latex": "1 - \\rho \\to 0" + }, + { + "category_id": 13, + "poly": [ + 1051, + 958, + 1113, + 958, + 1113, + 990, + 1051, + 990 + ], + "score": 0.91, + "latex": "i = j" + }, + { + "category_id": 13, + "poly": [ + 529, + 1725, + 669, + 1725, + 669, + 1758, + 529, + 1758 + ], + "score": 0.91, + "latex": "W ^ { ( k ) } \\equiv W" + }, + { + "category_id": 13, + "poly": [ + 297, + 1040, + 515, + 1040, + 515, + 1074, + 297, + 1074 + ], + "score": 0.91, + "latex": "\\mathcal { N } _ { i } : = \\{ j | w _ { i j } > 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1763, + 377, + 1763, + 377, + 1798, + 297, + 1798 + ], + "score": 0.91, + "latex": "\\lambda _ { i } ( W )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1725, + 477, + 1725, + 477, + 1757, + 298, + 1757 + ], + "score": 0.91, + "latex": "\\mathbb { 1 } ^ { T } W ^ { ( k ) } = \\mathbb { 1 } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 924, + 1244, + 1161, + 1244, + 1161, + 1277, + 924, + 1277 + ], + "score": 0.91, + "latex": "k = 0 , 1 , 2 , . . . , T - 1" + }, + { + "category_id": 13, + "poly": [ + 843, + 1509, + 1201, + 1509, + 1201, + 1545, + 843, + 1545 + ], + "score": 0.9, + "latex": "\\| \\nabla f _ { i } ( x ) - \\nabla f _ { i } ( y ) \\| \\leq L \\| x - y \\|" + }, + { + "category_id": 13, + "poly": [ + 916, + 1923, + 978, + 1923, + 978, + 1953, + 916, + 1953 + ], + "score": 0.9, + "latex": "\\rho ( W )" + }, + { + "category_id": 13, + "poly": [ + 817, + 1691, + 880, + 1691, + 880, + 1724, + 817, + 1724 + ], + "score": 0.89, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1639, + 1175, + 1639, + 1175, + 1680, + 782, + 1680 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\| \\nabla f _ { i } ( x ) - \\nabla f ( x ) \\| ^ { 2 } \\leq b ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 745, + 779, + 780, + 779, + 780, + 808, + 745, + 808 + ], + "score": 0.89, + "latex": "D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 446, + 1811, + 511, + 1811, + 511, + 1841, + 446, + 1841 + ], + "score": 0.89, + "latex": "1 - \\rho" + }, + { + "category_id": 13, + "poly": [ + 1161, + 1281, + 1224, + 1281, + 1224, + 1313, + 1161, + 1313 + ], + "score": 0.88, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 877, + 747, + 902, + 747, + 902, + 779, + 877, + 779 + ], + "score": 0.87, + "latex": "\\xi _ { i }" + }, + { + "category_id": 13, + "poly": [ + 372, + 917, + 413, + 917, + 413, + 948, + 372, + 948 + ], + "score": 0.87, + "latex": "w _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 299, + 782, + 331, + 782, + 331, + 808, + 299, + 808 + ], + "score": 0.85, + "latex": "D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1199, + 1333, + 1199, + 1333, + 1240, + 1111, + 1240 + ], + "score": 0.85, + "latex": "m _ { i } ^ { ( 0 ) } = 0 , \\beta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 988, + 916, + 1005, + 916, + 1005, + 946, + 988, + 946 + ], + "score": 0.85, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 901, + 1362, + 1343, + 1362, + 1343, + 1409, + 901, + 1409 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { m _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( \\beta m _ { j } ^ { ( k ) } + g _ { j } ^ { ( k ) } \\big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1508, + 1398, + 1508, + 1398, + 1543, + 1286, + 1543 + ], + "score": 0.82, + "latex": "x , y \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1928, + 806, + 1928, + 806, + 1952, + 789, + 1952 + ], + "score": 0.81, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1566, + 1285, + 1566, + 1285, + 1592, + 1266, + 1592 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1929, + 1401, + 1929, + 1401, + 1952, + 1384, + 1952 + ], + "score": 0.79, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 676, + 1512, + 698, + 1512, + 698, + 1538, + 676, + 1538 + ], + "score": 0.78, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1640, + 1350, + 1640, + 1350, + 1672, + 1265, + 1672 + ], + "score": 0.78, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 631, + 749, + 644, + 749, + 644, + 775, + 631, + 775 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1567, + 1348, + 1567, + 1348, + 1592, + 1336, + 1592 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1811, + 1281, + 1811, + 1281, + 1838, + 1249, + 1838 + ], + "score": 0.75, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1197, + 1063, + 1197, + 1063, + 1240, + 1015, + 1240 + ], + "score": 0.75, + "latex": "x _ { i } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 916, + 1111, + 916, + 1111, + 942, + 1097, + 942 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1043, + 1292, + 1043, + 1292, + 1068, + 1278, + 1068 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 782, + 1764, + 814, + 1764, + 814, + 1792, + 782, + 1792 + ], + "score": 0.74, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 515, + 616, + 534, + 616, + 534, + 637, + 515, + 637 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 997, + 960, + 1010, + 960, + 1010, + 985, + 997, + 985 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 977, + 1043, + 991, + 1043, + 991, + 1068, + 977, + 1068 + ], + "score": 0.7, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 477, + 1978, + 508, + 1978, + 508, + 2003, + 477, + 2003 + ], + "score": 0.66, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1300, + 1248, + 1313, + 1248, + 1313, + 1272, + 1300, + 1272 + ], + "score": 0.65, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 804, + 959, + 821, + 959, + 821, + 990, + 804, + 990 + ], + "score": 0.61, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 509, + 1103, + 542, + 1103, + 542, + 1130, + 509, + 1130 + ], + "score": 0.6, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 901, + 1410, + 1334, + 1410, + 1334, + 1458, + 901, + 1458 + ], + "score": 0.56, + "latex": "\\begin{array} { r } { x _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( x _ { j } ^ { ( k ) } - \\gamma m _ { j } ^ { ( k ) } \\big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 986, + 1213, + 1007, + 1213, + 1007, + 1239, + 986, + 1239 + ], + "score": 0.55, + "latex": "\\gamma _ { - }" + }, + { + "category_id": 14, + "poly": [ + 901, + 1410, + 1333, + 1410, + 1333, + 1458, + 901, + 1458 + ], + "score": 0.49, + "latex": "\\begin{array} { r } { x _ { i } ^ { ( k + 1 ) } = \\sum _ { j \\in \\mathcal { N } _ { i } } w _ { i j } ^ { ( k ) } \\big ( x _ { j } ^ { ( k ) } - \\gamma m _ { j } ^ { ( k ) } \\big ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 572, + 954, + 839, + 954, + 839, + 1033, + 572, + 1033 + ], + "score": 0.36, + "latex": "w _ { i j } \\left\\{ { \\begin{array} { l l } { > 0 } & { { \\mathrm { ~ i f ~ n o d e ~ } } j { \\mathrm { ~ i s } } } \\\\ { = 0 } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} } \\right." + }, + { + "category_id": 13, + "poly": [ + 702, + 1146, + 817, + 1146, + 817, + 1178, + 702, + 1178 + ], + "score": 0.28, + "latex": "\\mathbf { ( D m S G D ) }" + }, + { + "category_id": 13, + "poly": [ + 447, + 1766, + 481, + 1766, + 481, + 1794, + 447, + 1794 + ], + "score": 0.26, + "latex": "i -" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 204.0, + 498.0, + 204.0, + 498.0, + 242.0, + 458.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 207.0, + 813.0, + 207.0, + 813.0, + 245.0, + 774.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 208.0, + 1010.0, + 208.0, + 1010.0, + 246.0, + 971.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 208.0, + 1211.0, + 208.0, + 1211.0, + 246.0, + 1171.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 254.0, + 424.0, + 254.0, + 424.0, + 293.0, + 383.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 255.0, + 575.0, + 255.0, + 575.0, + 294.0, + 534.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 255.0, + 743.0, + 255.0, + 743.0, + 292.0, + 703.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 255.0, + 887.0, + 255.0, + 887.0, + 293.0, + 848.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 257.0, + 941.0, + 257.0, + 941.0, + 293.0, + 900.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 256.0, + 1084.0, + 256.0, + 1084.0, + 295.0, + 1045.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 256.0, + 1141.0, + 256.0, + 1141.0, + 294.0, + 1100.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 256.0, + 1285.0, + 256.0, + 1285.0, + 295.0, + 1246.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 320.0, + 424.0, + 320.0, + 424.0, + 359.0, + 383.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 320.0, + 575.0, + 320.0, + 575.0, + 358.0, + 533.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 317.0, + 743.0, + 317.0, + 743.0, + 356.0, + 704.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 317.0, + 887.0, + 317.0, + 887.0, + 355.0, + 848.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 318.0, + 940.0, + 318.0, + 940.0, + 357.0, + 899.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 318.0, + 1084.0, + 318.0, + 1084.0, + 357.0, + 1045.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 317.0, + 1286.0, + 317.0, + 1286.0, + 359.0, + 1242.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 361.0, + 498.0, + 361.0, + 498.0, + 400.0, + 457.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 359.0, + 812.0, + 359.0, + 812.0, + 393.0, + 775.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 360.0, + 1009.0, + 360.0, + 1009.0, + 393.0, + 971.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 360.0, + 1210.0, + 360.0, + 1210.0, + 393.0, + 1172.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 394.0, + 830.0, + 394.0, + 830.0, + 413.0, + 748.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 393.0, + 1045.0, + 393.0, + 1045.0, + 415.0, + 934.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 393.0, + 1249.0, + 393.0, + 1249.0, + 415.0, + 1141.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 402.0, + 532.0, + 402.0, + 532.0, + 431.0, + 430.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 429.0, + 1144.0, + 429.0, + 1144.0, + 458.0, + 864.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 321.5, + 1125.0, + 321.5, + 1125.0, + 352.5, + 1114.0, + 352.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1914.0, + 788.0, + 1914.0, + 788.0, + 1960.0, + 326.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1914.0, + 915.0, + 1914.0, + 915.0, + 1960.0, + 807.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1914.0, + 1383.0, + 1914.0, + 1383.0, + 1960.0, + 979.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1914.0, + 1409.0, + 1914.0, + 1409.0, + 1960.0, + 1402.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1949.0, + 1405.0, + 1949.0, + 1405.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1979.0, + 476.0, + 1979.0, + 476.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1979.0, + 1259.0, + 1979.0, + 1259.0, + 2009.0, + 509.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 471.0, + 1182.0, + 471.0, + 1182.0, + 511.0, + 507.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1155.0, + 1100.0, + 1155.0, + 1100.0, + 1198.0, + 844.0, + 1198.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": [ + 837.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 837.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1142.0, + 701.0, + 1142.0, + 701.0, + 1181.0, + 294.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1142.0, + 832.0, + 1142.0, + 832.0, + 1181.0, + 818.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1176.0, + 830.0, + 1176.0, + 830.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 828.0, + 1207.0, + 828.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1235.0, + 831.0, + 1235.0, + 831.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1266.0, + 832.0, + 1266.0, + 832.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 828.0, + 1300.0, + 828.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 828.0, + 1327.0, + 828.0, + 1363.0, + 292.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1352.0, + 547.0, + 1352.0, + 547.0, + 1395.0, + 291.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1352.0, + 829.0, + 1352.0, + 829.0, + 1395.0, + 662.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1391.0, + 662.0, + 1391.0, + 662.0, + 1422.0, + 296.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1405.0, + 821.0, + 1405.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 851.0, + 1407.0, + 851.0, + 1407.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 371.0, + 915.0, + 371.0, + 948.0, + 295.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 915.0, + 987.0, + 915.0, + 987.0, + 948.0, + 414.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 915.0, + 1096.0, + 915.0, + 1096.0, + 948.0, + 1006.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 915.0, + 1247.0, + 915.0, + 1247.0, + 948.0, + 1112.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1038.0, + 976.0, + 1038.0, + 976.0, + 1076.0, + 516.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1038.0, + 1277.0, + 1038.0, + 1277.0, + 1076.0, + 992.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1038.0, + 1406.0, + 1038.0, + 1406.0, + 1076.0, + 1293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1062.0, + 504.0, + 1062.0, + 504.0, + 1116.0, + 286.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1062.0, + 1412.0, + 1062.0, + 1412.0, + 1116.0, + 798.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1097.0, + 508.0, + 1097.0, + 508.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1097.0, + 1408.0, + 1097.0, + 1408.0, + 1139.0, + 543.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1807.0, + 445.0, + 1807.0, + 445.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1807.0, + 1248.0, + 1807.0, + 1248.0, + 1846.0, + 512.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1807.0, + 1405.0, + 1807.0, + 1405.0, + 1846.0, + 1282.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1841.0, + 1404.0, + 1841.0, + 1404.0, + 1875.0, + 294.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1871.0, + 698.0, + 1871.0, + 698.0, + 1905.0, + 296.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1871.0, + 831.0, + 1871.0, + 831.0, + 1905.0, + 821.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1689.0, + 816.0, + 1689.0, + 816.0, + 1729.0, + 292.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1689.0, + 1195.0, + 1689.0, + 1195.0, + 1729.0, + 881.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1729.0, + 1349.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1717.0, + 297.0, + 1717.0, + 297.0, + 1771.0, + 291.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1717.0, + 528.0, + 1717.0, + 528.0, + 1771.0, + 478.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1717.0, + 819.0, + 1717.0, + 819.0, + 1771.0, + 670.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1717.0, + 1407.0, + 1717.0, + 1407.0, + 1771.0, + 1314.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 296.0, + 1762.0, + 296.0, + 1796.0, + 293.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1762.0, + 446.0, + 1762.0, + 446.0, + 1796.0, + 378.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1762.0, + 781.0, + 1762.0, + 781.0, + 1796.0, + 482.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1762.0, + 839.0, + 1762.0, + 839.0, + 1796.0, + 815.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 399.0, + 744.0, + 399.0, + 780.0, + 294.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 744.0, + 630.0, + 744.0, + 630.0, + 780.0, + 463.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 744.0, + 876.0, + 744.0, + 876.0, + 780.0, + 645.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 744.0, + 1405.0, + 744.0, + 1405.0, + 780.0, + 903.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 778.0, + 744.0, + 778.0, + 744.0, + 809.0, + 332.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 778.0, + 1100.0, + 778.0, + 1100.0, + 809.0, + 781.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1434.0, + 827.0, + 1434.0, + 827.0, + 1467.0, + 296.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1465.0, + 749.0, + 1465.0, + 749.0, + 1499.0, + 295.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 562.0, + 1307.0, + 562.0, + 1307.0, + 597.0, + 295.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1548.0, + 806.0, + 1548.0, + 806.0, + 1609.0, + 281.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1548.0, + 1265.0, + 1548.0, + 1265.0, + 1609.0, + 855.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1548.0, + 1335.0, + 1548.0, + 1335.0, + 1609.0, + 1286.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1548.0, + 1416.0, + 1548.0, + 1416.0, + 1609.0, + 1349.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1592.0, + 437.0, + 1592.0, + 437.0, + 1629.0, + 292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1592.0, + 760.0, + 1592.0, + 760.0, + 1629.0, + 710.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1592.0, + 1133.0, + 1592.0, + 1133.0, + 1629.0, + 1122.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1633.0, + 781.0, + 1633.0, + 781.0, + 1686.0, + 288.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1633.0, + 1264.0, + 1633.0, + 1264.0, + 1686.0, + 1176.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1633.0, + 1362.0, + 1633.0, + 1362.0, + 1686.0, + 1351.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 514.0, + 605.0, + 514.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 605.0, + 1361.0, + 605.0, + 1361.0, + 648.0, + 535.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1503.0, + 586.0, + 1503.0, + 586.0, + 1550.0, + 291.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1503.0, + 675.0, + 1503.0, + 675.0, + 1550.0, + 650.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1503.0, + 842.0, + 1503.0, + 842.0, + 1550.0, + 699.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1503.0, + 1285.0, + 1503.0, + 1285.0, + 1550.0, + 1202.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1503.0, + 1411.0, + 1503.0, + 1411.0, + 1550.0, + 1399.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 510.0, + 1187.0, + 510.0, + 1187.0, + 554.0, + 290.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1198.0, + 985.0, + 1198.0, + 985.0, + 1245.0, + 873.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1198.0, + 1014.0, + 1198.0, + 1014.0, + 1245.0, + 1008.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1196.0, + 1338.0, + 1196.0, + 1338.0, + 1243.0, + 1334.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1242.0, + 923.0, + 1242.0, + 923.0, + 1278.0, + 873.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1242.0, + 1299.0, + 1242.0, + 1299.0, + 1278.0, + 1162.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1242.0, + 1352.0, + 1242.0, + 1352.0, + 1278.0, + 1314.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1283.0, + 1160.0, + 1283.0, + 1160.0, + 1315.0, + 906.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1283.0, + 1238.0, + 1283.0, + 1238.0, + 1315.0, + 1225.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1317.0, + 1094.0, + 1317.0, + 1094.0, + 1366.0, + 908.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1306.0, + 1368.0, + 1306.0, + 1368.0, + 1376.0, + 1349.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1347.0, + 1363.0, + 1347.0, + 1363.0, + 1420.0, + 1344.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1400.0, + 988.0, + 1400.0, + 988.0, + 1443.0, + 913.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1394.0, + 1356.0, + 1394.0, + 1356.0, + 1465.0, + 1335.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1192.5, + 1156.0, + 1192.5, + 1156.0, + 1254.5, + 1023.0, + 1254.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1316.5, + 1269.0, + 1316.5, + 1269.0, + 1365.5, + 1164.0, + 1365.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1348.5, + 1160.0, + 1348.5, + 1160.0, + 1417.5, + 1108.0, + 1417.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1361.0, + 1236.0, + 1361.0, + 1236.0, + 1414.0, + 1169.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1365.5, + 942.0, + 1365.5, + 942.0, + 1408.0, + 906.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1364.0, + 1117.0, + 1364.0, + 1117.0, + 1412.0, + 983.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1411.5, + 1109.0, + 1411.5, + 1109.0, + 1460.5, + 979.0, + 1460.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1424.0, + 933.0, + 1424.0, + 933.0, + 1455.0, + 903.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 951.0, + 996.0, + 951.0, + 996.0, + 995.0, + 840.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 951.0, + 1050.0, + 951.0, + 1050.0, + 995.0, + 1011.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 951.0, + 1126.0, + 951.0, + 1126.0, + 995.0, + 1114.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 990.0, + 843.0, + 990.0, + 843.0, + 1033.0, + 840.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.25, + 978.5, + 618.25, + 978.5, + 618.25, + 1018.5, + 572.25, + 1018.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1354, + 1406, + 1354, + 1406, + 1779, + 298, + 1779 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1793, + 1404, + 1793, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1064, + 1404, + 1064, + 1404, + 1340, + 298, + 1340 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 569, + 1405, + 569, + 1405, + 695, + 297, + 695 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 201, + 1407, + 201, + 1407, + 357, + 299, + 357 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 707, + 1404, + 707, + 1404, + 803, + 298, + 803 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 473, + 376, + 1197, + 376, + 1197, + 463, + 473, + 463 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 303, + 483, + 1401, + 483, + 1401, + 555, + 303, + 555 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 298, + 1009, + 540, + 1009, + 540, + 1042, + 298, + 1042 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 939, + 1397, + 939, + 1397, + 974, + 296, + 974 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 404, + 1400, + 404, + 1400, + 434, + 1366, + 434 + ], + "score": 0.852 + }, + { + "category_id": 9, + "poly": [ + 1366, + 892, + 1400, + 892, + 1400, + 920, + 1366, + 920 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 311, + 815, + 1361, + 815, + 1361, + 896, + 311, + 896 + ], + "score": 0.81 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.766 + }, + { + "category_id": 8, + "poly": [ + 881, + 816, + 1355, + 816, + 1355, + 894, + 881, + 894 + ], + "score": 0.131 + }, + { + "category_id": 13, + "poly": [ + 405, + 483, + 638, + 483, + 638, + 528, + 405, + 528 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\bar { x } ^ { ( k ) } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { i } ^ { ( k ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 473, + 372, + 1199, + 372, + 1199, + 467, + 473, + 467 + ], + "score": 0.93, + "latex": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { n T } } + \\frac { n \\sigma ^ { 2 } } { T ( 1 - \\rho ) } + \\frac { n b ^ { 2 } } { T ( 1 - \\rho ) ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1063, + 602, + 1254, + 602, + 1254, + 636, + 1063, + 636 + ], + "score": 0.93, + "latex": "T = \\Omega ( 1 / ( n \\epsilon ^ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 1012, + 568, + 1104, + 568, + 1104, + 605, + 1012, + 605 + ], + "score": 0.91, + "latex": "1 / \\sqrt { n T }" + }, + { + "category_id": 13, + "poly": [ + 737, + 235, + 796, + 235, + 796, + 267, + 737, + 267 + ], + "score": 0.91, + "latex": "\\Omega ( n )" + }, + { + "category_id": 13, + "poly": [ + 1344, + 237, + 1403, + 237, + 1403, + 267, + 1344, + 267 + ], + "score": 0.9, + "latex": "\\Omega ( n )" + }, + { + "category_id": 13, + "poly": [ + 1344, + 207, + 1403, + 207, + 1403, + 236, + 1344, + 236 + ], + "score": 0.89, + "latex": "\\Omega ( n )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 663, + 1106, + 663, + 1106, + 691, + 1065, + 691 + ], + "score": 0.85, + "latex": "n T" + }, + { + "category_id": 13, + "poly": [ + 992, + 740, + 1033, + 740, + 1033, + 767, + 992, + 767 + ], + "score": 0.83, + "latex": "\\mathbf { \\nabla } \\cdot n T" + }, + { + "category_id": 13, + "poly": [ + 887, + 771, + 910, + 771, + 910, + 797, + 887, + 797 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 679, + 740, + 703, + 740, + 703, + 766, + 679, + 766 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 585, + 573, + 609, + 573, + 609, + 599, + 585, + 599 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 822, + 664, + 845, + 664, + 845, + 690, + 822, + 690 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1097, + 210, + 1118, + 210, + 1118, + 231, + 1097, + 231 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1001, + 639, + 1020, + 639, + 1020, + 660, + 1001, + 660 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 14, + "poly": [ + 525, + 815, + 1360, + 815, + 1360, + 895, + 525, + 895 + ], + "score": 0.7, + "latex": " \\mathrm { 1 : } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 2 } } } \\right) \\qquad { \\mathrm { H e t e r o g e n e o u s ~ d a t a : } } \\quad T = \\Omega \\left( { \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 4 } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1150, + 269, + 1169, + 269, + 1169, + 291, + 1150, + 291 + ], + "score": 0.69, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 584, + 640, + 598, + 640, + 598, + 660, + 584, + 660 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1149, + 296, + 1172, + 296, + 1172, + 325, + 1149, + 325 + ], + "score": 0.6, + "latex": "\\Omega" + }, + { + "category_id": 14, + "poly": [ + 560, + 816, + 791, + 816, + 791, + 894, + 560, + 894 + ], + "score": 0.5, + "latex": "T = \\Omega \\left( \\frac { n ^ { 3 } } { ( 1 - \\rho ) ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 557, + 664, + 578, + 664, + 578, + 690, + 557, + 690 + ], + "score": 0.45, + "latex": "T" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1007.0, + 542.0, + 1007.0, + 542.0, + 1046.0, + 293.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1353.0, + 1404.0, + 1353.0, + 1404.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1411.0, + 1404.0, + 1411.0, + 1404.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1444.0, + 1408.0, + 1444.0, + 1408.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1512.0, + 292.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1502.0, + 1406.0, + 1502.0, + 1406.0, + 1545.0, + 292.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1574.0, + 292.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1566.0, + 1406.0, + 1566.0, + 1406.0, + 1602.0, + 295.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1595.0, + 1408.0, + 1595.0, + 1408.0, + 1633.0, + 293.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1627.0, + 1406.0, + 1627.0, + 1406.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 1404.0, + 1657.0, + 1404.0, + 1693.0, + 295.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1723.0, + 292.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1751.0, + 769.0, + 1751.0, + 769.0, + 1782.0, + 296.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 1409.0, + 1792.0, + 1409.0, + 1830.0, + 294.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1923.0, + 291.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1915.0, + 1407.0, + 1915.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1977.0, + 1145.0, + 1977.0, + 1145.0, + 2008.0, + 297.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1103.0, + 294.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1133.0, + 292.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1121.0, + 1406.0, + 1121.0, + 1406.0, + 1167.0, + 292.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 1406.0, + 1156.0, + 1406.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1188.0, + 1404.0, + 1188.0, + 1404.0, + 1220.0, + 296.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1408.0, + 1218.0, + 1408.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1314.0, + 296.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1164.0, + 1308.0, + 1164.0, + 1344.0, + 294.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 584.0, + 570.0, + 584.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 570.0, + 1011.0, + 570.0, + 1011.0, + 606.0, + 610.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 606.0, + 1105.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 1062.0, + 601.0, + 1062.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 601.0, + 1406.0, + 601.0, + 1406.0, + 637.0, + 1255.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 633.0, + 583.0, + 633.0, + 583.0, + 666.0, + 295.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 633.0, + 1000.0, + 633.0, + 1000.0, + 666.0, + 599.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 666.0, + 1021.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 556.0, + 661.0, + 556.0, + 698.0, + 295.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 661.0, + 821.0, + 661.0, + 821.0, + 698.0, + 579.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 661.0, + 1064.0, + 661.0, + 1064.0, + 698.0, + 846.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 661.0, + 1364.0, + 661.0, + 1364.0, + 698.0, + 1107.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 202.0, + 1096.0, + 202.0, + 1096.0, + 239.0, + 297.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 202.0, + 1343.0, + 202.0, + 1343.0, + 239.0, + 1119.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 202.0, + 1407.0, + 202.0, + 1407.0, + 239.0, + 1404.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 234.0, + 736.0, + 234.0, + 736.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 234.0, + 1343.0, + 234.0, + 1343.0, + 267.0, + 797.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 263.0, + 1149.0, + 263.0, + 1149.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 263.0, + 1407.0, + 263.0, + 1407.0, + 298.0, + 1170.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 295.0, + 1148.0, + 295.0, + 1148.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 295.0, + 1398.0, + 295.0, + 1398.0, + 328.0, + 1173.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 324.0, + 1405.0, + 324.0, + 1405.0, + 358.0, + 297.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 710.0, + 1402.0, + 710.0, + 1402.0, + 740.0, + 297.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 678.0, + 739.0, + 678.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 739.0, + 991.0, + 739.0, + 991.0, + 773.0, + 704.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 773.0, + 1034.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 886.0, + 768.0, + 886.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 768.0, + 1372.0, + 768.0, + 1372.0, + 806.0, + 911.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 469.0, + 404.0, + 469.0, + 404.0, + 547.0, + 285.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 469.0, + 1410.0, + 469.0, + 1410.0, + 547.0, + 639.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 519.0, + 1098.0, + 519.0, + 1098.0, + 559.0, + 296.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 937.0, + 1397.0, + 937.0, + 1397.0, + 976.0, + 296.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 790.0, + 524.0, + 790.0, + 524.0, + 915.0, + 298.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 780.0, + 1383.0, + 780.0, + 1383.0, + 927.0, + 1361.0, + 927.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1563, + 1405, + 1563, + 1405, + 1751, + 297, + 1751 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 632, + 1404, + 632, + 1404, + 757, + 297, + 757 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 768, + 1405, + 768, + 1405, + 928, + 298, + 928 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1876, + 1402, + 1876, + 1402, + 2002, + 299, + 2002 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 430, + 1405, + 430, + 1405, + 524, + 298, + 524 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 515, + 1233, + 1179, + 1233, + 1179, + 1381, + 515, + 1381 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1072, + 1399, + 1072, + 1399, + 1136, + 297, + 1136 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 295, + 1454, + 1397, + 1454, + 1397, + 1531, + 295, + 1531 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 201, + 1405, + 201, + 1405, + 418, + 298, + 418 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 295, + 1156, + 1399, + 1156, + 1399, + 1221, + 295, + 1221 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 297, + 1788, + 1401, + 1788, + 1401, + 1853, + 297, + 1853 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 297, + 563, + 949, + 563, + 949, + 604, + 297, + 604 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 1390, + 888, + 1390, + 888, + 1431, + 296, + 1431 + ], + "score": 0.919 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1291, + 1400, + 1291, + 1400, + 1321, + 1366, + 1321 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1007, + 1400, + 1007, + 1400, + 1037, + 1366, + 1037 + ], + "score": 0.877 + }, + { + "category_id": 8, + "poly": [ + 464, + 986, + 1229, + 986, + 1229, + 1065, + 464, + 1065 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.726 + }, + { + "category_id": 0, + "poly": [ + 296, + 938, + 1190, + 938, + 1190, + 972, + 296, + 972 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 296, + 938, + 1190, + 938, + 1190, + 972, + 296, + 972 + ], + "score": 0.468 + }, + { + "category_id": 13, + "poly": [ + 978, + 833, + 1088, + 833, + 1088, + 867, + 978, + 867 + ], + "score": 0.93, + "latex": "\\lceil \\log _ { 2 } ^ { - } ( n ) \\rceil" + }, + { + "category_id": 13, + "poly": [ + 295, + 1597, + 763, + 1597, + 763, + 1630, + 295, + 1630 + ], + "score": 0.92, + "latex": "1 - \\rho ( W ^ { \\mathrm { H y p e r C u b e } } ) = 2 / ( 1 + \\log _ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 759, + 864, + 889, + 864, + 889, + 898, + 759, + 898 + ], + "score": 0.92, + "latex": "\\Omega ( \\log _ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1458, + 1397, + 1458, + 1397, + 1495, + 1119, + 1495 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\| W - \\frac { 1 } { n } \\pm \\Im \\Im ^ { T } \\| _ { 2 } \\neq \\rho ( W ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 531, + 1391, + 880, + 1391, + 880, + 1432, + 531, + 1432 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 584, + 1492, + 934, + 1492, + 934, + 1531, + 584, + 1531 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\| W ^ { \\mathrm { e x p } } - \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\| _ { 2 } = \\rho ( W ^ { \\mathrm { e x p } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 741, + 1689, + 834, + 1689, + 834, + 1717, + 741, + 1717 + ], + "score": 0.9, + "latex": "n = 2 ^ { \\tau }" + }, + { + "category_id": 14, + "poly": [ + 513, + 1231, + 1184, + 1231, + 1184, + 1381, + 513, + 1381 + ], + "score": 0.89, + "latex": "1 - \\rho ( W ^ { \\mathrm { e x p } } ) \\left\\{ \\begin{array} { l l } { \\displaystyle = \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s e \\nu e n n u m b e r } \\\\ { \\displaystyle < \\frac { 2 } { 1 + \\lceil \\log _ { 2 } ( n ) \\rceil } , w h e n n i s o d d n u m b e r } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 809, + 696, + 871, + 696, + 871, + 727, + 809, + 727 + ], + "score": 0.89, + "latex": "1 - \\rho" + }, + { + "category_id": 13, + "poly": [ + 531, + 800, + 797, + 800, + 797, + 835, + 531, + 835 + ], + "score": 0.89, + "latex": "2 ^ { \\bar { 0 } } , 2 ^ { \\bar { 1 } } , \\cdot \\cdot \\cdot , 2 ^ { \\lfloor \\log _ { 2 } ( n - 1 ) \\rfloor }" + }, + { + "category_id": 13, + "poly": [ + 882, + 1105, + 948, + 1105, + 948, + 1134, + 882, + 1134 + ], + "score": 0.88, + "latex": "1 - \\rho" + }, + { + "category_id": 14, + "poly": [ + 465, + 982, + 1234, + 982, + 1234, + 1065, + 465, + 1065 + ], + "score": 0.87, + "latex": "w _ { i j } ^ { \\mathrm { e x p } } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { \\lceil \\log _ { 2 } ( n ) \\rceil + 1 } } & { \\mathrm { i f ~ } \\log _ { 2 } ( \\bmod ( j - i , n ) ) \\mathrm { ~ i s ~ a n ~ i n t e g e r ~ o r ~ } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e . } } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 1080, + 772, + 1148, + 772, + 1148, + 800, + 1080, + 800 + ], + "score": 0.86, + "latex": "n - 1" + }, + { + "category_id": 13, + "poly": [ + 988, + 1820, + 1046, + 1820, + 1046, + 1853, + 988, + 1853 + ], + "score": 0.85, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 833, + 1460, + 866, + 1460, + 866, + 1488, + 833, + 1488 + ], + "score": 0.65, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 347, + 1915, + 367, + 1915, + 367, + 1936, + 347, + 1936 + ], + "score": 0.64, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1695, + 1152, + 1695, + 1152, + 1715, + 1135, + 1715 + ], + "score": 0.62, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 875, + 1658, + 909, + 1658, + 909, + 1687, + 875, + 1687 + ], + "score": 0.48, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 757, + 992, + 987, + 992, + 987, + 1029, + 757, + 1029 + ], + "score": 0.4, + "latex": "\\log _ { 2 } ( \\mathrm { m o d } ( j - i , n ) )" + }, + { + "category_id": 13, + "poly": [ + 877, + 1567, + 920, + 1567, + 920, + 1598, + 877, + 1598 + ], + "score": 0.33, + "latex": "I 5 9" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 559.0, + 950.0, + 559.0, + 950.0, + 614.0, + 289.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 936.0, + 1192.0, + 936.0, + 1192.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1562.0, + 876.0, + 1562.0, + 876.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1562.0, + 1406.0, + 1562.0, + 1406.0, + 1604.0, + 921.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1586.0, + 294.0, + 1586.0, + 294.0, + 1638.0, + 289.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1586.0, + 1408.0, + 1586.0, + 1408.0, + 1638.0, + 764.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1663.0, + 294.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1658.0, + 874.0, + 1658.0, + 874.0, + 1693.0, + 292.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1658.0, + 1407.0, + 1658.0, + 1407.0, + 1693.0, + 910.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1688.0, + 740.0, + 1688.0, + 740.0, + 1724.0, + 295.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1688.0, + 1134.0, + 1688.0, + 1134.0, + 1724.0, + 835.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1688.0, + 1405.0, + 1688.0, + 1405.0, + 1724.0, + 1153.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1719.0, + 1051.0, + 1719.0, + 1051.0, + 1755.0, + 295.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 666.0, + 295.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 663.0, + 1406.0, + 663.0, + 1406.0, + 699.0, + 294.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 808.0, + 693.0, + 808.0, + 730.0, + 292.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 693.0, + 1405.0, + 693.0, + 1405.0, + 730.0, + 872.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 723.0, + 1367.0, + 723.0, + 1367.0, + 761.0, + 292.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 765.0, + 1079.0, + 765.0, + 1079.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 765.0, + 1406.0, + 765.0, + 1406.0, + 809.0, + 1149.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 795.0, + 530.0, + 795.0, + 530.0, + 841.0, + 292.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 795.0, + 1407.0, + 795.0, + 1407.0, + 841.0, + 798.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 828.0, + 977.0, + 828.0, + 977.0, + 874.0, + 291.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 828.0, + 1406.0, + 828.0, + 1406.0, + 874.0, + 1089.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 864.0, + 758.0, + 864.0, + 758.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 902.0, + 890.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 890.0, + 945.0, + 890.0, + 945.0, + 936.0, + 292.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1877.0, + 1406.0, + 1877.0, + 1406.0, + 1913.0, + 294.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 346.0, + 1910.0, + 346.0, + 1943.0, + 295.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1943.0, + 368.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1404.0, + 1938.0, + 1404.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 535.0, + 1971.0, + 535.0, + 2004.0, + 294.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1406.0, + 429.0, + 1406.0, + 465.0, + 292.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1403.0, + 461.0, + 1403.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1407.0, + 490.0, + 1407.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1073.0, + 1399.0, + 1073.0, + 1399.0, + 1105.0, + 297.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 881.0, + 1100.0, + 881.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1100.0, + 1226.0, + 1100.0, + 1226.0, + 1139.0, + 949.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1450.0, + 832.0, + 1450.0, + 832.0, + 1499.0, + 291.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1450.0, + 1118.0, + 1450.0, + 1118.0, + 1499.0, + 867.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1450.0, + 1402.0, + 1450.0, + 1402.0, + 1499.0, + 1398.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1484.0, + 583.0, + 1484.0, + 583.0, + 1534.0, + 291.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1484.0, + 1192.0, + 1484.0, + 1192.0, + 1534.0, + 935.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 197.0, + 1409.0, + 197.0, + 1409.0, + 241.0, + 292.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 271.0, + 292.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1409.0, + 260.0, + 1409.0, + 301.0, + 292.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 295.0, + 1407.0, + 295.0, + 1407.0, + 333.0, + 293.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1406.0, + 323.0, + 1406.0, + 362.0, + 293.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 355.0, + 1406.0, + 355.0, + 1406.0, + 390.0, + 296.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 386.0, + 1320.0, + 386.0, + 1320.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1158.0, + 1404.0, + 1158.0, + 1404.0, + 1194.0, + 295.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 1385.0, + 1186.0, + 1385.0, + 1225.0, + 294.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1819.0, + 987.0, + 1819.0, + 987.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1819.0, + 1307.0, + 1819.0, + 1307.0, + 1855.0, + 1047.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1382.0, + 530.0, + 1382.0, + 530.0, + 1435.0, + 291.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1382.0, + 890.0, + 1382.0, + 890.0, + 1435.0, + 881.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 936.0, + 1192.0, + 936.0, + 1192.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 704, + 1407, + 704, + 1407, + 922, + 297, + 922 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 937, + 202, + 937, + 448, + 298, + 448 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 460, + 939, + 460, + 939, + 616, + 298, + 616 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1093, + 1403, + 1093, + 1403, + 1185, + 296, + 1185 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1739, + 1405, + 1739, + 1405, + 1866, + 297, + 1866 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 296, + 1623, + 1403, + 1623, + 1403, + 1719, + 296, + 1719 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 960, + 224, + 1392, + 224, + 1392, + 571, + 960, + 571 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1897, + 1403, + 1897, + 1403, + 1993, + 298, + 1993 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1190, + 1403, + 1190, + 1403, + 1284, + 297, + 1284 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 1299, + 1404, + 1299, + 1404, + 1393, + 297, + 1393 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 560, + 977, + 1134, + 977, + 1134, + 1091, + 560, + 1091 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 595, + 1398, + 1104, + 1398, + 1104, + 1457, + 595, + 1457 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 468, + 1499, + 1236, + 1499, + 1236, + 1563, + 468, + 1563 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 297, + 1568, + 595, + 1568, + 595, + 1601, + 297, + 1601 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 293, + 653, + 1273, + 653, + 1273, + 693, + 293, + 693 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 294, + 931, + 1284, + 931, + 1284, + 968, + 294, + 968 + ], + "score": 0.92 + }, + { + "category_id": 4, + "poly": [ + 961, + 578, + 1397, + 578, + 1397, + 609, + 961, + 609 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1015, + 1400, + 1015, + 1400, + 1046, + 1366, + 1046 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1414, + 1400, + 1414, + 1400, + 1443, + 1366, + 1443 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 280, + 1465, + 1286, + 1465, + 1286, + 1497, + 280, + 1497 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1517, + 1400, + 1517, + 1400, + 1546, + 1366, + 1546 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.806 + }, + { + "category_id": 13, + "poly": [ + 908, + 1302, + 1048, + 1302, + 1048, + 1335, + 908, + 1335 + ], + "score": 0.94, + "latex": "\\tau = \\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 829, + 1360, + 996, + 1360, + 996, + 1390, + 829, + 1390 + ], + "score": 0.94, + "latex": "\\mathbb { 1 } ^ { \\dot { T } } W ^ { ( k ) } \\dot { = } \\mathbb { 1 } ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 560, + 975, + 1136, + 975, + 1136, + 1092, + 560, + 1092 + ], + "score": 0.93, + "latex": "w _ { i j } ^ { ( k ) } = \\left\\{ \\begin{array} { l l } { \\frac { 1 } { 2 } } & { \\mathrm { i f } \\log _ { 2 } ( \\bmod ( j - i , n ) ) = \\bmod ( k , \\tau ) } \\\\ { \\frac { 1 } { 2 } } & { \\mathrm { i f } i = j } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 722, + 933, + 887, + 933, + 887, + 968, + 722, + 968 + ], + "score": 0.93, + "latex": "\\tau = \\lceil \\log _ { 2 } ( n ) \\rceil" + }, + { + "category_id": 13, + "poly": [ + 655, + 1625, + 744, + 1625, + 744, + 1658, + 655, + 1658 + ], + "score": 0.92, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 14, + "poly": [ + 470, + 1497, + 1232, + 1497, + 1232, + 1563, + 470, + 1563 + ], + "score": 0.92, + "latex": "\\left( W ^ { ( k + \\ell ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\left( W ^ { ( k + \\ell - 1 ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) \\cdots \\left( W ^ { ( k ) } - { \\frac { 1 } { n } } \\mathbb { 1 } \\mathbb { 1 } ^ { T } \\right) = 0" + }, + { + "category_id": 13, + "poly": [ + 644, + 706, + 773, + 706, + 773, + 740, + 644, + 740 + ], + "score": 0.92, + "latex": "\\Omega ( \\log _ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 479, + 294, + 790, + 294, + 790, + 328, + 479, + 328 + ], + "score": 0.92, + "latex": "\\rho = 1 - 2 / ( 1 + \\lceil \\log _ { 2 } ( n ) \\rceil )" + }, + { + "category_id": 13, + "poly": [ + 502, + 1741, + 591, + 1741, + 591, + 1775, + 502, + 1775 + ], + "score": 0.92, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 633, + 1930, + 776, + 1930, + 776, + 1963, + 633, + 1963 + ], + "score": 0.91, + "latex": "\\tau = \\log _ { n } ( n )" + }, + { + "category_id": 13, + "poly": [ + 913, + 1656, + 1001, + 1656, + 1001, + 1689, + 913, + 1689 + ], + "score": 0.91, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 641, + 1360, + 776, + 1360, + 776, + 1390, + 641, + 1390 + ], + "score": 0.91, + "latex": "\\mathbf { \\dot { W } } ^ { ( \\dot { k } ) } \\mathbb { 1 } = \\mathbb { 1 }" + }, + { + "category_id": 14, + "poly": [ + 593, + 1395, + 1105, + 1395, + 1105, + 1460, + 593, + 1460 + ], + "score": 0.9, + "latex": "W ^ { ( k + \\ell ) } W ^ { ( k + \\ell - 1 ) } \\cdot \\cdot \\cdot W ^ { ( k + 1 ) } W ^ { ( k ) } = \\frac { 1 } { n } \\mathbb { 1 } \\mathbb { 1 } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 468, + 1466, + 537, + 1466, + 537, + 1496, + 468, + 1496 + ], + "score": 0.9, + "latex": "k \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1169, + 797, + 1226, + 797, + 1226, + 831, + 1169, + 831 + ], + "score": 0.89, + "latex": "\\Omega ( 1 ) { \\bar { } }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1297, + 1374, + 1297, + 1374, + 1331, + 1312, + 1331 + ], + "score": 0.89, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1466, + 655, + 1466, + 655, + 1496, + 589, + 1496 + ], + "score": 0.88, + "latex": "\\ell \\geq \\tau" + }, + { + "category_id": 13, + "poly": [ + 298, + 1361, + 360, + 1361, + 360, + 1390, + 298, + 1390 + ], + "score": 0.88, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 1239, + 936, + 1257, + 936, + 1257, + 961, + 1239, + 961 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 635, + 360, + 655, + 360, + 655, + 382, + 635, + 382 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 461, + 269, + 482, + 269, + 482, + 291, + 461, + 291 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1256, + 1192, + 1256, + 1192, + 1278, + 1172, + 1278 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 224.0, + 1370.0, + 224.0, + 1370.0, + 249.0, + 1012.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 244.0, + 1001.0, + 244.0, + 1001.0, + 274.0, + 959.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 259.0, + 1291.0, + 259.0, + 1291.0, + 266.0, + 1284.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 296.0, + 1000.0, + 296.0, + 1000.0, + 326.0, + 959.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 289.0, + 1087.0, + 289.0, + 1087.0, + 313.0, + 1050.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 277.0, + 1129.0, + 277.0, + 1129.0, + 307.0, + 1090.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 273.0, + 1205.0, + 273.0, + 1205.0, + 300.0, + 1170.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 264.0, + 1375.0, + 264.0, + 1375.0, + 296.0, + 1325.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 316.0, + 1099.0, + 316.0, + 1099.0, + 321.0, + 1094.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 309.0, + 1368.0, + 309.0, + 1368.0, + 341.0, + 1318.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 345.0, + 1041.0, + 345.0, + 1041.0, + 354.0, + 1031.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 348.0, + 1000.0, + 348.0, + 1000.0, + 378.0, + 960.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 384.0, + 1072.0, + 384.0, + 1072.0, + 420.0, + 1028.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 399.0, + 1002.0, + 399.0, + 1002.0, + 428.0, + 959.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 405.0, + 1063.0, + 405.0, + 1063.0, + 439.0, + 1018.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 449.0, + 1002.0, + 449.0, + 1002.0, + 482.0, + 958.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 431.0, + 1058.0, + 431.0, + 1058.0, + 461.0, + 1016.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 421.0, + 1317.0, + 421.0, + 1317.0, + 480.0, + 1220.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 466.0, + 1269.0, + 466.0, + 1269.0, + 500.0, + 1219.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 500.0, + 1002.0, + 500.0, + 1002.0, + 533.0, + 959.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 493.0, + 1376.0, + 493.0, + 1376.0, + 519.0, + 1221.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 530.0, + 1021.0, + 530.0, + 1021.0, + 554.0, + 1002.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 528.0, + 1089.0, + 528.0, + 1089.0, + 556.0, + 1057.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 527.0, + 1156.0, + 527.0, + 1156.0, + 555.0, + 1112.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 527.0, + 1218.0, + 527.0, + 1218.0, + 555.0, + 1172.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 527.0, + 1279.0, + 527.0, + 1279.0, + 555.0, + 1233.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 527.0, + 1339.0, + 527.0, + 1339.0, + 556.0, + 1295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 527.0, + 1399.0, + 527.0, + 1399.0, + 556.0, + 1357.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 546.0, + 1264.0, + 546.0, + 1264.0, + 574.0, + 1117.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 647.0, + 1278.0, + 647.0, + 1278.0, + 705.0, + 288.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 574.0, + 1401.0, + 574.0, + 1401.0, + 613.0, + 958.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 704.0, + 643.0, + 704.0, + 643.0, + 746.0, + 292.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 704.0, + 1408.0, + 704.0, + 1408.0, + 746.0, + 774.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 738.0, + 1407.0, + 738.0, + 1407.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 766.0, + 1405.0, + 766.0, + 1405.0, + 804.0, + 292.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 798.0, + 1168.0, + 798.0, + 1168.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 833.0, + 1227.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 825.0, + 1405.0, + 825.0, + 1405.0, + 866.0, + 294.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 858.0, + 1407.0, + 858.0, + 1407.0, + 895.0, + 292.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1321.0, + 885.0, + 1321.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 199.0, + 942.0, + 199.0, + 942.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 232.0, + 941.0, + 232.0, + 941.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 460.0, + 261.0, + 460.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 261.0, + 938.0, + 261.0, + 938.0, + 297.0, + 483.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 478.0, + 293.0, + 478.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 293.0, + 937.0, + 293.0, + 937.0, + 328.0, + 791.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 324.0, + 937.0, + 324.0, + 937.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 354.0, + 634.0, + 354.0, + 634.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 354.0, + 938.0, + 354.0, + 938.0, + 387.0, + 656.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 936.0, + 382.0, + 936.0, + 420.0, + 294.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 413.0, + 751.0, + 413.0, + 751.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 460.0, + 939.0, + 460.0, + 939.0, + 494.0, + 296.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 938.0, + 492.0, + 938.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 521.0, + 941.0, + 521.0, + 941.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 550.0, + 941.0, + 550.0, + 941.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 940.0, + 581.0, + 940.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1089.0, + 1404.0, + 1089.0, + 1404.0, + 1127.0, + 293.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 1404.0, + 1121.0, + 1404.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1383.0, + 1153.0, + 1383.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 501.0, + 1739.0, + 501.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1777.0, + 592.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1842.0, + 292.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1871.0, + 291.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1622.0, + 654.0, + 1622.0, + 654.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1622.0, + 1406.0, + 1622.0, + 1406.0, + 1660.0, + 745.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 912.0, + 1655.0, + 912.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1691.0, + 1002.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 664.0, + 1684.0, + 664.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 1407.0, + 1897.0, + 1407.0, + 1935.0, + 294.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1930.0, + 632.0, + 1930.0, + 632.0, + 1965.0, + 296.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1930.0, + 1405.0, + 1930.0, + 1405.0, + 1965.0, + 777.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 1407.0, + 1961.0, + 1407.0, + 1994.0, + 294.0, + 1994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1255.0, + 295.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1250.0, + 1171.0, + 1250.0, + 1171.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1250.0, + 1374.0, + 1250.0, + 1374.0, + 1285.0, + 1193.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1298.0, + 907.0, + 1298.0, + 907.0, + 1337.0, + 290.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1298.0, + 1311.0, + 1298.0, + 1311.0, + 1337.0, + 1049.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1298.0, + 1410.0, + 1298.0, + 1410.0, + 1337.0, + 1375.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1365.0, + 295.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1357.0, + 640.0, + 1357.0, + 640.0, + 1397.0, + 361.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1357.0, + 828.0, + 1357.0, + 828.0, + 1397.0, + 777.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1357.0, + 1308.0, + 1357.0, + 1308.0, + 1397.0, + 997.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1565.0, + 598.0, + 1565.0, + 598.0, + 1605.0, + 290.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 721.0, + 931.0, + 721.0, + 970.0, + 294.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 931.0, + 1238.0, + 931.0, + 1238.0, + 970.0, + 888.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 931.0, + 1287.0, + 931.0, + 1287.0, + 970.0, + 1258.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1462.0, + 467.0, + 1462.0, + 467.0, + 1503.0, + 289.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1462.0, + 588.0, + 1462.0, + 588.0, + 1503.0, + 538.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1462.0, + 1293.0, + 1462.0, + 1293.0, + 1503.0, + 656.0, + 1503.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 202, + 937, + 202, + 937, + 548, + 298, + 548 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1128, + 1406, + 1128, + 1406, + 1285, + 297, + 1285 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1762, + 1406, + 1762, + 1406, + 1858, + 296, + 1858 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 296, + 1309, + 1406, + 1309, + 1406, + 1428, + 296, + 1428 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1883, + 1403, + 1883, + 1403, + 2007, + 298, + 2007 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 965, + 221, + 1397, + 221, + 1397, + 561, + 965, + 561 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1640, + 1405, + 1640, + 1405, + 1738, + 297, + 1738 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 957, + 567, + 1402, + 567, + 1402, + 709, + 957, + 709 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 658, + 934, + 658, + 934, + 753, + 297, + 753 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 293, + 1550, + 1406, + 1550, + 1406, + 1619, + 293, + 1619 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 764, + 1404, + 764, + 1404, + 830, + 297, + 830 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 388, + 1444, + 1306, + 1444, + 1306, + 1535, + 388, + 1535 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 297, + 589, + 840, + 589, + 840, + 629, + 297, + 629 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 312, + 930, + 1335, + 930, + 1335, + 1021, + 312, + 1021 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 297, + 853, + 1403, + 853, + 1403, + 913, + 297, + 913 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 297, + 1036, + 1403, + 1036, + 1403, + 1104, + 297, + 1104 + ], + "score": 0.843 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1474, + 1400, + 1474, + 1400, + 1505, + 1353, + 1505 + ], + "score": 0.841 + }, + { + "category_id": 9, + "poly": [ + 1353, + 960, + 1399, + 960, + 1399, + 990, + 1353, + 990 + ], + "score": 0.813 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 858, + 2060, + 858, + 2084, + 841, + 2084 + ], + "score": 0.73 + }, + { + "category_id": 14, + "poly": [ + 391, + 1441, + 1306, + 1441, + 1306, + 1537, + 391, + 1537 + ], + "score": 0.94, + "latex": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n ( 1 - \\beta ) \\sigma ^ { 2 } \\tau } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\tau ^ { 2 } } { T } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1230, + 1346, + 1397, + 1346, + 1397, + 1400, + 1230, + 1400 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\gamma = \\frac { \\sqrt { n ( 1 - \\beta ) ^ { 3 } } } { \\sqrt { T } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 573, + 1311, + 721, + 1311, + 721, + 1345, + 573, + 1345 + ], + "score": 0.93, + "latex": "\\tau = \\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 871, + 1068, + 1035, + 1068, + 1035, + 1104, + 871, + 1104 + ], + "score": 0.93, + "latex": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )" + }, + { + "category_id": 14, + "poly": [ + 314, + 928, + 1339, + 928, + 1339, + 1022, + 314, + 1022 + ], + "score": 0.93, + "latex": "\\frac { 1 } { T } \\sum _ { k = 1 } ^ { T } \\mathbb { E } \\| \\nabla f ( \\bar { \\mathbf { x } } ^ { ( k ) } ) \\| ^ { 2 } = O \\left( \\frac { \\sigma ^ { 2 } } { \\sqrt { ( 1 - \\beta ) n T } } + \\frac { n \\log _ { 2 } ( n ) ( 1 - \\beta ) \\sigma ^ { 2 } } { T } + \\frac { n ( 1 - \\beta ) b ^ { 2 } \\log _ { 2 } ^ { 2 } ( n ) } { T } \\right)" + }, + { + "category_id": 13, + "poly": [ + 657, + 395, + 746, + 395, + 746, + 427, + 657, + 427 + ], + "score": 0.93, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 871, + 1581, + 1036, + 1581, + 1036, + 1618, + 871, + 1618 + ], + "score": 0.92, + "latex": "O ( n ^ { 3 } \\log _ { 2 } ^ { 4 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 902, + 1643, + 1043, + 1643, + 1043, + 1677, + 902, + 1677 + ], + "score": 0.92, + "latex": "\\tau = \\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1067, + 463, + 1067, + 463, + 1105, + 298, + 1105 + ], + "score": 0.92, + "latex": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1581, + 463, + 1581, + 463, + 1618, + 298, + 1618 + ], + "score": 0.92, + "latex": "O ( n ^ { 3 } \\log _ { 2 } ^ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 505, + 232, + 597, + 232, + 597, + 262, + 505, + 262 + ], + "score": 0.91, + "latex": "\\bar { x _ { \\mathrm { ~ \\in ~ } } } \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 768, + 856, + 958, + 856, + 958, + 914, + 768, + 914 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { i f \\gamma = \\frac { \\sqrt { n ( 1 - \\beta ) ^ { 3 } } } { \\sqrt { T } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 263, + 587, + 263, + 587, + 303, + 298, + 303 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\| ( \\Pi _ { \\ell = 0 } ^ { k } W ^ { ( \\ell ) } - \\frac { 1 } { n } \\pmb { 1 } \\pmb { 1 } \\| ^ { T } ) x \\| } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1796, + 1137, + 1796, + 1137, + 1826, + 1066, + 1826 + ], + "score": 0.91, + "latex": "\\beta = 0" + }, + { + "category_id": 13, + "poly": [ + 461, + 302, + 524, + 302, + 524, + 331, + 461, + 331 + ], + "score": 0.88, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 857, + 267, + 875, + 267, + 875, + 295, + 857, + 295 + ], + "score": 0.72, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 526, + 1397, + 542, + 1397, + 542, + 1422, + 526, + 1422 + ], + "score": 0.31, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 222.0, + 1283.0, + 222.0, + 1283.0, + 249.0, + 1127.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 267.0, + 1014.0, + 267.0, + 1014.0, + 290.0, + 965.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 307.0, + 1014.0, + 307.0, + 1014.0, + 330.0, + 964.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 307.0, + 1132.0, + 307.0, + 1132.0, + 314.0, + 1124.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 338.0, + 1203.0, + 338.0, + 1203.0, + 346.0, + 1195.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 343.0, + 1219.0, + 343.0, + 1219.0, + 355.0, + 1205.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 350.0, + 1230.0, + 350.0, + 1230.0, + 360.0, + 1222.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 358.0, + 1246.0, + 358.0, + 1246.0, + 365.0, + 1234.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 388.0, + 1014.0, + 388.0, + 1014.0, + 412.0, + 965.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 389.0, + 1318.0, + 389.0, + 1318.0, + 397.0, + 1305.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 401.0, + 1343.0, + 401.0, + 1343.0, + 408.0, + 1336.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 404.0, + 1360.0, + 404.0, + 1360.0, + 417.0, + 1346.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 413.0, + 1372.0, + 413.0, + 1372.0, + 420.0, + 1359.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 418.0, + 1386.0, + 418.0, + 1386.0, + 428.0, + 1374.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 428.0, + 1015.0, + 428.0, + 1015.0, + 453.0, + 963.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 443.0, + 1055.0, + 443.0, + 1055.0, + 458.0, + 1036.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 440.0, + 1125.0, + 440.0, + 1125.0, + 460.0, + 1062.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 439.0, + 1248.0, + 439.0, + 1248.0, + 461.0, + 1154.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 443.0, + 1309.0, + 443.0, + 1309.0, + 457.0, + 1278.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 440.0, + 1375.0, + 440.0, + 1375.0, + 460.0, + 1310.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 454.0, + 1134.0, + 454.0, + 1134.0, + 479.0, + 1060.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 456.0, + 1256.0, + 456.0, + 1256.0, + 478.0, + 1156.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 454.0, + 1384.0, + 454.0, + 1384.0, + 479.0, + 1279.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 468.0, + 1015.0, + 468.0, + 1015.0, + 492.0, + 957.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 472.0, + 1142.0, + 472.0, + 1142.0, + 497.0, + 1060.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 473.0, + 1264.0, + 473.0, + 1264.0, + 496.0, + 1161.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 473.0, + 1391.0, + 473.0, + 1391.0, + 496.0, + 1308.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 488.0, + 1141.0, + 488.0, + 1141.0, + 514.0, + 1059.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 492.0, + 1262.0, + 492.0, + 1262.0, + 512.0, + 1172.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 489.0, + 1391.0, + 489.0, + 1391.0, + 515.0, + 1308.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 524.0, + 1038.0, + 524.0, + 1038.0, + 545.0, + 1020.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 524.0, + 1109.0, + 524.0, + 1109.0, + 545.0, + 1090.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 523.0, + 1185.0, + 523.0, + 1185.0, + 546.0, + 1156.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 523.0, + 1254.0, + 523.0, + 1254.0, + 546.0, + 1225.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 523.0, + 1325.0, + 523.0, + 1325.0, + 546.0, + 1295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 523.0, + 1394.0, + 523.0, + 1394.0, + 546.0, + 1365.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 541.0, + 1247.0, + 541.0, + 1247.0, + 566.0, + 1163.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 263.0, + 1124.0, + 263.0, + 1124.0, + 295.5, + 1024.0, + 295.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 323.0, + 1176.0, + 323.0, + 1176.0, + 334.5, + 1161.0, + 334.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 331.0, + 1185.0, + 331.0, + 1185.0, + 340.0, + 1181.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 346.0, + 1018.0, + 346.0, + 1018.0, + 373.0, + 965.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 361.0, + 1261.0, + 361.0, + 1261.0, + 372.5, + 1248.0, + 372.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.75, + 391.5, + 1330.75, + 391.5, + 1330.75, + 402.5, + 1315.75, + 402.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.75, + 507.5, + 1017.75, + 507.5, + 1017.75, + 534.0, + 957.75, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 598.0, + 956.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 595.0, + 1404.0, + 595.0, + 1404.0, + 625.0, + 955.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 622.0, + 1405.0, + 622.0, + 1405.0, + 654.0, + 954.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 651.0, + 1404.0, + 651.0, + 1404.0, + 681.0, + 956.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 679.0, + 1263.0, + 679.0, + 1263.0, + 708.0, + 957.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 585.0, + 841.0, + 585.0, + 841.0, + 638.0, + 290.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 203.0, + 937.0, + 203.0, + 937.0, + 237.0, + 297.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 504.0, + 231.0, + 504.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 231.0, + 937.0, + 231.0, + 937.0, + 267.0, + 598.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 256.0, + 297.0, + 256.0, + 297.0, + 304.0, + 290.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 256.0, + 856.0, + 256.0, + 856.0, + 304.0, + 588.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 256.0, + 943.0, + 256.0, + 943.0, + 304.0, + 876.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 298.0, + 460.0, + 298.0, + 460.0, + 338.0, + 292.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 298.0, + 942.0, + 298.0, + 942.0, + 338.0, + 525.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 334.0, + 940.0, + 334.0, + 940.0, + 366.0, + 293.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 364.0, + 936.0, + 364.0, + 936.0, + 398.0, + 294.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 395.0, + 656.0, + 395.0, + 656.0, + 426.0, + 294.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 395.0, + 939.0, + 395.0, + 939.0, + 426.0, + 747.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 425.0, + 937.0, + 425.0, + 937.0, + 456.0, + 296.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 456.0, + 938.0, + 456.0, + 938.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 486.0, + 941.0, + 486.0, + 941.0, + 519.0, + 295.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 514.0, + 802.0, + 514.0, + 802.0, + 547.0, + 295.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1128.0, + 1406.0, + 1128.0, + 1406.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1160.0, + 1409.0, + 1160.0, + 1409.0, + 1197.0, + 295.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1409.0, + 1190.0, + 1409.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1219.0, + 1406.0, + 1219.0, + 1406.0, + 1257.0, + 292.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 1073.0, + 1249.0, + 1073.0, + 1288.0, + 292.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1761.0, + 1407.0, + 1761.0, + 1407.0, + 1800.0, + 293.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1065.0, + 1795.0, + 1065.0, + 1830.0, + 294.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1795.0, + 1406.0, + 1795.0, + 1406.0, + 1830.0, + 1138.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1822.0, + 1334.0, + 1822.0, + 1334.0, + 1861.0, + 291.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1306.0, + 572.0, + 1306.0, + 572.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1306.0, + 1407.0, + 1306.0, + 1407.0, + 1349.0, + 722.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1343.0, + 1229.0, + 1343.0, + 1229.0, + 1407.0, + 291.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 525.0, + 1390.0, + 525.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1390.0, + 1092.0, + 1390.0, + 1092.0, + 1430.0, + 543.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1922.0, + 293.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1947.0, + 1403.0, + 1947.0, + 1403.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1977.0, + 667.0, + 1977.0, + 667.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 901.0, + 1641.0, + 901.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1641.0, + 1405.0, + 1641.0, + 1405.0, + 1679.0, + 1044.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1708.0, + 292.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 1398.0, + 1705.0, + 1398.0, + 1740.0, + 294.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 937.0, + 657.0, + 937.0, + 693.0, + 294.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 688.0, + 937.0, + 688.0, + 937.0, + 723.0, + 295.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 723.0, + 622.0, + 723.0, + 622.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1587.0, + 292.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1579.0, + 297.0, + 1579.0, + 297.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1579.0, + 870.0, + 1579.0, + 870.0, + 1623.0, + 464.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1579.0, + 1409.0, + 1579.0, + 1409.0, + 1623.0, + 1037.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1404.0, + 763.0, + 1404.0, + 801.0, + 294.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 831.0, + 294.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 909.0, + 962.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.25, + 851.5, + 972.25, + 851.5, + 972.25, + 914.5, + 288.25, + 914.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1032.0, + 1407.0, + 1032.0, + 1407.0, + 1075.0, + 291.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1067.0, + 870.0, + 1067.0, + 870.0, + 1108.0, + 464.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1067.0, + 1409.0, + 1067.0, + 1409.0, + 1108.0, + 1036.0, + 1108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1656, + 1404, + 1656, + 1404, + 1931, + 298, + 1931 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 430, + 1405, + 430, + 1405, + 708, + 298, + 708 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1253, + 1405, + 1253, + 1405, + 1498, + 298, + 1498 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 203, + 1404, + 203, + 1404, + 416, + 298, + 416 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 903, + 1403, + 903, + 1403, + 1025, + 299, + 1025 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1040, + 1403, + 1040, + 1403, + 1192, + 298, + 1192 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 722, + 1398, + 722, + 1398, + 814, + 300, + 814 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1581, + 1404, + 1581, + 1404, + 1643, + 300, + 1643 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 296, + 1945, + 1401, + 1945, + 1401, + 2007, + 296, + 2007 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 299, + 1538, + 1086, + 1538, + 1086, + 1571, + 299, + 1571 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 298, + 846, + 533, + 846, + 533, + 885, + 298, + 885 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 298, + 1212, + 433, + 1212, + 433, + 1243, + 298, + 1243 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2085, + 841, + 2085 + ], + "score": 0.796 + }, + { + "category_id": 13, + "poly": [ + 732, + 551, + 804, + 551, + 804, + 589, + 732, + 589 + ], + "score": 0.93, + "latex": "\\tilde { \\Omega } ( n ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1058, + 491, + 1148, + 491, + 1148, + 524, + 1058, + 524 + ], + "score": 0.92, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 1132, + 551, + 1185, + 551, + 1185, + 589, + 1132, + 589 + ], + "score": 0.91, + "latex": "\\tilde { \\Omega } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 297, + 550, + 356, + 550, + 356, + 588, + 297, + 588 + ], + "score": 0.89, + "latex": "\\tilde { \\Omega } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 715, + 497, + 736, + 497, + 736, + 519, + 715, + 519 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1534.0, + 1089.0, + 1534.0, + 1089.0, + 1582.0, + 292.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 841.0, + 537.0, + 841.0, + 537.0, + 893.0, + 290.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1203.0, + 439.0, + 1203.0, + 439.0, + 1253.0, + 292.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1406.0, + 1657.0, + 1406.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1405.0, + 1687.0, + 1405.0, + 1723.0, + 294.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1718.0, + 1404.0, + 1718.0, + 1404.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1744.0, + 1406.0, + 1744.0, + 1406.0, + 1787.0, + 292.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1779.0, + 1408.0, + 1779.0, + 1408.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1807.0, + 1406.0, + 1807.0, + 1406.0, + 1844.0, + 293.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1868.0, + 1407.0, + 1868.0, + 1407.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1899.0, + 1391.0, + 1899.0, + 1391.0, + 1935.0, + 294.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 427.0, + 1407.0, + 427.0, + 1407.0, + 467.0, + 293.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 493.0, + 714.0, + 493.0, + 714.0, + 526.0, + 296.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 493.0, + 1057.0, + 493.0, + 1057.0, + 526.0, + 737.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 493.0, + 1403.0, + 493.0, + 1403.0, + 526.0, + 1149.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 1405.0, + 523.0, + 1405.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 551.0, + 296.0, + 551.0, + 296.0, + 593.0, + 292.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 551.0, + 731.0, + 551.0, + 731.0, + 593.0, + 357.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 551.0, + 1131.0, + 551.0, + 1131.0, + 593.0, + 805.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 593.0, + 1186.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 1406.0, + 585.0, + 1406.0, + 622.0, + 295.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 1408.0, + 616.0, + 1408.0, + 653.0, + 295.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 645.0, + 1406.0, + 645.0, + 1406.0, + 683.0, + 292.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 678.0, + 825.0, + 678.0, + 825.0, + 711.0, + 296.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1252.0, + 1407.0, + 1252.0, + 1407.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1283.0, + 1406.0, + 1283.0, + 1406.0, + 1317.0, + 292.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1313.0, + 1407.0, + 1313.0, + 1407.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1343.0, + 1407.0, + 1343.0, + 1407.0, + 1380.0, + 292.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1373.0, + 1406.0, + 1373.0, + 1406.0, + 1409.0, + 292.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1438.0, + 1403.0, + 1438.0, + 1403.0, + 1468.0, + 296.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 703.0, + 1463.0, + 703.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 234.0, + 1406.0, + 234.0, + 1406.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 295.0, + 1404.0, + 295.0, + 1404.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1405.0, + 323.0, + 1405.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 354.0, + 1405.0, + 354.0, + 1405.0, + 390.0, + 293.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 385.0, + 1293.0, + 385.0, + 1293.0, + 420.0, + 296.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 902.0, + 1407.0, + 902.0, + 1407.0, + 939.0, + 293.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 1403.0, + 933.0, + 1403.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1001.0, + 294.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 996.0, + 1407.0, + 996.0, + 1407.0, + 1029.0, + 295.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1041.0, + 1404.0, + 1041.0, + 1404.0, + 1074.0, + 296.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1071.0, + 1404.0, + 1071.0, + 1404.0, + 1104.0, + 296.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1102.0, + 1403.0, + 1102.0, + 1403.0, + 1134.0, + 296.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1133.0, + 1400.0, + 1133.0, + 1400.0, + 1166.0, + 296.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1162.0, + 1396.0, + 1162.0, + 1396.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 721.0, + 1403.0, + 721.0, + 1403.0, + 758.0, + 296.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 754.0, + 1403.0, + 754.0, + 1403.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 784.0, + 936.0, + 784.0, + 936.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1577.0, + 1406.0, + 1577.0, + 1406.0, + 1618.0, + 293.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1612.0, + 858.0, + 1612.0, + 858.0, + 1644.0, + 296.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1982.0, + 295.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1261.0, + 1973.0, + 1261.0, + 2013.0, + 294.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1172, + 1404, + 1172, + 1404, + 1478, + 297, + 1478 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 298, + 193, + 1410, + 193, + 1410, + 454, + 298, + 454 + ], + "score": 0.976, + "html": "
NODES TOPOLOGY4(4x8 GPUs)8(8x8 GPUs)16(16x8 GPUs)32(32x8 GPUs)
ACC.TIMEACC.TIMEACC.TIMEACC.TIME
RING76.13 ±0.02311.676.07 ±0.0136.576.08 ±0.0263.375.58 ±0.0211.8
GRID76.08 ±0.00711.676.35 ±0.0376.775.88 ±0.0113.475.76 ±0.0222.0
BI-RAND.MATCH.75.96 ±0.03211.176.26 ±0.0275.776.07 ±0.0122.875.83 ±0.0291.5
RANDOM GRAPH75.97 ±0.02811.576.01 ±0.0337.176.18 ±0.0086.776.24 ±0.0184.7
STATIC EXP.76.21 ±0.02811.676.32 ±0.0376.976.30 ±0.0074.176.28 ±0.0202.5
ONE-PEER EXP.76.28 ±0.06311.176.47 ±0.0355.776.42 ±0.0302.876.30 ±0.0621.5
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1856, + 1403, + 1856, + 1403, + 2008, + 298, + 2008 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 683, + 1527, + 1398, + 1527, + 1398, + 1774, + 683, + 1774 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1067, + 1404, + 1067, + 1404, + 1158, + 299, + 1158 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 898, + 1403, + 898, + 1403, + 992, + 299, + 992 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 1492, + 662, + 1492, + 662, + 1853, + 297, + 1853 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 678, + 1776, + 1404, + 1776, + 1404, + 1834, + 678, + 1834 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 296, + 1026, + 1032, + 1026, + 1032, + 1059, + 296, + 1059 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 299, + 721, + 1405, + 721, + 1405, + 873, + 299, + 873 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 298, + 473, + 1404, + 473, + 1404, + 625, + 298, + 625 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 299, + 628, + 1404, + 628, + 1404, + 717, + 299, + 717 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.793 + }, + { + "category_id": 6, + "poly": [ + 310, + 148, + 1378, + 148, + 1378, + 181, + 310, + 181 + ], + "score": 0.687 + }, + { + "category_id": 13, + "poly": [ + 416, + 720, + 496, + 720, + 496, + 750, + 416, + 750 + ], + "score": 0.9, + "latex": "3 2 \\times 8" + }, + { + "category_id": 13, + "poly": [ + 415, + 628, + 495, + 628, + 495, + 657, + 415, + 657 + ], + "score": 0.9, + "latex": "3 2 \\times 8" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1804, + 1335, + 1804, + 1335, + 1830, + 1275, + 1830 + ], + "score": 0.89, + "latex": "8 \\times 8" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1383, + 1255, + 1383, + 1255, + 1414, + 1219, + 1414 + ], + "score": 0.85, + "latex": "\\mathrm { D ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 606, + 659, + 809, + 659, + 809, + 689, + 606, + 689 + ], + "score": 0.82, + "latex": "< \\mathrm { R i n g } < \\mathrm { G r i d } <" + }, + { + "category_id": 13, + "poly": [ + 1015, + 661, + 1042, + 661, + 1042, + 686, + 1015, + 686 + ], + "score": 0.81, + "latex": "<" + }, + { + "category_id": 13, + "poly": [ + 1023, + 753, + 1051, + 753, + 1051, + 779, + 1023, + 779 + ], + "score": 0.8, + "latex": ">" + }, + { + "category_id": 13, + "poly": [ + 661, + 754, + 690, + 754, + 690, + 779, + 661, + 779 + ], + "score": 0.77, + "latex": "\\approx" + }, + { + "category_id": 13, + "poly": [ + 891, + 754, + 920, + 754, + 920, + 779, + 891, + 779 + ], + "score": 0.74, + "latex": "\\approx" + }, + { + "category_id": 13, + "poly": [ + 757, + 965, + 777, + 965, + 777, + 987, + 757, + 987 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 832, + 152, + 864, + 152, + 864, + 177, + 832, + 177 + ], + "score": 0.66, + "latex": "\\% )" + }, + { + "category_id": 13, + "poly": [ + 402, + 661, + 430, + 661, + 430, + 685, + 402, + 685 + ], + "score": 0.63, + "latex": "\\approx" + }, + { + "category_id": 13, + "poly": [ + 1223, + 753, + 1251, + 753, + 1251, + 780, + 1223, + 780 + ], + "score": 0.6, + "latex": ">" + }, + { + "category_id": 13, + "poly": [ + 605, + 659, + 633, + 659, + 633, + 687, + 605, + 687 + ], + "score": 0.52, + "latex": "<" + }, + { + "category_id": 13, + "poly": [ + 1223, + 751, + 1397, + 751, + 1397, + 782, + 1223, + 782 + ], + "score": 0.37, + "latex": "> \\mathrm { G r i d } > \\mathrm { R i n g }" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1855, + 1347, + 1855, + 1347, + 1883, + 1246, + 1883 + ], + "score": 0.31, + "latex": "\\mathrm { D m } \\mathrm { S G D }" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1536.0, + 1100.0, + 1536.0, + 1100.0, + 1548.0, + 1087.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1537.0, + 1365.0, + 1537.0, + 1365.0, + 1562.0, + 1283.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1541.0, + 942.0, + 1541.0, + 942.0, + 1553.0, + 929.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1544.0, + 1272.0, + 1544.0, + 1272.0, + 1555.0, + 1257.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1547.0, + 710.0, + 1547.0, + 710.0, + 1718.0, + 679.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1549.0, + 727.0, + 1549.0, + 727.0, + 1571.0, + 697.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1554.0, + 899.0, + 1554.0, + 899.0, + 1571.0, + 865.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1557.0, + 1387.0, + 1557.0, + 1387.0, + 1582.0, + 1283.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1559.0, + 1080.0, + 1559.0, + 1080.0, + 1581.0, + 1061.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1564.0, + 1272.0, + 1564.0, + 1272.0, + 1575.0, + 1257.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1568.0, + 730.0, + 1568.0, + 730.0, + 1603.0, + 698.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1577.0, + 886.0, + 1577.0, + 886.0, + 1594.0, + 852.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1596.0, + 729.0, + 1596.0, + 729.0, + 1652.0, + 698.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1612.0, + 903.0, + 1612.0, + 903.0, + 1661.0, + 851.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1624.0, + 946.0, + 1624.0, + 946.0, + 1642.0, + 917.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1587.0, + 1079.0, + 1587.0, + 1079.0, + 1676.0, + 1043.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1607.0, + 1253.0, + 1607.0, + 1253.0, + 1656.0, + 1219.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1638.0, + 1263.0, + 1638.0, + 1263.0, + 1649.0, + 1254.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1637.0, + 1285.0, + 1637.0, + 1285.0, + 1648.0, + 1264.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1643.0, + 1344.0, + 1643.0, + 1344.0, + 1650.0, + 1334.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1652.0, + 728.0, + 1652.0, + 728.0, + 1676.0, + 700.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1647.0, + 903.0, + 1647.0, + 903.0, + 1675.0, + 850.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1649.0, + 1078.0, + 1649.0, + 1078.0, + 1671.0, + 1063.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1665.0, + 903.0, + 1665.0, + 903.0, + 1684.0, + 881.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1664.0, + 968.0, + 1664.0, + 968.0, + 1684.0, + 943.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1665.0, + 1253.0, + 1665.0, + 1253.0, + 1687.0, + 1219.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1678.0, + 729.0, + 1678.0, + 729.0, + 1706.0, + 698.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1686.0, + 1012.0, + 1686.0, + 1012.0, + 1711.0, + 930.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1680.0, + 1077.0, + 1680.0, + 1077.0, + 1702.0, + 1062.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1686.0, + 1380.0, + 1686.0, + 1380.0, + 1706.0, + 1245.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1699.0, + 1202.0, + 1699.0, + 1202.0, + 1712.0, + 1188.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1705.0, + 728.0, + 1705.0, + 728.0, + 1729.0, + 699.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1713.0, + 921.0, + 1713.0, + 921.0, + 1724.0, + 905.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1707.0, + 1036.0, + 1707.0, + 1036.0, + 1732.0, + 931.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1712.0, + 1077.0, + 1712.0, + 1077.0, + 1732.0, + 1062.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1720.0, + 748.0, + 1720.0, + 748.0, + 1735.0, + 736.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1737.0, + 750.0, + 1737.0, + 750.0, + 1757.0, + 734.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1736.0, + 821.0, + 1736.0, + 821.0, + 1759.0, + 791.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1736.0, + 887.0, + 1736.0, + 887.0, + 1759.0, + 856.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1736.0, + 952.0, + 1736.0, + 952.0, + 1759.0, + 920.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1736.0, + 1015.0, + 1736.0, + 1015.0, + 1759.0, + 985.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1739.0, + 1102.0, + 1739.0, + 1102.0, + 1756.0, + 1085.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1736.0, + 1377.0, + 1736.0, + 1377.0, + 1758.0, + 1116.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1752.0, + 915.0, + 1752.0, + 915.0, + 1779.0, + 856.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1754.0, + 1278.0, + 1754.0, + 1278.0, + 1777.0, + 1196.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1603.0, + 849.0, + 1603.0, + 849.0, + 1637.0, + 740.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1630.5, + 1382.0, + 1630.5, + 1382.0, + 1651.5, + 1341.0, + 1651.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.25, + 1676.0, + 1191.25, + 1676.0, + 1191.25, + 1696.0, + 1120.25, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.25, + 1704.0, + 1385.25, + 1704.0, + 1385.25, + 1729.0, + 1215.25, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1807.0, + 680.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1803.0, + 1274.0, + 1803.0, + 1274.0, + 1834.0, + 681.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1803.0, + 1408.0, + 1803.0, + 1408.0, + 1834.0, + 1336.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1022.0, + 1037.0, + 1022.0, + 1037.0, + 1067.0, + 292.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 860.0, + 2060.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 144.0, + 831.0, + 144.0, + 831.0, + 185.0, + 317.0, + 185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 144.0, + 1381.0, + 144.0, + 1381.0, + 185.0, + 865.0, + 185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 1405.0, + 1170.0, + 1405.0, + 1207.0, + 295.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1268.0, + 295.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 1404.0, + 1263.0, + 1404.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1406.0, + 1292.0, + 1406.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1362.0, + 291.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1355.0, + 1405.0, + 1355.0, + 1405.0, + 1387.0, + 295.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1380.0, + 1218.0, + 1380.0, + 1218.0, + 1421.0, + 291.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1380.0, + 1408.0, + 1380.0, + 1408.0, + 1421.0, + 1256.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 1404.0, + 1413.0, + 1404.0, + 1451.0, + 292.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 1407.0, + 1446.0, + 1407.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1853.0, + 1245.0, + 1853.0, + 1245.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1889.0, + 1348.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1950.0, + 293.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1985.0, + 291.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1103.0, + 293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1097.0, + 1404.0, + 1097.0, + 1404.0, + 1130.0, + 295.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1394.0, + 1124.0, + 1394.0, + 1163.0, + 293.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 894.0, + 1407.0, + 894.0, + 1407.0, + 935.0, + 293.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 1404.0, + 929.0, + 1404.0, + 963.0, + 294.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 756.0, + 960.0, + 756.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 960.0, + 1210.0, + 960.0, + 1210.0, + 993.0, + 778.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1486.0, + 666.0, + 1486.0, + 666.0, + 1525.0, + 295.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1520.0, + 662.0, + 1520.0, + 662.0, + 1555.0, + 296.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1550.0, + 662.0, + 1550.0, + 662.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1582.0, + 661.0, + 1582.0, + 661.0, + 1611.0, + 296.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 663.0, + 1611.0, + 663.0, + 1645.0, + 294.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1643.0, + 665.0, + 1643.0, + 665.0, + 1676.0, + 295.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 664.0, + 1668.0, + 664.0, + 1709.0, + 294.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1701.0, + 665.0, + 1701.0, + 665.0, + 1735.0, + 295.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 663.0, + 1731.0, + 663.0, + 1768.0, + 295.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 665.0, + 1764.0, + 665.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 662.0, + 1794.0, + 662.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1823.0, + 662.0, + 1823.0, + 662.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 415.0, + 718.0, + 415.0, + 755.0, + 294.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 755.0, + 497.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 748.0, + 660.0, + 748.0, + 660.0, + 787.0, + 292.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 748.0, + 890.0, + 748.0, + 890.0, + 787.0, + 691.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 748.0, + 1022.0, + 748.0, + 1022.0, + 787.0, + 921.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 748.0, + 1222.0, + 748.0, + 1222.0, + 787.0, + 1052.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 748.0, + 1409.0, + 748.0, + 1409.0, + 787.0, + 1398.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 817.0, + 293.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 1406.0, + 811.0, + 1406.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 603.0, + 839.0, + 603.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 470.0, + 1405.0, + 470.0, + 1405.0, + 511.0, + 293.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 1404.0, + 503.0, + 1404.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 532.0, + 1406.0, + 532.0, + 1406.0, + 570.0, + 293.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1405.0, + 563.0, + 1405.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 596.0, + 833.0, + 596.0, + 833.0, + 629.0, + 296.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 625.0, + 414.0, + 625.0, + 414.0, + 663.0, + 292.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 625.0, + 1409.0, + 625.0, + 1409.0, + 663.0, + 496.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 658.0, + 401.0, + 658.0, + 401.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 658.0, + 604.0, + 658.0, + 604.0, + 690.0, + 431.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 658.0, + 1014.0, + 658.0, + 1014.0, + 690.0, + 810.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 658.0, + 1404.0, + 658.0, + 1404.0, + 690.0, + 1043.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 688.0, + 963.0, + 688.0, + 963.0, + 721.0, + 295.0, + 721.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 298, + 1009, + 1400, + 1009, + 1400, + 1240, + 298, + 1240 + ], + "score": 0.984, + "html": "
DATASET MODEL TOPOLOGYPASCAL VOCCoCo
RETINANETFASTER RCNNRETINANETFASTER RCNN
STATICONE-PEERSTATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD79.0-80.3=36.2=37.2=
VANILLA DMSGD79.079.180.780.536.336.137.337.2
DMSGD79.179.080.480.536.436.437.137.0
QG-DMSGD79.279.180.880.436.336.237.237.1
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1327, + 1405, + 1327, + 1405, + 1573, + 297, + 1573 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 312, + 246, + 1383, + 246, + 1383, + 451, + 312, + 451 + ], + "score": 0.981, + "html": "
MODEL TOPOLOGYREsNET-50MOBILENET-V2EFFICIENTNET
STATICONE-PEERSTATICONE-PEERSTATICONE-PEER
PARALLEL SGD76.21 (7.0)70.12 (5.8)77.63 (9.0)
VANILLA DMSGD76.14 (6.6)76.06 (5.5)69.98 (5.6)69.81 (4.6)77.62 (8.4)77.48 (6.9)
DMSGD76.50 (6.9)76.52(5.7)69.62 (5.7)69.98 (4.8)77.44 (8.7)77.51 (7.1)
QG-DMSGD76.43 (6.6)76.35(5.6)69.83 (5.6)69.81 (4.6)77.60 (8.4)77.72 (6.9)
" + }, + { + "category_id": 1, + "poly": [ + 297, + 562, + 1404, + 562, + 1404, + 775, + 297, + 775 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 789, + 1404, + 789, + 1404, + 943, + 298, + 943 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1402, + 1692, + 1402, + 1755, + 298, + 1755 + ], + "score": 0.94 + }, + { + "category_id": 6, + "poly": [ + 298, + 179, + 1399, + 179, + 1399, + 239, + 298, + 239 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 310, + 1861, + 1404, + 1861, + 1404, + 2007, + 310, + 2007 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 299, + 1270, + 779, + 1270, + 779, + 1309, + 299, + 1309 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1621, + 576, + 1621, + 576, + 1658, + 300, + 1658 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 300, + 486, + 1400, + 486, + 1400, + 546, + 300, + 546 + ], + "score": 0.913 + }, + { + "category_id": 6, + "poly": [ + 368, + 979, + 1318, + 979, + 1318, + 1008, + 368, + 1008 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 1800, + 455, + 1800, + 455, + 1836, + 299, + 1836 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.842 + }, + { + "category_id": 13, + "poly": [ + 1314, + 1328, + 1403, + 1328, + 1403, + 1362, + 1314, + 1362 + ], + "score": 0.92, + "latex": "\\log _ { 2 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 884, + 1539, + 919, + 1539, + 919, + 1569, + 884, + 1569 + ], + "score": 0.87, + "latex": "\\mathrm { D } ^ { \\beth }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1488, + 317, + 1488, + 317, + 1508, + 298, + 1508 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1365, + 1278, + 1365, + 1278, + 1387, + 1257, + 1387 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 176.0, + 1404.0, + 176.0, + 1404.0, + 213.0, + 293.0, + 213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 208.0, + 1151.0, + 208.0, + 1151.0, + 241.0, + 293.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1267.0, + 782.0, + 1267.0, + 782.0, + 1315.0, + 291.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 579.0, + 1616.0, + 579.0, + 1666.0, + 294.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 977.0, + 1321.0, + 977.0, + 1321.0, + 1012.0, + 372.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1796.0, + 460.0, + 1796.0, + 460.0, + 1842.0, + 295.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 871.0, + 2057.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1327.0, + 1313.0, + 1327.0, + 1313.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 1256.0, + 1359.0, + 1256.0, + 1392.0, + 295.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1392.0, + 1279.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1402.0, + 1420.0, + 1402.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1450.0, + 1405.0, + 1450.0, + 1405.0, + 1484.0, + 295.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 297.0, + 1480.0, + 297.0, + 1514.0, + 294.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1480.0, + 1403.0, + 1480.0, + 1403.0, + 1514.0, + 318.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1407.0, + 1510.0, + 1407.0, + 1547.0, + 294.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1539.0, + 883.0, + 1539.0, + 883.0, + 1576.0, + 292.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1539.0, + 1242.0, + 1539.0, + 1242.0, + 1576.0, + 920.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 561.0, + 1409.0, + 561.0, + 1409.0, + 599.0, + 295.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 593.0, + 1406.0, + 593.0, + 1406.0, + 627.0, + 292.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 622.0, + 1405.0, + 622.0, + 1405.0, + 656.0, + 295.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 651.0, + 1404.0, + 651.0, + 1404.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 682.0, + 1404.0, + 682.0, + 1404.0, + 719.0, + 294.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 714.0, + 1404.0, + 714.0, + 1404.0, + 748.0, + 295.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 743.0, + 1363.0, + 743.0, + 1363.0, + 780.0, + 292.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 788.0, + 1401.0, + 788.0, + 1401.0, + 821.0, + 297.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 820.0, + 1404.0, + 820.0, + 1404.0, + 853.0, + 296.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 847.0, + 1406.0, + 847.0, + 1406.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 908.0, + 797.0, + 908.0, + 797.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1730.0, + 293.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1721.0, + 536.0, + 1721.0, + 536.0, + 1758.0, + 294.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1858.0, + 1406.0, + 1858.0, + 1406.0, + 1897.0, + 306.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1888.0, + 990.0, + 1888.0, + 990.0, + 1920.0, + 352.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1922.0, + 1405.0, + 1922.0, + 1405.0, + 1954.0, + 311.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1985.0, + 348.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1978.0, + 693.0, + 1978.0, + 693.0, + 2008.0, + 349.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 484.0, + 1405.0, + 484.0, + 1405.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 517.0, + 430.0, + 517.0, + 430.0, + 550.0, + 294.0, + 550.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 255, + 1411, + 255, + 1411, + 2014, + 293, + 2014 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 835, + 2061, + 863, + 2061, + 863, + 2087, + 835, + 2087 + ], + "score": 0.842 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 246.0, + 614.0, + 246.0, + 614.0, + 269.0, + 591.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 259.0, + 418.0, + 259.0, + 418.0, + 292.0, + 348.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 290.0, + 1408.0, + 290.0, + 1408.0, + 325.0, + 306.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 319.0, + 1408.0, + 319.0, + 1408.0, + 354.0, + 346.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 348.0, + 420.0, + 348.0, + 420.0, + 381.0, + 350.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 375.0, + 1406.0, + 375.0, + 1406.0, + 418.0, + 304.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 404.0, + 1115.0, + 404.0, + 1115.0, + 445.0, + 344.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 439.0, + 1406.0, + 439.0, + 1406.0, + 476.0, + 306.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 466.0, + 997.0, + 466.0, + 997.0, + 503.0, + 346.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 499.0, + 1406.0, + 499.0, + 1406.0, + 536.0, + 306.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 528.0, + 1408.0, + 528.0, + 1408.0, + 565.0, + 348.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 555.0, + 418.0, + 555.0, + 418.0, + 588.0, + 350.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 583.0, + 1408.0, + 583.0, + 1408.0, + 627.0, + 302.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 617.0, + 1261.0, + 617.0, + 1261.0, + 648.0, + 351.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 650.0, + 1404.0, + 650.0, + 1404.0, + 681.0, + 308.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 674.0, + 808.0, + 674.0, + 808.0, + 708.0, + 346.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 710.0, + 1404.0, + 710.0, + 1404.0, + 741.0, + 294.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 734.0, + 1080.0, + 734.0, + 1080.0, + 770.0, + 346.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 765.0, + 1408.0, + 765.0, + 1408.0, + 807.0, + 291.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 796.0, + 1170.0, + 796.0, + 1170.0, + 827.0, + 351.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 830.0, + 1404.0, + 830.0, + 1404.0, + 861.0, + 296.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 852.0, + 1406.0, + 852.0, + 1406.0, + 891.0, + 348.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 881.0, + 612.0, + 881.0, + 612.0, + 918.0, + 350.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 914.0, + 1406.0, + 914.0, + 1406.0, + 951.0, + 292.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 943.0, + 1408.0, + 943.0, + 1408.0, + 980.0, + 348.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 972.0, + 604.0, + 972.0, + 604.0, + 1003.0, + 347.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 999.0, + 1408.0, + 999.0, + 1408.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1030.0, + 1248.0, + 1030.0, + 1248.0, + 1065.0, + 348.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1059.0, + 1410.0, + 1059.0, + 1410.0, + 1100.0, + 291.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1088.0, + 1406.0, + 1088.0, + 1406.0, + 1129.0, + 348.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1115.0, + 607.0, + 1115.0, + 607.0, + 1154.0, + 348.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1150.0, + 1404.0, + 1150.0, + 1404.0, + 1187.0, + 292.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1179.0, + 1408.0, + 1179.0, + 1408.0, + 1216.0, + 350.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1208.0, + 471.0, + 1208.0, + 471.0, + 1239.0, + 351.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1235.0, + 1408.0, + 1235.0, + 1408.0, + 1276.0, + 291.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1266.0, + 1000.0, + 1266.0, + 1000.0, + 1297.0, + 351.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1295.0, + 1410.0, + 1295.0, + 1410.0, + 1338.0, + 291.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1326.0, + 1408.0, + 1326.0, + 1408.0, + 1363.0, + 350.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1392.0, + 296.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1384.0, + 1408.0, + 1384.0, + 1408.0, + 1423.0, + 346.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1413.0, + 418.0, + 1413.0, + 418.0, + 1446.0, + 350.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1448.0, + 1404.0, + 1448.0, + 1404.0, + 1479.0, + 296.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1473.0, + 852.0, + 1473.0, + 852.0, + 1508.0, + 348.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1508.0, + 1404.0, + 1508.0, + 1404.0, + 1539.0, + 298.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1570.0, + 350.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1561.0, + 700.0, + 1561.0, + 700.0, + 1597.0, + 346.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1593.0, + 1408.0, + 1593.0, + 1408.0, + 1630.0, + 298.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1619.0, + 1333.0, + 1619.0, + 1333.0, + 1659.0, + 346.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1686.0, + 296.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1681.0, + 703.0, + 1681.0, + 703.0, + 1717.0, + 348.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1404.0, + 1715.0, + 1404.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1744.0, + 1396.0, + 1744.0, + 1396.0, + 1775.0, + 351.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1810.0, + 293.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1797.0, + 1408.0, + 1797.0, + 1408.0, + 1841.0, + 346.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1830.0, + 730.0, + 1830.0, + 730.0, + 1866.0, + 350.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1861.0, + 1406.0, + 1861.0, + 1406.0, + 1897.0, + 298.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1888.0, + 1406.0, + 1888.0, + 1406.0, + 1927.0, + 346.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1919.0, + 540.0, + 1919.0, + 540.0, + 1950.0, + 351.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1946.0, + 1410.0, + 1946.0, + 1410.0, + 1988.0, + 292.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1977.0, + 1219.0, + 1977.0, + 1219.0, + 2014.0, + 350.0, + 2014.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 197, + 1411, + 197, + 1411, + 2013, + 293, + 2013 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.836 + }, + { + "category_id": 13, + "poly": [ + 1202, + 260, + 1327, + 260, + 1327, + 291, + 1202, + 291 + ], + "score": 0.58, + "latex": "\\{ O \\bar { S } D I \\} ~ I 4 )" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 201.0, + 1409.0, + 201.0, + 1409.0, + 241.0, + 291.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 231.0, + 1411.0, + 231.0, + 1411.0, + 267.0, + 345.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 253.0, + 1201.0, + 253.0, + 1201.0, + 301.0, + 345.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 253.0, + 1409.0, + 253.0, + 1409.0, + 301.0, + 1328.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 289.0, + 519.0, + 289.0, + 519.0, + 321.0, + 349.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 1407.0, + 317.0, + 1407.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 345.0, + 1407.0, + 345.0, + 1407.0, + 383.0, + 349.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 375.0, + 674.0, + 375.0, + 674.0, + 406.0, + 349.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 404.0, + 1405.0, + 404.0, + 1405.0, + 436.0, + 295.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 430.0, + 1407.0, + 430.0, + 1407.0, + 468.0, + 349.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 460.0, + 1134.0, + 460.0, + 1134.0, + 492.0, + 349.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 1407.0, + 490.0, + 1407.0, + 522.0, + 295.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 516.0, + 1205.0, + 516.0, + 1205.0, + 554.0, + 349.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 1409.0, + 546.0, + 1409.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 574.0, + 1407.0, + 574.0, + 1407.0, + 612.0, + 349.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 604.0, + 523.0, + 604.0, + 523.0, + 638.0, + 345.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 630.0, + 1407.0, + 630.0, + 1407.0, + 668.0, + 295.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 656.0, + 1409.0, + 656.0, + 1409.0, + 698.0, + 345.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 686.0, + 810.0, + 686.0, + 810.0, + 722.0, + 345.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 716.0, + 1407.0, + 716.0, + 1407.0, + 754.0, + 295.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 748.0, + 1407.0, + 748.0, + 1407.0, + 780.0, + 349.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 772.0, + 419.0, + 772.0, + 419.0, + 806.0, + 349.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 802.0, + 1407.0, + 802.0, + 1407.0, + 836.0, + 295.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 828.0, + 1407.0, + 828.0, + 1407.0, + 868.0, + 345.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 858.0, + 852.0, + 858.0, + 852.0, + 891.0, + 347.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 887.0, + 1407.0, + 887.0, + 1407.0, + 925.0, + 293.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 913.0, + 1084.0, + 913.0, + 1084.0, + 949.0, + 347.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 943.0, + 1409.0, + 943.0, + 1409.0, + 981.0, + 297.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 971.0, + 992.0, + 971.0, + 992.0, + 1007.0, + 347.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1005.0, + 1407.0, + 1005.0, + 1407.0, + 1037.0, + 295.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1033.0, + 1279.0, + 1033.0, + 1279.0, + 1065.0, + 349.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1409.0, + 1063.0, + 1409.0, + 1095.0, + 295.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1087.0, + 1409.0, + 1087.0, + 1409.0, + 1125.0, + 349.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1117.0, + 469.0, + 1117.0, + 469.0, + 1149.0, + 351.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1145.0, + 1409.0, + 1145.0, + 1409.0, + 1183.0, + 291.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1173.0, + 1409.0, + 1173.0, + 1409.0, + 1211.0, + 349.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1201.0, + 964.0, + 1201.0, + 964.0, + 1239.0, + 347.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1229.0, + 1409.0, + 1229.0, + 1409.0, + 1269.0, + 297.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1261.0, + 724.0, + 1261.0, + 724.0, + 1293.0, + 349.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1289.0, + 1407.0, + 1289.0, + 1407.0, + 1327.0, + 293.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1319.0, + 938.0, + 1319.0, + 938.0, + 1350.0, + 349.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1346.0, + 1409.0, + 1346.0, + 1409.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1374.0, + 1379.0, + 1374.0, + 1379.0, + 1412.0, + 349.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1404.0, + 1407.0, + 1404.0, + 1407.0, + 1442.0, + 295.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1432.0, + 1140.0, + 1432.0, + 1140.0, + 1470.0, + 349.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1458.0, + 1409.0, + 1458.0, + 1409.0, + 1502.0, + 291.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1492.0, + 912.0, + 1492.0, + 912.0, + 1524.0, + 349.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1522.0, + 1407.0, + 1522.0, + 1407.0, + 1554.0, + 295.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1550.0, + 1403.0, + 1550.0, + 1403.0, + 1582.0, + 349.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1574.0, + 1409.0, + 1574.0, + 1409.0, + 1612.0, + 349.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1602.0, + 417.0, + 1602.0, + 417.0, + 1636.0, + 349.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1630.0, + 1409.0, + 1630.0, + 1409.0, + 1670.0, + 297.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1660.0, + 1058.0, + 1660.0, + 1058.0, + 1698.0, + 349.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1690.0, + 1407.0, + 1690.0, + 1407.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1718.0, + 1044.0, + 1718.0, + 1044.0, + 1756.0, + 347.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1786.0, + 293.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1814.0, + 349.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1806.0, + 479.0, + 1806.0, + 479.0, + 1837.0, + 349.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1835.0, + 1407.0, + 1835.0, + 1407.0, + 1867.0, + 299.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1861.0, + 1409.0, + 1861.0, + 1409.0, + 1899.0, + 347.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1889.0, + 810.0, + 1889.0, + 810.0, + 1927.0, + 347.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1917.0, + 1190.0, + 1917.0, + 1190.0, + 1953.0, + 295.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1987.0, + 295.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1977.0, + 986.0, + 1977.0, + 986.0, + 2015.0, + 349.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 202, + 1407, + 202, + 1407, + 1281, + 294, + 1281 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.822 + }, + { + "category_id": 13, + "poly": [ + 956, + 408, + 983, + 408, + 983, + 435, + 956, + 435 + ], + "score": 0.81, + "latex": "d ^ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 870.0, + 2057.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 205.0, + 1055.0, + 205.0, + 1055.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1408.0, + 231.0, + 1408.0, + 274.0, + 297.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 264.0, + 1013.0, + 264.0, + 1013.0, + 296.0, + 350.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 329.0, + 296.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 322.0, + 762.0, + 322.0, + 762.0, + 354.0, + 349.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 351.0, + 1404.0, + 351.0, + 1404.0, + 384.0, + 296.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 379.0, + 1170.0, + 379.0, + 1170.0, + 415.0, + 349.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 407.0, + 955.0, + 407.0, + 955.0, + 444.0, + 295.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 407.0, + 1405.0, + 407.0, + 1405.0, + 444.0, + 984.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 435.0, + 1174.0, + 435.0, + 1174.0, + 473.0, + 348.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 470.0, + 1404.0, + 470.0, + 1404.0, + 501.0, + 298.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 495.0, + 1404.0, + 495.0, + 1404.0, + 529.0, + 350.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 523.0, + 787.0, + 523.0, + 787.0, + 559.0, + 348.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 547.0, + 1408.0, + 547.0, + 1408.0, + 592.0, + 297.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 583.0, + 1314.0, + 583.0, + 1314.0, + 614.0, + 351.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 603.0, + 1408.0, + 603.0, + 1408.0, + 653.0, + 296.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 639.0, + 1350.0, + 639.0, + 1350.0, + 673.0, + 349.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 703.0, + 297.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 694.0, + 1409.0, + 694.0, + 1409.0, + 734.0, + 348.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 724.0, + 417.0, + 724.0, + 417.0, + 758.0, + 348.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 754.0, + 1405.0, + 754.0, + 1405.0, + 790.0, + 297.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 783.0, + 1127.0, + 783.0, + 1127.0, + 816.0, + 349.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 815.0, + 1404.0, + 815.0, + 1404.0, + 847.0, + 296.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 843.0, + 1323.0, + 843.0, + 1323.0, + 875.0, + 351.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 872.0, + 1406.0, + 872.0, + 1406.0, + 908.0, + 298.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 937.0, + 349.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 924.0, + 619.0, + 924.0, + 619.0, + 960.0, + 349.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 996.0, + 296.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 984.0, + 1099.0, + 984.0, + 1099.0, + 1018.0, + 349.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1016.0, + 1405.0, + 1016.0, + 1405.0, + 1051.0, + 297.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1043.0, + 1222.0, + 1043.0, + 1222.0, + 1077.0, + 348.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1076.0, + 1408.0, + 1076.0, + 1408.0, + 1107.0, + 297.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1098.0, + 1409.0, + 1098.0, + 1409.0, + 1137.0, + 346.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1128.0, + 417.0, + 1128.0, + 417.0, + 1162.0, + 348.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 1408.0, + 1156.0, + 1408.0, + 1198.0, + 293.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1185.0, + 1327.0, + 1185.0, + 1327.0, + 1222.0, + 346.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1218.0, + 1406.0, + 1218.0, + 1406.0, + 1254.0, + 296.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1246.0, + 906.0, + 1246.0, + 906.0, + 1278.0, + 349.0, + 1278.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/test/2dnO3LLiJ1/0.png b/vlm/test/2dnO3LLiJ1/0.png new file mode 100644 index 0000000000000000000000000000000000000000..378d23cf8efaadd4f7bdd93a63d2080a4eff2b07 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5057fce41539590857c4424c0760d93bccf4a6f495c257debf47e462c759a97e +size 654440 diff --git a/vlm/test/2dnO3LLiJ1/1.png b/vlm/test/2dnO3LLiJ1/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2eff4987378c185ebec1f6e09d78484d1c8a6b2e --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd6dc52b7920e029c7c4b15ff0c4163fc7e1a380ef06a69c742551a0f793b4e +size 631658 diff --git a/vlm/test/2dnO3LLiJ1/10.png b/vlm/test/2dnO3LLiJ1/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c6f059b943ed65cc5c9d6140c4ae0a9495e0ca56 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842c4b057aa28556d5a9e4b6c9e13be420ae66894e6f6e6ef96e6e54c1a7f5a2 +size 443776 diff --git a/vlm/test/2dnO3LLiJ1/11.png b/vlm/test/2dnO3LLiJ1/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c9366bed104c6e639dcaf53780c674b9c836c888 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a7bb9c804e3fa799b03ba70cf08942b76435234dc2bd3c346aa4657a19a7ea +size 371924 diff --git a/vlm/test/2dnO3LLiJ1/12.png b/vlm/test/2dnO3LLiJ1/12.png new file mode 100644 index 0000000000000000000000000000000000000000..48fb3bc108972ab7e43a48b341d8113bee815c27 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452f03cb962217a70f9411ea6c1abca6c67e0a6692ec1d06e89b77f38b05b067 +size 552541 diff --git a/vlm/test/2dnO3LLiJ1/13.png b/vlm/test/2dnO3LLiJ1/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa5ed496038fcdb2a92cc90b9f85d59cc1542f5 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555d0004c01144d553f9fc486fd86530ff427e1ec2c5efe918b3d318e0e7231e +size 438613 diff --git a/vlm/test/2dnO3LLiJ1/14.png b/vlm/test/2dnO3LLiJ1/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e51b612c2bd2d63e40c121ab7095594b61b81c82 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b4fcef680220de612a23943cea3c8099bf85d7738d0e1f53bbbfaa3f5f1098 +size 386117 diff --git a/vlm/test/2dnO3LLiJ1/15.png b/vlm/test/2dnO3LLiJ1/15.png new file mode 100644 index 0000000000000000000000000000000000000000..52ed715ad015ceb6770ccf67c421431cb2011060 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a140d67966fe393ccea979ca4333e3b7ba19cdb9c01d47806e844d8114d48df4 +size 529076 diff --git a/vlm/test/2dnO3LLiJ1/16.png b/vlm/test/2dnO3LLiJ1/16.png new file mode 100644 index 0000000000000000000000000000000000000000..0eb6c01912107e25dc02b9d704028180994de8b3 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273dcc6ba82a966972fa599a4cc328a0d313d9f20b1b4887fb2963ff92f8cf86 +size 311496 diff --git a/vlm/test/2dnO3LLiJ1/17.png b/vlm/test/2dnO3LLiJ1/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a68dc45834aaffd5791ce1ad40b3fa626f2427c0 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe6268102876839853eef59643dafe39ea74108b523474afe7c6102fb1bc167 +size 43555 diff --git a/vlm/test/2dnO3LLiJ1/18.png b/vlm/test/2dnO3LLiJ1/18.png new file mode 100644 index 0000000000000000000000000000000000000000..72df54f0e36038fbceedcde48894818154e34e3a --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871d2285634f642d00272d144df9447a64b82724dfecb8391c71b361de46cc92 +size 1236273 diff --git a/vlm/test/2dnO3LLiJ1/19.png b/vlm/test/2dnO3LLiJ1/19.png new file mode 100644 index 0000000000000000000000000000000000000000..814033facfeaf3c6d33aa06b2ba828de33668e0f --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff458f98cd3d034c3038e04a8b09c700c2cfb9d2f548c95fb9356de8067f594 +size 1245741 diff --git a/vlm/test/2dnO3LLiJ1/2.png b/vlm/test/2dnO3LLiJ1/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec71b2535af02952ee6a62a84af000907eb20bc --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f719e54cfa72564ec541682d10d2e97360e609fbe1729e18bbed028b47598c89 +size 557931 diff --git a/vlm/test/2dnO3LLiJ1/20.png b/vlm/test/2dnO3LLiJ1/20.png new file mode 100644 index 0000000000000000000000000000000000000000..85179fb772e701186cb34045ac87b175f7a86923 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722f102b167450ab6c64a3c6d5c00c2bd7afe4acaae67cf9eac5deb9cb8f9464 +size 1385387 diff --git a/vlm/test/2dnO3LLiJ1/3.png b/vlm/test/2dnO3LLiJ1/3.png new file mode 100644 index 0000000000000000000000000000000000000000..26c03b246dbacf058badd3c69f78411a84d44aed --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b7acb7afb9ac23bf9515c8221592be3bec7e69b01bc98b17a6d047bc960c64 +size 544770 diff --git a/vlm/test/2dnO3LLiJ1/4.png b/vlm/test/2dnO3LLiJ1/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ecce95aa066bc3f32d5bc8240f23b2a2d4f17ced --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8d1b95d954a73742751d119f712dbdae8dbba29f6222299d1e599808f898c9 +size 475737 diff --git a/vlm/test/2dnO3LLiJ1/5.png b/vlm/test/2dnO3LLiJ1/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dcfcb4a1f3503fef49984b8979fed5c652cf6b55 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975507481961424affaa44bd0f4581139a9935634647319a4cb98a316ef9f216 +size 523379 diff --git a/vlm/test/2dnO3LLiJ1/6.png b/vlm/test/2dnO3LLiJ1/6.png new file mode 100644 index 0000000000000000000000000000000000000000..be5263a1506ac7bbffcb803f27326e05e55542ad --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac3657ec91b747860329f948a8dcbb308bb868af65ffdccced2f7ef91bc6dc12 +size 573270 diff --git a/vlm/test/2dnO3LLiJ1/7.png b/vlm/test/2dnO3LLiJ1/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bda4cc6a195be99415390cd3f76fb042458d0461 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b8a8db58ecfb8d1339a66b9e0805cda774ba2f6262b8c269c92431fadaf6f8 +size 599389 diff --git a/vlm/test/2dnO3LLiJ1/8.png b/vlm/test/2dnO3LLiJ1/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3caa29b4f9426fd926881d4f2b921d54cd2cbdb3 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b6700083921f6a0e66e2964f80506f0e528bd0fb7e162dfaf8261e25180b70 +size 633879 diff --git a/vlm/test/2dnO3LLiJ1/9.png b/vlm/test/2dnO3LLiJ1/9.png new file mode 100644 index 0000000000000000000000000000000000000000..df9c3176d91b789576e0271a56e30345262c08a2 --- /dev/null +++ b/vlm/test/2dnO3LLiJ1/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e475407d3b50dde3f39b0d9fb4a4f290c2543ccef57c031046d75ebff2087825 +size 503323 diff --git a/vlm/test/6M5G5hNiAU/0.png b/vlm/test/6M5G5hNiAU/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2c9d4810a7a4e585e7a97670b80bcbac7d6a4ef0 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674b607eb66d8801873d8f13f69a7547fb0bb7ad2a7b5816f5009cac144ff4bd +size 518178 diff --git a/vlm/test/6M5G5hNiAU/1.png b/vlm/test/6M5G5hNiAU/1.png new file mode 100644 index 0000000000000000000000000000000000000000..45b16b9ac512399c994fe45065d97487555d0f9a --- /dev/null +++ b/vlm/test/6M5G5hNiAU/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75aa5492d8ee17e94b68ed996e7a8607ec02fa4d400f88e268c9e983611d3ca9 +size 557413 diff --git a/vlm/test/6M5G5hNiAU/10.png b/vlm/test/6M5G5hNiAU/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b98ce954d101e94194db21737c39db2a5735b7fd --- /dev/null +++ b/vlm/test/6M5G5hNiAU/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034bd0cb6377b1143b0e7fec086c3f2426e2e761495dd893802de3442a60ac4e +size 562982 diff --git a/vlm/test/6M5G5hNiAU/11.png b/vlm/test/6M5G5hNiAU/11.png new file mode 100644 index 0000000000000000000000000000000000000000..008ac34c7b669e195fa46a6a770328ae95998829 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4295622174ff8192245de800ff6a1392eba72f740816e92b68d5940f19238ddf +size 600015 diff --git a/vlm/test/6M5G5hNiAU/12.png b/vlm/test/6M5G5hNiAU/12.png new file mode 100644 index 0000000000000000000000000000000000000000..dc75a939f9bde81171a95a6dee998c4912230782 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7748b58e2553c553f7ab667da33aaea76ead2dffb90b2b5f216153e452d0d075 +size 238976 diff --git a/vlm/test/6M5G5hNiAU/13.png b/vlm/test/6M5G5hNiAU/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ce69737cfa06a7e9a0f82ac8fdcd8e6a9637e1f3 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e33155419fc98c22d123a43b1f1321b62080e0ec27e4a6ceb96b2b5b2e7297 +size 434473 diff --git a/vlm/test/6M5G5hNiAU/14.png b/vlm/test/6M5G5hNiAU/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7dab901b1480513d22cf8a3fa47757fc7d8ca7 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8a81ce9ddbf0a0676be8cd76bfe2ac6b112082f6a5a1de45cee6904c6d9bd2 +size 451177 diff --git a/vlm/test/6M5G5hNiAU/15.png b/vlm/test/6M5G5hNiAU/15.png new file mode 100644 index 0000000000000000000000000000000000000000..86aa316bae15eab97e071b8593e53f28f236d039 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406c77bc0ea653ec70512b70bfc65837110cceacf8b83bec29693f7e00a1bdf9 +size 376298 diff --git a/vlm/test/6M5G5hNiAU/16.png b/vlm/test/6M5G5hNiAU/16.png new file mode 100644 index 0000000000000000000000000000000000000000..bcf86eca348c508bca0e3fd200bf34e5c2ff7c26 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef0d771c96cc88c477dbc45387f9c0369a7feb7524d278a7e7239d50929f99 +size 362195 diff --git a/vlm/test/6M5G5hNiAU/17.png b/vlm/test/6M5G5hNiAU/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c44167ec487abf051a929313d100af75ff122e63 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bb28f00dd4cd4028e0d06f5799419dd10a3b3098ba6ebbabb24f3ff0fa3544 +size 392402 diff --git a/vlm/test/6M5G5hNiAU/18.png b/vlm/test/6M5G5hNiAU/18.png new file mode 100644 index 0000000000000000000000000000000000000000..d2d484699d38801339d2d59165879705b75523de --- /dev/null +++ b/vlm/test/6M5G5hNiAU/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc71e46a7b7fcc58fc565089ae295ec88d4e68389f6fc1c9f76977a5802370ab +size 377849 diff --git a/vlm/test/6M5G5hNiAU/19.png b/vlm/test/6M5G5hNiAU/19.png new file mode 100644 index 0000000000000000000000000000000000000000..a8a14032e26f4329b617c2ac685150d00684242a --- /dev/null +++ b/vlm/test/6M5G5hNiAU/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9ddeaabf0bc1e7b37d1c40d442a8798fca52b8ccb54b42a12007527a38e098 +size 360073 diff --git a/vlm/test/6M5G5hNiAU/2.png b/vlm/test/6M5G5hNiAU/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c28d5a2a61991c9e1e63dd72b3d9422677a51fe5 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6164473620dc057903dd65e7f45aa4d1880e1a97a2007f63da34193139f92e6 +size 628154 diff --git a/vlm/test/6M5G5hNiAU/20.png b/vlm/test/6M5G5hNiAU/20.png new file mode 100644 index 0000000000000000000000000000000000000000..6948b2cafe9d50f56fc864eb61aa092bc1cf073d --- /dev/null +++ b/vlm/test/6M5G5hNiAU/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d5162e85dee479f4bde23c6551c1ab3622cd93f6cfad728994c3359b998c6d +size 365641 diff --git a/vlm/test/6M5G5hNiAU/21.png b/vlm/test/6M5G5hNiAU/21.png new file mode 100644 index 0000000000000000000000000000000000000000..ee31bdefdc41ca71f2d47a0d2a092434ce401425 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fdfc15b9a0852b3bcf4f4c5340ff45681d13780e494a5ab0b06f949aa9a57b +size 372212 diff --git a/vlm/test/6M5G5hNiAU/22.png b/vlm/test/6M5G5hNiAU/22.png new file mode 100644 index 0000000000000000000000000000000000000000..146ab05f67e70abce8f0c6db61340dd82bd9742a --- /dev/null +++ b/vlm/test/6M5G5hNiAU/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb9cdd4fc2822ee994d163fabc6d2959993c3e1c4d1db6aec31537c37e51b3e +size 242351 diff --git a/vlm/test/6M5G5hNiAU/3.png b/vlm/test/6M5G5hNiAU/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d18828ea40874d9cf9d9d9abf8f386ad2f6e895f --- /dev/null +++ b/vlm/test/6M5G5hNiAU/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d84974aa5627083fbc3b9020835cf110a6baefbfd8856b1e536b62f2852ceaa +size 602439 diff --git a/vlm/test/6M5G5hNiAU/4.png b/vlm/test/6M5G5hNiAU/4.png new file mode 100644 index 0000000000000000000000000000000000000000..03510708f1ce254ebc2f1037b2fd10a5a2dadb40 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91e00994b31b5040d7ff2a492da6932bcbcbcdbb23f3846f7596f00c4d863c0 +size 499839 diff --git a/vlm/test/6M5G5hNiAU/5.png b/vlm/test/6M5G5hNiAU/5.png new file mode 100644 index 0000000000000000000000000000000000000000..14fafffedc5e239b091d6d4c9d4feac0940bc1c0 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8647c8b971317d9a49eadc4251615c570455b015ae8d77cc6687c0485de75ad2 +size 565338 diff --git a/vlm/test/6M5G5hNiAU/6.png b/vlm/test/6M5G5hNiAU/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b85113d396f4d501a71c21a4dade5e71dca3e44e --- /dev/null +++ b/vlm/test/6M5G5hNiAU/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42235f65143ed1d9cf62ca3be019356bc3a6d726c071595956735a24e876429 +size 601526 diff --git a/vlm/test/6M5G5hNiAU/7.png b/vlm/test/6M5G5hNiAU/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8025ff699937e28605ab95e5f4824d7696fa405e --- /dev/null +++ b/vlm/test/6M5G5hNiAU/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be344f8965755cde7c6fbfdc1603d0d2fd559480ed60fc25cf87684bd7885c3d +size 466051 diff --git a/vlm/test/6M5G5hNiAU/8.png b/vlm/test/6M5G5hNiAU/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3ea2620bc89ebd2e54453475852bb5fa80baf3 --- /dev/null +++ b/vlm/test/6M5G5hNiAU/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df61d7eda0029c4a9fc522b523d59034259c8fa0e5eef4c3e7709a39c83f70ac +size 583065 diff --git a/vlm/test/6M5G5hNiAU/9.png b/vlm/test/6M5G5hNiAU/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7cedc46c5bf17425fb4adda9cd793d5e723a6c2a --- /dev/null +++ b/vlm/test/6M5G5hNiAU/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6a6aa2e216a62005ab1d3da2ded3b6dcb57f7915edf5b65483eacc207b45a4 +size 620344 diff --git a/vlm/test/7oLshfEIC2/0.png b/vlm/test/7oLshfEIC2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a3ea60404ff2c6822a494e4dd2ad2b7d28eb8fe1 --- /dev/null +++ b/vlm/test/7oLshfEIC2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e9733b10c9d1042e59de2f8bfb2f949dba4a754afb2b080ff068b652916404 +size 526313 diff --git a/vlm/test/7oLshfEIC2/10.png b/vlm/test/7oLshfEIC2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b3dba572c4298bd44bb1a52678974c9e35ab9330 --- /dev/null +++ b/vlm/test/7oLshfEIC2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4fb8cc00bb4b6737f9261c7987302b75a202d4f6a204f43a3f8b4b24e89197 +size 533235 diff --git a/vlm/test/7oLshfEIC2/11.png b/vlm/test/7oLshfEIC2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..acdff27cbcfc8034ab8d846731c3890e152e1ad5 --- /dev/null +++ b/vlm/test/7oLshfEIC2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859fa2a1cb8236f528b28c366ce4b5ad498c010974eaf314bb2975c04484ce90 +size 507464 diff --git a/vlm/test/7oLshfEIC2/14.png b/vlm/test/7oLshfEIC2/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d383d8d98574f26d94edfd7969083ecb216a1ae4 --- /dev/null +++ b/vlm/test/7oLshfEIC2/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553b304c83c0559bb73c022e5b6207e7840e9b92b59df14d98f942b26074750c +size 444401 diff --git a/vlm/test/7oLshfEIC2/15.png b/vlm/test/7oLshfEIC2/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b74eb4b1bfde0d6d50e88ea3e75311549316d250 --- /dev/null +++ b/vlm/test/7oLshfEIC2/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9765d3a2913c2ef3b1aedb73ac6c4902b2ccecaa0d6d0977dd0cb30b909285bd +size 539772 diff --git a/vlm/test/7oLshfEIC2/17.png b/vlm/test/7oLshfEIC2/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1ae9e9c683e3250c2e7e0a2e215d36dd8df19477 --- /dev/null +++ b/vlm/test/7oLshfEIC2/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ca80d08601c38877bc1db2bb25c60b5c804fc049b3070c30d8ba5484216be1 +size 445218 diff --git a/vlm/test/7oLshfEIC2/2.png b/vlm/test/7oLshfEIC2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7a0529102bc3eccdd684aa212f02249400213fec --- /dev/null +++ b/vlm/test/7oLshfEIC2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5910e6279aa96a6655e29456db9540f4b5d10d2c16e41cf3fd797a29ec608b22 +size 582054 diff --git a/vlm/test/7oLshfEIC2/21.png b/vlm/test/7oLshfEIC2/21.png new file mode 100644 index 0000000000000000000000000000000000000000..f5f3556b07b2f1497533ed4f8078d22b97acbaf6 --- /dev/null +++ b/vlm/test/7oLshfEIC2/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c82e8acded17d38efe7f4c7537b661e317d8d17010f2c4ae7a859f26ab7bbbf +size 423840 diff --git a/vlm/test/7oLshfEIC2/23.png b/vlm/test/7oLshfEIC2/23.png new file mode 100644 index 0000000000000000000000000000000000000000..19b7f85801ff8265f893271c47bba9460c400b8f --- /dev/null +++ b/vlm/test/7oLshfEIC2/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea488daf91dba3264cc173cc844ea725dbdbd979ea38bab5939451416c78065e +size 498554 diff --git a/vlm/test/7oLshfEIC2/24.png b/vlm/test/7oLshfEIC2/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9f951075181e5ed3385dfef7cfaefc50c89c9a01 --- /dev/null +++ b/vlm/test/7oLshfEIC2/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab125d4e22b8f5954be9867c0f2ac0ff3f66dde72eaebe614f17ea84ab563848 +size 639822 diff --git a/vlm/test/7oLshfEIC2/3.png b/vlm/test/7oLshfEIC2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7bbe711301301c67c4aaf6d7dada8c09084d2cfd --- /dev/null +++ b/vlm/test/7oLshfEIC2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2145fffef702478e5ca422c1efdbe9795fa3de57f4b0f15e0c12418f412687d +size 552813 diff --git a/vlm/test/7oLshfEIC2/6.png b/vlm/test/7oLshfEIC2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..25e51007dfb0179233ac0271d80ba858744be4cf --- /dev/null +++ b/vlm/test/7oLshfEIC2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bd460519f5b1aa312ad4292c233beb8d199e359579c9ddffd8797adc3561c3 +size 649246 diff --git a/vlm/test/7oLshfEIC2/9.png b/vlm/test/7oLshfEIC2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..6d8ace1d5411913535e7a7fcb64b71aee2ea7fe8 --- /dev/null +++ b/vlm/test/7oLshfEIC2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f65a6c2dd1b021476171404e72ca57c5ba90b1479857205f4a72429573a3826 +size 446689 diff --git a/vlm/test/82A2EfMu3e/0.png b/vlm/test/82A2EfMu3e/0.png new file mode 100644 index 0000000000000000000000000000000000000000..89a30d719d69c1aefefca41f744a4c2225f49e70 --- /dev/null +++ b/vlm/test/82A2EfMu3e/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5acec1a6fbf7e83da5e85b89ee6cd1db3cf528103f99b084485e978eb42c6d +size 534173 diff --git a/vlm/test/82A2EfMu3e/1.png b/vlm/test/82A2EfMu3e/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb46075ebc800c1c8852199288358a3e0d98ef5 --- /dev/null +++ b/vlm/test/82A2EfMu3e/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bb324413b87ef75b101458d7dc72a613d2da40a89133398d8d9d65cf454e83 +size 560737 diff --git a/vlm/test/82A2EfMu3e/10.png b/vlm/test/82A2EfMu3e/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a1cc002381f8a539660f8d4458a905993f42f3ad --- /dev/null +++ b/vlm/test/82A2EfMu3e/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d920cf944ce4916cccf58dd9fe42dc7df9ce6ea123330c062695cd01a091de3d +size 583540 diff --git a/vlm/test/82A2EfMu3e/11.png b/vlm/test/82A2EfMu3e/11.png new file mode 100644 index 0000000000000000000000000000000000000000..80006cf9fcdf73a9d5589159250887e5d605214c --- /dev/null +++ b/vlm/test/82A2EfMu3e/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1510ba916cfefe41967d840cd39c0c63429a17f497102161a0f305ff192c65 +size 346036 diff --git a/vlm/test/82A2EfMu3e/12.png b/vlm/test/82A2EfMu3e/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b52f542beee022213522042aa9b2da7d80c10648 --- /dev/null +++ b/vlm/test/82A2EfMu3e/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c4d1ae23817a3c782eb634966ac795d84e8c9d91ee554e5d3fbc615bd8a650 +size 228261 diff --git a/vlm/test/82A2EfMu3e/13.png b/vlm/test/82A2EfMu3e/13.png new file mode 100644 index 0000000000000000000000000000000000000000..31eafff112e1b6c1641ec36357a06f596063869f --- /dev/null +++ b/vlm/test/82A2EfMu3e/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d118e02523ac7b9d7ac72edde85b377bc17286a193ad4fb55e1ed1ed41b4dd +size 329585 diff --git a/vlm/test/82A2EfMu3e/14.png b/vlm/test/82A2EfMu3e/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9625c2c155188bd6d00447c694bbe4a9f8a34ab3 --- /dev/null +++ b/vlm/test/82A2EfMu3e/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c936d3bef5ba8de8a2e3eb611b6e8ba98fec7dc8327e74b9536c8fad76b21f +size 341794 diff --git a/vlm/test/82A2EfMu3e/15.png b/vlm/test/82A2EfMu3e/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9a73168bda782bc4ab40ed8939a5697d24cb339d --- /dev/null +++ b/vlm/test/82A2EfMu3e/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca5c1f5f69cdfdd959f4f84074cf9dd700762df7316bec4c4f775057260c57a +size 294280 diff --git a/vlm/test/82A2EfMu3e/16.png b/vlm/test/82A2EfMu3e/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3a266ac59643d369503d564b495a2ed549388187 --- /dev/null +++ b/vlm/test/82A2EfMu3e/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed76e1249a6837a6b7b72358247b2181df9a32d7ea6edcd68246826d1a2056c +size 470352 diff --git a/vlm/test/82A2EfMu3e/17.png b/vlm/test/82A2EfMu3e/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7b6d8ba1d90648880cf12d08980a59f4a18e24cd --- /dev/null +++ b/vlm/test/82A2EfMu3e/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3d5679d74be06dbb01b8435b0a2110a2ef39ec54c6a8f022f72ab5b759882f +size 524195 diff --git a/vlm/test/82A2EfMu3e/18.png b/vlm/test/82A2EfMu3e/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a327271ae82eeeb32f27f29bbdc7a9f350ad8ff5 --- /dev/null +++ b/vlm/test/82A2EfMu3e/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62039cba58d7aa3ed4a1ababe50515ea69817221e4043c40f26d74ba7cc049d4 +size 316703 diff --git a/vlm/test/82A2EfMu3e/19.png b/vlm/test/82A2EfMu3e/19.png new file mode 100644 index 0000000000000000000000000000000000000000..f9182be7f5a647407ae4b86e0c0a253911aca3a7 --- /dev/null +++ b/vlm/test/82A2EfMu3e/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdc43ef7411eef39976fca935b03d331dfadb3b4562cb77ea05e20964c0314f +size 473673 diff --git a/vlm/test/82A2EfMu3e/2.png b/vlm/test/82A2EfMu3e/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8b44a04912d87b5c07c11fe1a02b7409be88bb --- /dev/null +++ b/vlm/test/82A2EfMu3e/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a68fb733b8ccb6025252971afa5c1903f45d10aa8284515ea6a9caa6e1cafc8 +size 536033 diff --git a/vlm/test/82A2EfMu3e/20.png b/vlm/test/82A2EfMu3e/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d071c402da1af0c20b59fb5493e723e3d56ad010 --- /dev/null +++ b/vlm/test/82A2EfMu3e/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5675f412e0d9c309cefd11baa0f468d7317b1a38a517fe6c3dfb38de37410c2 +size 503135 diff --git a/vlm/test/82A2EfMu3e/21.png b/vlm/test/82A2EfMu3e/21.png new file mode 100644 index 0000000000000000000000000000000000000000..6f59a2be2244f8ff74e6a78e4a94ac6081daa24d --- /dev/null +++ b/vlm/test/82A2EfMu3e/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:564fb9fdddb8c9e78d52662399c187633b8242bc1ad22ae18b4e142a5d0c87ef +size 635423 diff --git a/vlm/test/82A2EfMu3e/22.png b/vlm/test/82A2EfMu3e/22.png new file mode 100644 index 0000000000000000000000000000000000000000..28a3962d72cc3fe11f9a00d9479843a4de5c3af6 --- /dev/null +++ b/vlm/test/82A2EfMu3e/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0655aa51a90165e56cc91ad179b06ec79ebc479211235464d15d3e13010970dd +size 272695 diff --git a/vlm/test/82A2EfMu3e/23.png b/vlm/test/82A2EfMu3e/23.png new file mode 100644 index 0000000000000000000000000000000000000000..4f2537398887953ea0d7b4b93eeda29809147850 --- /dev/null +++ b/vlm/test/82A2EfMu3e/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca40377bfb6cf5004ddaffa8f4d0ee9a3e90ef0b672320f75f6b72bddf58975 +size 1412272 diff --git a/vlm/test/82A2EfMu3e/3.png b/vlm/test/82A2EfMu3e/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cfec1f5e74933f99cb7856b8ada1f710e7f35933 --- /dev/null +++ b/vlm/test/82A2EfMu3e/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb2c15c02be46ecfb5564ba27e5c827cb1f5add1c146f41c0d69545255a5d3a +size 492675 diff --git a/vlm/test/82A2EfMu3e/4.png b/vlm/test/82A2EfMu3e/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0f5bbfef60d28199e4560b57da7efb5ad9222285 --- /dev/null +++ b/vlm/test/82A2EfMu3e/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcb8a3f2385a9a240e9c3093bc3f15d9c81867e032c5e5a9d350c19ffda4bcc +size 464471 diff --git a/vlm/test/82A2EfMu3e/5.png b/vlm/test/82A2EfMu3e/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9abcc68eda698b945559fa5237d1f9dd51c42655 --- /dev/null +++ b/vlm/test/82A2EfMu3e/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1583c2308ebf535983ebf0c5eb062dad864dec9dca68f2900d8755b5c7905d +size 493001 diff --git a/vlm/test/82A2EfMu3e/6.png b/vlm/test/82A2EfMu3e/6.png new file mode 100644 index 0000000000000000000000000000000000000000..083827641c8b759f88d2964d31df5ff1f2345ad7 --- /dev/null +++ b/vlm/test/82A2EfMu3e/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e91a69647d53e5941aa8b65c80a336dc0b291a8322946eafc3d24cf18885f1 +size 519217 diff --git a/vlm/test/82A2EfMu3e/7.png b/vlm/test/82A2EfMu3e/7.png new file mode 100644 index 0000000000000000000000000000000000000000..99f00634fe5418924d7d0d98415beccf26641ac0 --- /dev/null +++ b/vlm/test/82A2EfMu3e/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ab253837f75fbb13be4b9b4f7fea1634e410a06dc524ee9bd36fe3c8e3bffa +size 750889 diff --git a/vlm/test/82A2EfMu3e/8.png b/vlm/test/82A2EfMu3e/8.png new file mode 100644 index 0000000000000000000000000000000000000000..92f5dfbb8ed0a708649f862d4cf9e53f6fcebd86 --- /dev/null +++ b/vlm/test/82A2EfMu3e/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae255a70c849efdf320461aacdadb0a11d90be95582b85334a88d243a3e77851 +size 421073 diff --git a/vlm/test/82A2EfMu3e/9.png b/vlm/test/82A2EfMu3e/9.png new file mode 100644 index 0000000000000000000000000000000000000000..13ae95414356d132670b939f07ab9931f8d5ba78 --- /dev/null +++ b/vlm/test/82A2EfMu3e/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1d0c0c58163534805e78aaf7618c13008f9bdb58d96b8597786fc362332731 +size 558311 diff --git a/vlm/test/8Wuvhh0LYW/0.png b/vlm/test/8Wuvhh0LYW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd6e2cff1829170c82ebeee30f7d1ffe70b715f --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fd50f9a4da8160264f087a12cbc9226f1091244b38c6ceaa4e7ec5a20cdff6 +size 543905 diff --git a/vlm/test/8Wuvhh0LYW/1.png b/vlm/test/8Wuvhh0LYW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa442398f685397f2d8f474d715d6de3b2e1ca2 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20f1073817ab293a8e53b6bd413fb980a71b909e0e455974afd458e54cc4793 +size 665613 diff --git a/vlm/test/8Wuvhh0LYW/10.png b/vlm/test/8Wuvhh0LYW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f19996223607a6c20a82d33dadf88e5e9fdcd469 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d172939a985dd2f90f18c313a85a44a7a5e9a88d0fe988c7aaadec4f38cf72fa +size 542799 diff --git a/vlm/test/8Wuvhh0LYW/11.png b/vlm/test/8Wuvhh0LYW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..69a580d7c6b68d99c9a7c8924b7dc69750ce5595 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2bdcc4345c6fd33c0003efe3558eec0ed193a22b005909c83448eb58588461f +size 601939 diff --git a/vlm/test/8Wuvhh0LYW/12.png b/vlm/test/8Wuvhh0LYW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bec7e6a8bf8e6032ae4e5abf92a3f2f64e8dee44 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16b5c8883716bd235ca9b384e84563afb81a036432798e34de878e2750e0e6d +size 428503 diff --git a/vlm/test/8Wuvhh0LYW/13.png b/vlm/test/8Wuvhh0LYW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4b879e9b54630dcd186fca6352838e22c394bb82 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4787213e53fd609019ed14891253a0b0ce56ccc7bfb590a52a7d914a95baebfd +size 447890 diff --git a/vlm/test/8Wuvhh0LYW/14.png b/vlm/test/8Wuvhh0LYW/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c5a710abefbc7df9eb465d6329e7407f5b5f7947 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720662bfd825842803664a9707e6f48b9fe1b3c16856a6cc0b26292d48b601be +size 511992 diff --git a/vlm/test/8Wuvhh0LYW/15.png b/vlm/test/8Wuvhh0LYW/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e03dd80150f7b25f2dd78ba0d72e9d38ee118a85 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e84d9099ecd4d3caaddcebb61c8358bdcb1589869a96718022caf55cd6a800 +size 526464 diff --git a/vlm/test/8Wuvhh0LYW/16.png b/vlm/test/8Wuvhh0LYW/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e9852472293df49fb7b5f341b54c095b9b67d239 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50abf523116aedf490960bad6baa38a5934f9e399b856876ecbb6892e89ea5bf +size 377015 diff --git a/vlm/test/8Wuvhh0LYW/17.png b/vlm/test/8Wuvhh0LYW/17.png new file mode 100644 index 0000000000000000000000000000000000000000..de6806b72783b16004ebfd8698f2f89be044bdd7 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2e7f8531d79d8c671e1be791adf07169db065d311d3e3625fc11ae7748c440 +size 660825 diff --git a/vlm/test/8Wuvhh0LYW/18.png b/vlm/test/8Wuvhh0LYW/18.png new file mode 100644 index 0000000000000000000000000000000000000000..39c580d76439b8bc31b61ab0da37b0489a0649fa --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53c7c702300110cee45ce78cc99b35dc52f1dd85a7553ae32af7510249775a8 +size 445770 diff --git a/vlm/test/8Wuvhh0LYW/19.png b/vlm/test/8Wuvhh0LYW/19.png new file mode 100644 index 0000000000000000000000000000000000000000..3262dd8363a2a39156e719a63c2a454352a41035 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823521c28deeafdd641b2f50ded6530a7efbf512bc60b5b9de47cec000431b62 +size 468148 diff --git a/vlm/test/8Wuvhh0LYW/2.png b/vlm/test/8Wuvhh0LYW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b0688229be926b2dbf1368f8d4609e77b30d324 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558757551c6e267a0ab5778db11fa3ee22878ae8dce9f34837b42be3ee930d3e +size 638608 diff --git a/vlm/test/8Wuvhh0LYW/20.png b/vlm/test/8Wuvhh0LYW/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9e15eee1a96ef8e8d02ebd4747e99701f6e95929 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00140d939d43d160ba0bb40de331f4a5b9a4783c63d1faafec85c74405796199 +size 381231 diff --git a/vlm/test/8Wuvhh0LYW/21.png b/vlm/test/8Wuvhh0LYW/21.png new file mode 100644 index 0000000000000000000000000000000000000000..d26606ae151319a238b5a982cc998e60502f60c3 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e5bcfd2fffd3014bfc0e9fc2a276feaf60d2840817e5e3c1dab414054b323e +size 365466 diff --git a/vlm/test/8Wuvhh0LYW/22.png b/vlm/test/8Wuvhh0LYW/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f7e60a665d8532a11bf219187a6defa27c814f --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f020a2ec8940cf4959447484b9209fd7a4f090cc042f2150ce030ec6485068a +size 317945 diff --git a/vlm/test/8Wuvhh0LYW/23.png b/vlm/test/8Wuvhh0LYW/23.png new file mode 100644 index 0000000000000000000000000000000000000000..1e6eb824cd16aee6e625f315f3223d5dc6adf18b --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37cd9d394ea7e5162125cdfe39524c3077be2bb1fae396c997ac2d601461d7f +size 445911 diff --git a/vlm/test/8Wuvhh0LYW/24.png b/vlm/test/8Wuvhh0LYW/24.png new file mode 100644 index 0000000000000000000000000000000000000000..cebc2043fe3e801b7f5f0935fb201f2f8e6b4e97 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd493f2930fe48c91199df19d4feaf08cc0350334728003afe2a2176e6ce73ea +size 522545 diff --git a/vlm/test/8Wuvhh0LYW/3.png b/vlm/test/8Wuvhh0LYW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..87e54eaf1531ad8249707bad02b27e791e2c04ee --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161ff12e478b7b3a1a641ac0123481792623c89a73cd63e8182679b733a5677d +size 563248 diff --git a/vlm/test/8Wuvhh0LYW/4.png b/vlm/test/8Wuvhh0LYW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5d749e8edbeb68b7270236538fea56991fc22f5f --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d33da9e8ae54ef01bbcba89a7ca6a393783538655409f1def1ecff87fc8a97 +size 566510 diff --git a/vlm/test/8Wuvhh0LYW/5.png b/vlm/test/8Wuvhh0LYW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..859a311684833198c22547f01b01f8adc574399e --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae7c8771320a6a326477898f5f4cac732cbf2f4adb99965205d623f03cdfced +size 520304 diff --git a/vlm/test/8Wuvhh0LYW/6.png b/vlm/test/8Wuvhh0LYW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ef4cd2f02c81169cbebc09e41a59c1488049d9 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9bc1b925dd044547c4899640e2fedbc884894319fbd9ce9290a8847d357bad0 +size 659344 diff --git a/vlm/test/8Wuvhh0LYW/7.png b/vlm/test/8Wuvhh0LYW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5b543e6a49726a627959a0f05291b4ede57f91f4 --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d18c852c295c8361721afcda97697a9178770cfe7fef8c71ab57e1d92dab1c +size 598239 diff --git a/vlm/test/8Wuvhh0LYW/8.png b/vlm/test/8Wuvhh0LYW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8cd3bf223aebfa4d2f94cf3c081fb92736e268eb --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b3e25bcac90d80a0610866cb2f1e94dc04555ab968b4ef6ce225648fdef389 +size 548134 diff --git a/vlm/test/8Wuvhh0LYW/9.png b/vlm/test/8Wuvhh0LYW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0e36271a7b28eaf13d56dfc020d6811a7645c9eb --- /dev/null +++ b/vlm/test/8Wuvhh0LYW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896f3f4a82fffa880ba951853cfd9edb38f86850f598f84f89b1283c326ca46e +size 566395 diff --git a/vlm/test/BOfDKxfwt0/0.png b/vlm/test/BOfDKxfwt0/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0f0c0ef7b9954a040074222a575bb3f212cf29f0 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35289d35abad50784d4e028cd85eef94446399d15c52db7f2da1cc1e5b7c62ef +size 456634 diff --git a/vlm/test/BOfDKxfwt0/1.png b/vlm/test/BOfDKxfwt0/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f14352247b1ff0fdceca7326a450eaf2ee377e9 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8118604240da9a592ba91dce8beb1da39adabe45c386de15423d0aa4de5f70e +size 552524 diff --git a/vlm/test/BOfDKxfwt0/10.png b/vlm/test/BOfDKxfwt0/10.png new file mode 100644 index 0000000000000000000000000000000000000000..316bf8642e220592e2aa55b31717baa2f038b8cf --- /dev/null +++ b/vlm/test/BOfDKxfwt0/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e2cb67e20f3544bc15b14ed1cdd79f998cf7ba9475f939a99e9397cb5c7fcd +size 536779 diff --git a/vlm/test/BOfDKxfwt0/11.png b/vlm/test/BOfDKxfwt0/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fd462a3fcad44fa8e405e19aa56258a0dd213ec8 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3aeba788f9aab7884684772ca0f4640d7e14e964d83c011cd46e163217d1dac +size 564334 diff --git a/vlm/test/BOfDKxfwt0/12.png b/vlm/test/BOfDKxfwt0/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f859b1c4763cb7541bf072f042f458333c941f7f --- /dev/null +++ b/vlm/test/BOfDKxfwt0/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432ce7e1cc82e7b14c6e14d63f0fdf220ce35abcfc080fa18d55f97b81e6d530 +size 80398 diff --git a/vlm/test/BOfDKxfwt0/13.png b/vlm/test/BOfDKxfwt0/13.png new file mode 100644 index 0000000000000000000000000000000000000000..31879fd18f6ac33db0eb2f9ca41e1b4856a26c32 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1938c403ba5b916fb86368ee8f373becf2191d3b80a78a74021a50b9c7765b34 +size 305659 diff --git a/vlm/test/BOfDKxfwt0/14.png b/vlm/test/BOfDKxfwt0/14.png new file mode 100644 index 0000000000000000000000000000000000000000..736df05ec9fc3cfeb3f905f192463f4b6ccda510 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58aaed1f2fc2085a4a17b17676739462224e2856e8d11b218bba2fdd44a7bd89 +size 382407 diff --git a/vlm/test/BOfDKxfwt0/15.png b/vlm/test/BOfDKxfwt0/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ee64d5ee1a1a4a5817d1965ac663c106c179d336 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619a619790ce20a32e122dbb755b487908b53e55d6dd5b105436579cb401cbea +size 214293 diff --git a/vlm/test/BOfDKxfwt0/16.png b/vlm/test/BOfDKxfwt0/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3e744b0e0cd48350118a131f2459f84cb540d3 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8442532ee6c5663c56c8432b3dcefa93456dd9e4647328243b8cff43981902ae +size 324408 diff --git a/vlm/test/BOfDKxfwt0/17.png b/vlm/test/BOfDKxfwt0/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f7addbe989f464dcf110080fec10f0ecb397c2f2 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eae4742070625950997e1cc76e4f7eedc4d4b9732b1e9d9aeb9ad3f0dd33d16 +size 205526 diff --git a/vlm/test/BOfDKxfwt0/18.png b/vlm/test/BOfDKxfwt0/18.png new file mode 100644 index 0000000000000000000000000000000000000000..29b753b9aa8bf2c6d57051d06a17dc8e10ba1441 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b30b5b95556d133733ad20726c24636d6f6d40a11618bc8c5aca1cd9c374af +size 425384 diff --git a/vlm/test/BOfDKxfwt0/19.png b/vlm/test/BOfDKxfwt0/19.png new file mode 100644 index 0000000000000000000000000000000000000000..ffc64108c860051580edc5b7acc7c35aa5fdb885 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df545bcb4e48a6ef97cae835d52562258c524db175da6ef8e2974cbd8b0bc6fd +size 274403 diff --git a/vlm/test/BOfDKxfwt0/2.png b/vlm/test/BOfDKxfwt0/2.png new file mode 100644 index 0000000000000000000000000000000000000000..41cf230c87baee508ecaa356c97032d619a36dae --- /dev/null +++ b/vlm/test/BOfDKxfwt0/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3112aecf3e5525535e33ba6ca4e4c02fb4976a51c1787a7a2ddf7c67bea1db0 +size 466220 diff --git a/vlm/test/BOfDKxfwt0/20.png b/vlm/test/BOfDKxfwt0/20.png new file mode 100644 index 0000000000000000000000000000000000000000..a15a8d93013337456dd8d47ea82928babd2181f4 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb422b9084626391e4a6a4212f2788a45e49dd85741c46bf1d83dce671117ca +size 225644 diff --git a/vlm/test/BOfDKxfwt0/21.png b/vlm/test/BOfDKxfwt0/21.png new file mode 100644 index 0000000000000000000000000000000000000000..8c816e16b13d7315feef017f6a7520eb9155a6d9 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750d7e300e1c6d487d8ff639b9ad9cefb940026295c94be710853c96a8a46c85 +size 295835 diff --git a/vlm/test/BOfDKxfwt0/22.png b/vlm/test/BOfDKxfwt0/22.png new file mode 100644 index 0000000000000000000000000000000000000000..9cbbfef09ab6376709a251ee5f91b80813a99e7d --- /dev/null +++ b/vlm/test/BOfDKxfwt0/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61f31d7bf6ea7f72803d9f189307aeddccf3a2a2072e2d8537d5649333cdfec +size 454141 diff --git a/vlm/test/BOfDKxfwt0/23.png b/vlm/test/BOfDKxfwt0/23.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c71f520633e0ee446365626beaf6f7ee48088f --- /dev/null +++ b/vlm/test/BOfDKxfwt0/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb4fef9491ae0dd4b6dea5e2693b2c939262507f9cc77eee78b0fb0cf87f52b +size 347940 diff --git a/vlm/test/BOfDKxfwt0/24.png b/vlm/test/BOfDKxfwt0/24.png new file mode 100644 index 0000000000000000000000000000000000000000..0edc8fd49814ea45a151cf17be96e5da3980e83e --- /dev/null +++ b/vlm/test/BOfDKxfwt0/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fb6bcb6eaf926d41067ead022807b6d499069908cb45a37813dcb042c5a4b0 +size 431702 diff --git a/vlm/test/BOfDKxfwt0/25.png b/vlm/test/BOfDKxfwt0/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a72ff87c116f56bbdddd00ad78436acaf276f0c8 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907db4a2862d8384fdeae8db5addeb574c204f197fa6b14e93520d9074cf89cf +size 147102 diff --git a/vlm/test/BOfDKxfwt0/26.png b/vlm/test/BOfDKxfwt0/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2a4abc13e5bc0e765d739dd67c6b99427803b476 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5e2f97b475cb1fee2dadd97f6b2c42b3da346f1ac036d8b3a041930a953666 +size 453684 diff --git a/vlm/test/BOfDKxfwt0/27.png b/vlm/test/BOfDKxfwt0/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f2d1603818db3a1ae1cab58436fcb49078922c3a --- /dev/null +++ b/vlm/test/BOfDKxfwt0/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de63c32399fe89846cb1999092c62c34bd0f18fa863239f9d3a66aefa6fef5a +size 416992 diff --git a/vlm/test/BOfDKxfwt0/28.png b/vlm/test/BOfDKxfwt0/28.png new file mode 100644 index 0000000000000000000000000000000000000000..79fc0877bbca5c8240f6dc0117c379ccd929a0a7 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d29dd17168ce776345306329a02bfbd4ef793243946c0251de055cc836265bc +size 122626 diff --git a/vlm/test/BOfDKxfwt0/29.png b/vlm/test/BOfDKxfwt0/29.png new file mode 100644 index 0000000000000000000000000000000000000000..c038f98d6b84eb67d35dca6390a95a59f04e75b5 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec25bbdca4cc67518a137e4060796e3e2a185a5afbc20f0ab1456267d7ed889d +size 162005 diff --git a/vlm/test/BOfDKxfwt0/3.png b/vlm/test/BOfDKxfwt0/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3bccc75f2c57a80da1765c94375327753efda5eb --- /dev/null +++ b/vlm/test/BOfDKxfwt0/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db601eaea56d4fb1d10733104f9a67e5339e08547eab69b7babfce3421b0b22 +size 446933 diff --git a/vlm/test/BOfDKxfwt0/30.png b/vlm/test/BOfDKxfwt0/30.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3e4504d1bf9982fafd025cb3dad1eaa8b4dcc0 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572955b4e584c801b0883b034257f6358ad92163fb8594c5dcd2a479c21cb954 +size 183796 diff --git a/vlm/test/BOfDKxfwt0/31.png b/vlm/test/BOfDKxfwt0/31.png new file mode 100644 index 0000000000000000000000000000000000000000..df74c2d636ee0ea62e08ccb29eaffabcff847a37 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef43b7c7c48d909b2134dee5e6503e68719dc17badb924965c7014ca539e319 +size 311480 diff --git a/vlm/test/BOfDKxfwt0/32.png b/vlm/test/BOfDKxfwt0/32.png new file mode 100644 index 0000000000000000000000000000000000000000..db2944ae199b85cb13be8f1d980e13602103cafb --- /dev/null +++ b/vlm/test/BOfDKxfwt0/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa39f19878d76206d4a0787ad6091cbce5de3b1bb496ca456c7b72c0ecdd028 +size 286970 diff --git a/vlm/test/BOfDKxfwt0/4.png b/vlm/test/BOfDKxfwt0/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c90268fe7a37a38a292d9439dd952acaddd18a17 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be76cab6a7c8eff99c21db8bae8f3ce3ecc71a9f8fce0102a04eff10ba246aa8 +size 510837 diff --git a/vlm/test/BOfDKxfwt0/5.png b/vlm/test/BOfDKxfwt0/5.png new file mode 100644 index 0000000000000000000000000000000000000000..87694759d299d599f37c1c15e2a4bf4aa8bb1f8a --- /dev/null +++ b/vlm/test/BOfDKxfwt0/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e42afe7ef043caef392615b8ab836cd2b0a391aca69d7e5951241daf905e275 +size 512803 diff --git a/vlm/test/BOfDKxfwt0/6.png b/vlm/test/BOfDKxfwt0/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a85ec6b9e0602247c46a58eed271f8b35590aa86 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225a0cf0e052c1ecf65ef6b5ee83015a52e645eb459fb89eacffabfa6e33ff9b +size 399417 diff --git a/vlm/test/BOfDKxfwt0/7.png b/vlm/test/BOfDKxfwt0/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a49df9982c08ccee7becb0b3a77dfba3865d956e --- /dev/null +++ b/vlm/test/BOfDKxfwt0/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a71c350f52357133c3f5b19bcc6b23a927ab2e729d23211d4150dca213882a6 +size 458257 diff --git a/vlm/test/BOfDKxfwt0/8.png b/vlm/test/BOfDKxfwt0/8.png new file mode 100644 index 0000000000000000000000000000000000000000..85e8a3b8e53a27b821d76e0652dd37a80f264cd3 --- /dev/null +++ b/vlm/test/BOfDKxfwt0/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a2d33e00a42263e3f1dbd7d92969eb50c825739efdddb6eb163c36a7d7aef2 +size 515247 diff --git a/vlm/test/BOfDKxfwt0/9.png b/vlm/test/BOfDKxfwt0/9.png new file mode 100644 index 0000000000000000000000000000000000000000..35e5dd2198cd5564d77f76daa27276bf251ca46c --- /dev/null +++ b/vlm/test/BOfDKxfwt0/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7a1754b43b303406aef4deea18fca07596130644d03b6faffaf39b04077192 +size 533904 diff --git a/vlm/test/DS5qRs0tQz/0.png b/vlm/test/DS5qRs0tQz/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1444ee838716643d15d2bbe376eb33775973879b --- /dev/null +++ b/vlm/test/DS5qRs0tQz/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb9214dfe3429c86354bdca48dce2a50b59466c67c8ccaf232192f366a6adca +size 1025485 diff --git a/vlm/test/DS5qRs0tQz/1.png b/vlm/test/DS5qRs0tQz/1.png new file mode 100644 index 0000000000000000000000000000000000000000..07f0e692d4440000513774b45e30af560acdf34d --- /dev/null +++ b/vlm/test/DS5qRs0tQz/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420e59e545bfd609ced21314567f4bc697b21c0a680ffe49c026642888d76eb1 +size 619198 diff --git a/vlm/test/DS5qRs0tQz/10.png b/vlm/test/DS5qRs0tQz/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e99e14ef5d7cb05eed6e2a5fe4b0317a1c61c475 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377c5d6bff62a7dee1fbf2482c02eeb76852dcfb038f68eb8afa73236841d695 +size 530135 diff --git a/vlm/test/DS5qRs0tQz/11.png b/vlm/test/DS5qRs0tQz/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0e784efd1f3657678a0d86b0456da485e1399a98 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b676d166a84c6a189d2a905f6635a62ffca8e094bb5108e89d785810856d09 +size 553986 diff --git a/vlm/test/DS5qRs0tQz/12.png b/vlm/test/DS5qRs0tQz/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e79b815ffe3f75ab29f5f5b8c6e63af4caf61e58 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac13eb63cf2cc00c66ad514d6786fb912bd306a2a272a7e176db38ffee6587b +size 566737 diff --git a/vlm/test/DS5qRs0tQz/13.png b/vlm/test/DS5qRs0tQz/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a46738cda906c959597f937c4421c10dcfb17a6b --- /dev/null +++ b/vlm/test/DS5qRs0tQz/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7636a200daf1902c4ee23822b2b45ed286abd356ed89b60deb252882c760ad26 +size 493227 diff --git a/vlm/test/DS5qRs0tQz/14.png b/vlm/test/DS5qRs0tQz/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8400f28be7788e0eba0855ba19c252adbae8c05b --- /dev/null +++ b/vlm/test/DS5qRs0tQz/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5f19fb6da2d5e4b8a198e9584a6c827ec26794570b9fc5ba223e870a80aff7 +size 417067 diff --git a/vlm/test/DS5qRs0tQz/15.png b/vlm/test/DS5qRs0tQz/15.png new file mode 100644 index 0000000000000000000000000000000000000000..57b21a16ecad97eebbda0484e74c37c17d6d0511 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dcdbfdfd79c624f0679fc74b598ec8348cd9b2aca659e05f379978ea2c9c29 +size 446541 diff --git a/vlm/test/DS5qRs0tQz/16.png b/vlm/test/DS5qRs0tQz/16.png new file mode 100644 index 0000000000000000000000000000000000000000..24405129b04d256396707c27d68acdb3acdf95e6 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17c30ed5fc0ef288563ad53e38ada8ed2aed57f6a35258a795dc5fbca9233aa +size 470678 diff --git a/vlm/test/DS5qRs0tQz/17.png b/vlm/test/DS5qRs0tQz/17.png new file mode 100644 index 0000000000000000000000000000000000000000..65e70081bded18283f34af60a12076587f89715a --- /dev/null +++ b/vlm/test/DS5qRs0tQz/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99151ea27afbbd5a443d4ef95055ef0cb48a4023ce33478b86ea75b47763f9cd +size 386180 diff --git a/vlm/test/DS5qRs0tQz/18.png b/vlm/test/DS5qRs0tQz/18.png new file mode 100644 index 0000000000000000000000000000000000000000..01d460d86227ef497e4c20f49e7b1c2222c45bd9 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cac12fe2aba149654cac6c4e693de5e55f40aced9d3d1c1af6bd8970972bee +size 388402 diff --git a/vlm/test/DS5qRs0tQz/19.png b/vlm/test/DS5qRs0tQz/19.png new file mode 100644 index 0000000000000000000000000000000000000000..029ac3e7891dca6f6c8d7a7e4f92823374059bc5 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d748155838eb4bcde309527ffd8f0dd150a67af978a9c003b0f725f27e9aaa +size 386078 diff --git a/vlm/test/DS5qRs0tQz/2.png b/vlm/test/DS5qRs0tQz/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b74a77ae655cb8f2b3fd0b3a763237f9417dacc0 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c1199f180573c94d77eae0bc7032bf15fa590a5e1f5d9afe8c3f2f7e3154db +size 590339 diff --git a/vlm/test/DS5qRs0tQz/20.png b/vlm/test/DS5qRs0tQz/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b529c199ec1908ce34cb9df824513beed5c934a9 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db6f86b147ab329023435f3810e00e61039e40b8a31205ee5fc25fb02508f34 +size 866026 diff --git a/vlm/test/DS5qRs0tQz/21.png b/vlm/test/DS5qRs0tQz/21.png new file mode 100644 index 0000000000000000000000000000000000000000..320cc789b53f1b7db6f690cafdf35f17bc1ef997 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea557ba9f8b5f5954f8f67bf4c51a312750f9e3dea317cd09a10e9a6d01f18cf +size 443069 diff --git a/vlm/test/DS5qRs0tQz/22.png b/vlm/test/DS5qRs0tQz/22.png new file mode 100644 index 0000000000000000000000000000000000000000..55cefa5ffc2f3ceb39feeae238c52833c3964860 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6096af4faf895b6695a61783e6869f77410ff211417338377ecbc6907ab2bebf +size 1232800 diff --git a/vlm/test/DS5qRs0tQz/23.png b/vlm/test/DS5qRs0tQz/23.png new file mode 100644 index 0000000000000000000000000000000000000000..920f2ce0330d13636b62f8034505a34247c691f4 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b90a49af6d7f3a7345a9a0f97b13dfcfa180bef95c8fac3647bef3f090d5a3 +size 970165 diff --git a/vlm/test/DS5qRs0tQz/24.png b/vlm/test/DS5qRs0tQz/24.png new file mode 100644 index 0000000000000000000000000000000000000000..05ab1961c6abaaf951540a62723456d73db22ccb --- /dev/null +++ b/vlm/test/DS5qRs0tQz/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033450c4c50204df26cc570f9984bcafbfb836b569c9f194219336ccf3340983 +size 506208 diff --git a/vlm/test/DS5qRs0tQz/25.png b/vlm/test/DS5qRs0tQz/25.png new file mode 100644 index 0000000000000000000000000000000000000000..e7a1778e2170987e9d24a10e48c3ecde7d1a9b72 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c755d4ad142b57b63db92981336eb66b488df01b5089420a051e85a573f334a1 +size 479502 diff --git a/vlm/test/DS5qRs0tQz/3.png b/vlm/test/DS5qRs0tQz/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f7540b4fed091c32dd741a54abd4e0c82a468b1 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dbb09e14bdfc057b73628f22304b375fc0f2d745cce0d1b7a1dc97784689ac +size 563394 diff --git a/vlm/test/DS5qRs0tQz/4.png b/vlm/test/DS5qRs0tQz/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f2eab0583ec9a02274bf12108bb6b9bdf87cc3 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29546db8665c487da0760b407a54c2b345dba1a8983463f5761c6fb61db3fa6 +size 523035 diff --git a/vlm/test/DS5qRs0tQz/5.png b/vlm/test/DS5qRs0tQz/5.png new file mode 100644 index 0000000000000000000000000000000000000000..66697e9977591fce25f14903d992c0edde516bce --- /dev/null +++ b/vlm/test/DS5qRs0tQz/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7b5e6c35a4a9e6f1a1717ebefa94cd80ccc544cc52bd92fcd428bc1ce9cd6a +size 529297 diff --git a/vlm/test/DS5qRs0tQz/6.png b/vlm/test/DS5qRs0tQz/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2f63ee224d54a7fd45617e1eb02e26ba8cc90fc8 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49401495662c083f21c312725f745304014304d28a80564c3a452aafb3c677db +size 654228 diff --git a/vlm/test/DS5qRs0tQz/7.png b/vlm/test/DS5qRs0tQz/7.png new file mode 100644 index 0000000000000000000000000000000000000000..649170a1edbedea099ca2823340fef746a5c99d7 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc348c83f680f1affdce30a7205afc426adcdf14c61d7108f5020a2d5c4c9ee +size 598106 diff --git a/vlm/test/DS5qRs0tQz/8.png b/vlm/test/DS5qRs0tQz/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bfb6e9d9dad12120cb6973486ad92d47a37b0ad5 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1771d1e0b96544170650d6d625c5845c2b3782c1ae157a807a01ef53b2c8237 +size 639178 diff --git a/vlm/test/DS5qRs0tQz/9.png b/vlm/test/DS5qRs0tQz/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1f2ae7803dd94d1b7f62d153397abf48f5238a93 --- /dev/null +++ b/vlm/test/DS5qRs0tQz/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392cf9e94667fbda5abf2204081b86fcc70d2369df26ceea8c22b37a58fb5c03 +size 239666 diff --git a/vlm/test/EHg5GDnyq1/0.png b/vlm/test/EHg5GDnyq1/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ade8ff7a93ef1a6dc1c104081f66fcd4bc1c0cc9 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea08a7feb612e8c3bf7b0e109dc37186aff1eaca77380b81b45dbc290bacdc6 +size 537134 diff --git a/vlm/test/EHg5GDnyq1/1.png b/vlm/test/EHg5GDnyq1/1.png new file mode 100644 index 0000000000000000000000000000000000000000..58a8bb3ad88a8c3a88c557fd4f02e3af29736848 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75490048fc1973c3d74a083d96435450bd034ca9f9c893375ba1c5eac040346e +size 579587 diff --git a/vlm/test/EHg5GDnyq1/10.png b/vlm/test/EHg5GDnyq1/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a88d5a8d5bcdd7e452931d243ba13634884ab7d9 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f42c5d343a29d2e5b9fa92f44a66e43730b6e0273fe2a7acc7444f5c5df9c0e +size 611782 diff --git a/vlm/test/EHg5GDnyq1/11.png b/vlm/test/EHg5GDnyq1/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7e1cb39a35398c155ca256385e7e535aa2e1003d --- /dev/null +++ b/vlm/test/EHg5GDnyq1/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732b92faa7cba141bae585b4847dbc7c64f99174ce64c59cb663c1e742159749 +size 609876 diff --git a/vlm/test/EHg5GDnyq1/12.png b/vlm/test/EHg5GDnyq1/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1b80dd7ef6afa32c5e029387d3d1bf226d8d9fcd --- /dev/null +++ b/vlm/test/EHg5GDnyq1/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4baa7d674928a3af25332addacddcca5dd59b6d781ab414d43e839bf58588eef +size 678787 diff --git a/vlm/test/EHg5GDnyq1/13.png b/vlm/test/EHg5GDnyq1/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a752940f6cdfe47a1b0d46002cc77d95a517248c --- /dev/null +++ b/vlm/test/EHg5GDnyq1/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5927d40dd738ac2e558ac46b3bf133d8771f389ed2bd4417d2fbba30e906750 +size 764609 diff --git a/vlm/test/EHg5GDnyq1/14.png b/vlm/test/EHg5GDnyq1/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f374a38a6e930363c658f7aee63c8ef626a62f18 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7947c77016ed080f3d3db5bc1a8f1c6987658d5cc4a943949ba5c90ab3187c +size 747501 diff --git a/vlm/test/EHg5GDnyq1/15.png b/vlm/test/EHg5GDnyq1/15.png new file mode 100644 index 0000000000000000000000000000000000000000..907d8a8937aef5e6c2758dcea9d28e18b7649087 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db475f80c3cc0c8f93ede1bfd2239f01d0995c21175dd9321e7161588656aa89 +size 637582 diff --git a/vlm/test/EHg5GDnyq1/16.png b/vlm/test/EHg5GDnyq1/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3aee6c6b79063091c4c667e7b55322a2de179965 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396e8b4b98d44d3cb10f57ab6ccb037dc80c861e40df079a4c724a9303fc050d +size 454529 diff --git a/vlm/test/EHg5GDnyq1/17.png b/vlm/test/EHg5GDnyq1/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e5bf9e4834809e21f6b7c961235788d9bd2af717 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf25a704661611a5b1c7cc48fad5b4eae1703271adf3258d2c0a057775fccd0d +size 541378 diff --git a/vlm/test/EHg5GDnyq1/18.png b/vlm/test/EHg5GDnyq1/18.png new file mode 100644 index 0000000000000000000000000000000000000000..746fa3a623880b73a2ba2276b6e1e73daecb7b1a --- /dev/null +++ b/vlm/test/EHg5GDnyq1/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd2ec529ba2717a9261c2c398d796d785557d9cfc36dfddebaa20eb1b6e4d21 +size 446098 diff --git a/vlm/test/EHg5GDnyq1/19.png b/vlm/test/EHg5GDnyq1/19.png new file mode 100644 index 0000000000000000000000000000000000000000..82a1e190a4b970f0de506a850337f3cc5a9f0e6e --- /dev/null +++ b/vlm/test/EHg5GDnyq1/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ea7a12b0de1bfbb08fd05aa83928a2b9baad9d26d63a38e34e3dbb46e828f9 +size 637231 diff --git a/vlm/test/EHg5GDnyq1/2.png b/vlm/test/EHg5GDnyq1/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea3afb1bc7b0de6780aafb2d9fb9788091c3d20 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1457a87b1f2e117de64a3e003f88d3dea1470d50926e89ce43ff85ec9970be99 +size 548238 diff --git a/vlm/test/EHg5GDnyq1/20.png b/vlm/test/EHg5GDnyq1/20.png new file mode 100644 index 0000000000000000000000000000000000000000..8e569473d1b9b6052430dae1b49c17d28c891d94 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a87e4e6f3b574299543465cbceaef3bb01ddf01050f8ece8171b85274ef5e1 +size 335571 diff --git a/vlm/test/EHg5GDnyq1/21.png b/vlm/test/EHg5GDnyq1/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c87f26bf56b540ecb1fcce593bfe6c6aee9d71b6 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5b455046085718a1a48c80cc2ebb2f2d4f7fcb46611f67680b80996fe2a168 +size 597869 diff --git a/vlm/test/EHg5GDnyq1/22.png b/vlm/test/EHg5GDnyq1/22.png new file mode 100644 index 0000000000000000000000000000000000000000..559d6fd4780701c2e8465b0679e3250928ea2ec7 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ac481267ba6cb60d1c6cdb05484dfb3dd435ed649e7bd479d6b5db9270b039 +size 587840 diff --git a/vlm/test/EHg5GDnyq1/23.png b/vlm/test/EHg5GDnyq1/23.png new file mode 100644 index 0000000000000000000000000000000000000000..5b01f97afa404c58ad0f57e294cbca748f04fab8 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcbf395d499613aa3b2a40b49dc9b85ec0f47cb9a47839ab0c839c6a4542cec3 +size 547308 diff --git a/vlm/test/EHg5GDnyq1/24.png b/vlm/test/EHg5GDnyq1/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a211448a3668f66d086b77e3359837fde42cc8f0 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33672156fd3df6ccbbb6b3fd60bd1177b3a29c785195d64ac6464f81a2cf469 +size 458642 diff --git a/vlm/test/EHg5GDnyq1/25.png b/vlm/test/EHg5GDnyq1/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a111b3e7a3b878017a60c8fb8aa1874aea026ea4 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61154686435ef167a00e8dcb67da940b38ae6da7383b9da3fb7ccdfd271a678b +size 171731 diff --git a/vlm/test/EHg5GDnyq1/26.png b/vlm/test/EHg5GDnyq1/26.png new file mode 100644 index 0000000000000000000000000000000000000000..140428955e9607e2248dde863ebeeabf2da89ae3 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d9b7a0e5eee6baa50fb8d6bae1c805cac6b2d414180653561b3bfab083f364 +size 356545 diff --git a/vlm/test/EHg5GDnyq1/27.png b/vlm/test/EHg5GDnyq1/27.png new file mode 100644 index 0000000000000000000000000000000000000000..09f7c779f5c206fea232c7e8290051dc4dce4270 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dfc1cce8f902ee94d91eac41fdd435989447c230149a926dbcaf6dc1aeb3c1 +size 309496 diff --git a/vlm/test/EHg5GDnyq1/28.png b/vlm/test/EHg5GDnyq1/28.png new file mode 100644 index 0000000000000000000000000000000000000000..32852e3c51289f23d53183d7958eb4d134dcb84d --- /dev/null +++ b/vlm/test/EHg5GDnyq1/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf095678a3b1e731bcc2c0baf22e9822e3a891987081cf8eb3d87e4ba4a7b40 +size 322327 diff --git a/vlm/test/EHg5GDnyq1/29.png b/vlm/test/EHg5GDnyq1/29.png new file mode 100644 index 0000000000000000000000000000000000000000..abb0e8eb4d8a54b4fe844f6ee576d98cbce419ed --- /dev/null +++ b/vlm/test/EHg5GDnyq1/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a6fcede63431e86c79149296f7e7f0409d4f2ae4a54dc4b03d889a825799dc +size 304629 diff --git a/vlm/test/EHg5GDnyq1/3.png b/vlm/test/EHg5GDnyq1/3.png new file mode 100644 index 0000000000000000000000000000000000000000..da01bef91a30025501c288032da3b40640e51851 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1adea2c06e2aade85930051b8e5cad7419e6a351acea7c8988f61647ee9483c +size 559977 diff --git a/vlm/test/EHg5GDnyq1/30.png b/vlm/test/EHg5GDnyq1/30.png new file mode 100644 index 0000000000000000000000000000000000000000..644d7254c08a163e72fa0074a70660d0c1464199 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287f47e015190476e3c07391699fa12b7416640a8da76d7a1065d1af7ca8e93d +size 338024 diff --git a/vlm/test/EHg5GDnyq1/31.png b/vlm/test/EHg5GDnyq1/31.png new file mode 100644 index 0000000000000000000000000000000000000000..f54aa289d6be21c7dcaacefc7425068672616260 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1624eaa5eb1a37008d44bf0b60282c69bd14f0ac14cd4dd350b526577a4c9d25 +size 361850 diff --git a/vlm/test/EHg5GDnyq1/32.png b/vlm/test/EHg5GDnyq1/32.png new file mode 100644 index 0000000000000000000000000000000000000000..35b177ca78b4a1186b01c832d2d4e44d284fc84f --- /dev/null +++ b/vlm/test/EHg5GDnyq1/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c8e49fa7e7ea50d71ed1083a69a7dbd8bcf618dc15a9093676180649c79a02 +size 364931 diff --git a/vlm/test/EHg5GDnyq1/33.png b/vlm/test/EHg5GDnyq1/33.png new file mode 100644 index 0000000000000000000000000000000000000000..fca38105dc903f33039d1b782e21787e20668a71 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1332dedebbcd7e7c0b14a3e8d8215eec4d59ca2132dd7d853c85516b1abce28 +size 348024 diff --git a/vlm/test/EHg5GDnyq1/34.png b/vlm/test/EHg5GDnyq1/34.png new file mode 100644 index 0000000000000000000000000000000000000000..199bce55bf1914cf4955aad3d9ca21435458208c --- /dev/null +++ b/vlm/test/EHg5GDnyq1/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22782c451049a318ef5a2a7fc7d194bed3e6e3ee1ba34e841228b39882a8d0b6 +size 547133 diff --git a/vlm/test/EHg5GDnyq1/35.png b/vlm/test/EHg5GDnyq1/35.png new file mode 100644 index 0000000000000000000000000000000000000000..413258774256272b1a75e8c42b814961819f749c --- /dev/null +++ b/vlm/test/EHg5GDnyq1/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238df64f2f3efdd17af76abd702a18f242e98d3fccff8165a99b025e5aca8ee8 +size 518643 diff --git a/vlm/test/EHg5GDnyq1/36.png b/vlm/test/EHg5GDnyq1/36.png new file mode 100644 index 0000000000000000000000000000000000000000..cc76e1a8eba15e7624603fd00ca005ea517dc267 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f814b8fb340244fe76a56d4e84d9600cd29703ce4ca0bc50ab3289a0d3a8d9 +size 547924 diff --git a/vlm/test/EHg5GDnyq1/37.png b/vlm/test/EHg5GDnyq1/37.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0ead686a59f8b2a54bd1ed419bb2ba1ff2f059 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fbef17b1b7a4de4804cdc3a4b4001ceddd3ab1d6f3601da7207b943d6fda0b +size 511684 diff --git a/vlm/test/EHg5GDnyq1/38.png b/vlm/test/EHg5GDnyq1/38.png new file mode 100644 index 0000000000000000000000000000000000000000..6f73cb0d5269714cd877ac2b16422577915abaa6 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd35caf6117b2c748adbc0317cae3caa14ed302413b82acd13e89873bc16b36 +size 534891 diff --git a/vlm/test/EHg5GDnyq1/39.png b/vlm/test/EHg5GDnyq1/39.png new file mode 100644 index 0000000000000000000000000000000000000000..a6bd021f96430ed709fc37d0587ac6423dbdbe8f --- /dev/null +++ b/vlm/test/EHg5GDnyq1/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773b7c33a19a0c8dcff88d2367347681f5ed06bafd1968e743f763f007abf895 +size 349683 diff --git a/vlm/test/EHg5GDnyq1/4.png b/vlm/test/EHg5GDnyq1/4.png new file mode 100644 index 0000000000000000000000000000000000000000..da30ef839cbb5f5cc3e56a94b9cbfc1a73bad5ae --- /dev/null +++ b/vlm/test/EHg5GDnyq1/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b302ee2f5788c70bffdafedc882c10b3dd956a92ad715f5f8b7258843ee0de +size 695931 diff --git a/vlm/test/EHg5GDnyq1/40.png b/vlm/test/EHg5GDnyq1/40.png new file mode 100644 index 0000000000000000000000000000000000000000..1a1ccf15ea75cb28647ff3792ac014ecaa5ac300 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bff3e684f6cb339573a9c9af40f060543c5c5e48b989b7e5d1a73763773ac1 +size 342990 diff --git a/vlm/test/EHg5GDnyq1/41.png b/vlm/test/EHg5GDnyq1/41.png new file mode 100644 index 0000000000000000000000000000000000000000..6756364dc803090f2a39b3a7a0b1ff4cbc0aba2c --- /dev/null +++ b/vlm/test/EHg5GDnyq1/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491f39b95e9f2b9d6680642400b6d7a747b8e6dd8296ac2f991f4c80f8bdf672 +size 595021 diff --git a/vlm/test/EHg5GDnyq1/42.png b/vlm/test/EHg5GDnyq1/42.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa0ebbd4624730857fed7ca3cff9d6156503042 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ac0b84837957892d3581f678bb585fa3b9af99e26faca916547e2bfa6c6be2 +size 169839 diff --git a/vlm/test/EHg5GDnyq1/5.png b/vlm/test/EHg5GDnyq1/5.png new file mode 100644 index 0000000000000000000000000000000000000000..771c974cf58d2d9816993a7f57bad9b87b905649 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7830321b09092cf07b353e5fc18b8774f0569891f71f49b4219abfde5a05992 +size 584873 diff --git a/vlm/test/EHg5GDnyq1/6.png b/vlm/test/EHg5GDnyq1/6.png new file mode 100644 index 0000000000000000000000000000000000000000..829f6fb0ae12b8d74d6328c3b18b5681ffddc949 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29a84af9f0004f288f80733340e8f710fd39116702cb48557e44f135a4a4fa4 +size 615755 diff --git a/vlm/test/EHg5GDnyq1/7.png b/vlm/test/EHg5GDnyq1/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5e1d9f9669684ef1f921de65dcda84561a253adf --- /dev/null +++ b/vlm/test/EHg5GDnyq1/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66dc572003da02d071040052422eea6ad60e6f72cb10d565fa85ae5578e7b9ed +size 630755 diff --git a/vlm/test/EHg5GDnyq1/8.png b/vlm/test/EHg5GDnyq1/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0c5eebc6226f18910a05be6da8f5316c4b4dac71 --- /dev/null +++ b/vlm/test/EHg5GDnyq1/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80090ee389c86e8d3506abefa705d1ce9fdbcb13e44c9e8ed8baa8a27f1e988e +size 575355 diff --git a/vlm/test/EHg5GDnyq1/9.png b/vlm/test/EHg5GDnyq1/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b4e930793d7449d84026ce7a43e1f3b40f3d71ea --- /dev/null +++ b/vlm/test/EHg5GDnyq1/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fd8c48a1381710587250273c508f901b8a73b314a18f03ccea8a323008e8d9 +size 642931 diff --git a/vlm/test/FdVXgSJhvz/0.png b/vlm/test/FdVXgSJhvz/0.png new file mode 100644 index 0000000000000000000000000000000000000000..17f04bcfea825d0cb2e89b3f210006549a07f331 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c993b14485b32353fd58726a221023cfb6ac359023ef1abb2f795554ad62cd +size 525233 diff --git a/vlm/test/FdVXgSJhvz/1.png b/vlm/test/FdVXgSJhvz/1.png new file mode 100644 index 0000000000000000000000000000000000000000..324a9ff4e30f530a8dbd4cd757e89ae47baeed3f --- /dev/null +++ b/vlm/test/FdVXgSJhvz/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2fb5414ddf619599259348ba9222d3321c4d305d0e56178b1116f6e6d3e7fd +size 633871 diff --git a/vlm/test/FdVXgSJhvz/10.png b/vlm/test/FdVXgSJhvz/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7432cdfa4c84c9116492ac6e185ab61de67f7358 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5705ce93f4a9dc6525a0c094990b28d2b6b50f085f6d3902243724accce9a361 +size 529959 diff --git a/vlm/test/FdVXgSJhvz/11.png b/vlm/test/FdVXgSJhvz/11.png new file mode 100644 index 0000000000000000000000000000000000000000..06bf0b1e0d942d8e3cc7e74a7102bd0c162457cb --- /dev/null +++ b/vlm/test/FdVXgSJhvz/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c11fb3bb8641376ee36aced180b239560dbf09a40fd08cab34ecf3d08969e +size 571954 diff --git a/vlm/test/FdVXgSJhvz/12.png b/vlm/test/FdVXgSJhvz/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6e251190711862584748b16ae7974ae6c2017674 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249529df7da3140fcba45a45f8dbd2859877bdc0d88c7f6af6aa73cc83a2253f +size 180115 diff --git a/vlm/test/FdVXgSJhvz/13.png b/vlm/test/FdVXgSJhvz/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3a9e8815bfe2810c1e71e36e0646f668cc186a58 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65aab1de866853914c9c06016bd1c2d6e864f02d2709a6e6c12c73a7f006d646 +size 363876 diff --git a/vlm/test/FdVXgSJhvz/14.png b/vlm/test/FdVXgSJhvz/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3745d8024c17d57bc2e26d1bfe5d366823470567 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1bb5f76a9cb56f57db3fefd89c1dded44f434fda96a28fd5d58c9e602edc55 +size 293788 diff --git a/vlm/test/FdVXgSJhvz/15.png b/vlm/test/FdVXgSJhvz/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e2a3c97dce7e7b6902a910e413bfc627c878b8b1 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6844ba4b9264860fac60b3576ac806d906ebc8ffbe35cfb3bbe052a8eaf073c9 +size 222203 diff --git a/vlm/test/FdVXgSJhvz/16.png b/vlm/test/FdVXgSJhvz/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1fcfcd1cd2822aaae99c6bc0efa6c60f4bc19e93 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a3a2666eb23ece75a0555cb86a897dbebe35e3975cbf718a1575eb73a849d7 +size 298831 diff --git a/vlm/test/FdVXgSJhvz/17.png b/vlm/test/FdVXgSJhvz/17.png new file mode 100644 index 0000000000000000000000000000000000000000..38cd9860bd5c1793720e5c65fb46cdc6b625e3f0 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ce90a9d9374f0770df91666d8974c5b8f39ef5506251847df572d024cc7983 +size 218734 diff --git a/vlm/test/FdVXgSJhvz/18.png b/vlm/test/FdVXgSJhvz/18.png new file mode 100644 index 0000000000000000000000000000000000000000..be04700d1f057da8d3909c485d73690fc5aa6e7f --- /dev/null +++ b/vlm/test/FdVXgSJhvz/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27fca65c9588949d04683a8f4c1119fd404a2b8fbbb86fa27f9849cb1022b1c1 +size 341160 diff --git a/vlm/test/FdVXgSJhvz/19.png b/vlm/test/FdVXgSJhvz/19.png new file mode 100644 index 0000000000000000000000000000000000000000..dd4323e4f8f84d95ccbb4f8e49092e5e2b69346f --- /dev/null +++ b/vlm/test/FdVXgSJhvz/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549bbaa1bd84dd01caa45c73f62b71d9dfb5d825e9139e690ba3a0ea4f358c85 +size 266616 diff --git a/vlm/test/FdVXgSJhvz/2.png b/vlm/test/FdVXgSJhvz/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c310677e831b96aa2c5d15688584f54fc26fe5f4 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb593375ea54bb977bf9c935ca9a5049a6e3ea57890e14e5f028f7095a47c3be +size 486866 diff --git a/vlm/test/FdVXgSJhvz/20.png b/vlm/test/FdVXgSJhvz/20.png new file mode 100644 index 0000000000000000000000000000000000000000..598c066e247710799dd4e458f309d90fc47c676f --- /dev/null +++ b/vlm/test/FdVXgSJhvz/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29556f649d96c03df0d2ea76031817ce2e76d5bbc7dfb5b9ee9778f84e440882 +size 313984 diff --git a/vlm/test/FdVXgSJhvz/21.png b/vlm/test/FdVXgSJhvz/21.png new file mode 100644 index 0000000000000000000000000000000000000000..1b171dcf6cf3983f4fd79491170856d0df74ae9d --- /dev/null +++ b/vlm/test/FdVXgSJhvz/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2c9208670948211f8ddaed353f80d91d7bc49f9990bd03307dcfd477d13a9a +size 508738 diff --git a/vlm/test/FdVXgSJhvz/22.png b/vlm/test/FdVXgSJhvz/22.png new file mode 100644 index 0000000000000000000000000000000000000000..52ba2e9c99d99200db4946e302d289a47ac44873 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16f987a561375ff96f798b1dde18401d6b2a45bf6466089dadafeba21c1c83f +size 262668 diff --git a/vlm/test/FdVXgSJhvz/23.png b/vlm/test/FdVXgSJhvz/23.png new file mode 100644 index 0000000000000000000000000000000000000000..1eeff5f94b9d7f50fdb50e0dc594aa9e16e6d943 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f276e70a098af1d497eb9864cc89332d5e3d9fe96a39cee54d298971ac14e89 +size 486530 diff --git a/vlm/test/FdVXgSJhvz/24.png b/vlm/test/FdVXgSJhvz/24.png new file mode 100644 index 0000000000000000000000000000000000000000..6c53b9d560e41f788abd4f7d98d9f66268f8db6e --- /dev/null +++ b/vlm/test/FdVXgSJhvz/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d6f09879ffc84b23284cf1511ef4d94833deda25a96297bc0bbd0ac399f358 +size 248189 diff --git a/vlm/test/FdVXgSJhvz/25.png b/vlm/test/FdVXgSJhvz/25.png new file mode 100644 index 0000000000000000000000000000000000000000..2019388aca12979bfc63dfbc0bfa68b1bbf8045e --- /dev/null +++ b/vlm/test/FdVXgSJhvz/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166ea0142b044b0fb83b83e5bc2d45c466436b098bc9c4454f38055f0ab44167 +size 546840 diff --git a/vlm/test/FdVXgSJhvz/26.png b/vlm/test/FdVXgSJhvz/26.png new file mode 100644 index 0000000000000000000000000000000000000000..e35e745d5c6320cfb4c36961c57e8be52ab5ea40 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd696cbde82943874fba5aa2310431e954f19ef727113eac025b840d3e3c474 +size 288082 diff --git a/vlm/test/FdVXgSJhvz/27.png b/vlm/test/FdVXgSJhvz/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c48e1dcdea35aa271de33a51a1d8d9adff654ebb --- /dev/null +++ b/vlm/test/FdVXgSJhvz/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8565e500cc386cad129c5ab604e88acc066f816d69498d4acb6db4e0046286 +size 131186 diff --git a/vlm/test/FdVXgSJhvz/28.png b/vlm/test/FdVXgSJhvz/28.png new file mode 100644 index 0000000000000000000000000000000000000000..16ca46e8d0ccf2feb1c4ea8a93e71925afe70f9c --- /dev/null +++ b/vlm/test/FdVXgSJhvz/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d3b80ad3f9cce6bf007d401349a5cd124d44dc5648a63bca1c2305f3bf294a +size 132384 diff --git a/vlm/test/FdVXgSJhvz/29.png b/vlm/test/FdVXgSJhvz/29.png new file mode 100644 index 0000000000000000000000000000000000000000..3476a8fa2727d55daa2cbaa51791a5bb73c9d895 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7d736819d2f47024f41a61c6e2d20a81bb90de4946a17f378dd0cd6223144d +size 328418 diff --git a/vlm/test/FdVXgSJhvz/3.png b/vlm/test/FdVXgSJhvz/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d538a40e4aa663b43f43e444d608b3398dc2dbb3 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85efbcff49c2544c331b79f111624f1be793406da36fca4ae0dcf28bff06c977 +size 538238 diff --git a/vlm/test/FdVXgSJhvz/30.png b/vlm/test/FdVXgSJhvz/30.png new file mode 100644 index 0000000000000000000000000000000000000000..46f815906a8339e539b22638951676479900950a --- /dev/null +++ b/vlm/test/FdVXgSJhvz/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd63ad3dca2f5c30f8e65f19098c7a7880ecc1965201b3685866a381dd31b14 +size 271725 diff --git a/vlm/test/FdVXgSJhvz/4.png b/vlm/test/FdVXgSJhvz/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a917b3733d29074049ec22b749ea0db8b1fe4b5 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d4e9fca685efd264787435f8ae9f1b23479ab6c1b7d144fdbf77aabe9f330d +size 430171 diff --git a/vlm/test/FdVXgSJhvz/5.png b/vlm/test/FdVXgSJhvz/5.png new file mode 100644 index 0000000000000000000000000000000000000000..133b10a14e69cc78961e8021d7ddd8ab564ac2da --- /dev/null +++ b/vlm/test/FdVXgSJhvz/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d162a18fb26989017acb712dac815a2e144f56218227ab757f308b9811a3b2e +size 544382 diff --git a/vlm/test/FdVXgSJhvz/6.png b/vlm/test/FdVXgSJhvz/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6f0b5de5ae541f821d3f270ab6edfcd3fd3fff7a --- /dev/null +++ b/vlm/test/FdVXgSJhvz/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e64e2dbae62d5e47ff50a25a0cba08385413b540cdedf2270238a6e460dcd02 +size 545843 diff --git a/vlm/test/FdVXgSJhvz/7.png b/vlm/test/FdVXgSJhvz/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2c759c4466edf3c8a261a95b5d2642d9319630b2 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010c5207e5f2c5f27a66d7c938507be1f35734c70c6f7b5ba6ea5de2c2298f57 +size 520062 diff --git a/vlm/test/FdVXgSJhvz/8.png b/vlm/test/FdVXgSJhvz/8.png new file mode 100644 index 0000000000000000000000000000000000000000..88d77471696fbe3319c4a35ce8de3d2a4509e25d --- /dev/null +++ b/vlm/test/FdVXgSJhvz/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a51634a61fb658b4bd0e2c5673bff13d30f94aa26b4b63ffa3f6b1bd831a84d +size 617087 diff --git a/vlm/test/FdVXgSJhvz/9.png b/vlm/test/FdVXgSJhvz/9.png new file mode 100644 index 0000000000000000000000000000000000000000..810cf9be1177e6a8bb4589dd6e9fee5153158875 --- /dev/null +++ b/vlm/test/FdVXgSJhvz/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e85871d6c52a0c36e03f2cc6199fa13b331fe5eac0ec384a00dfb3688341bb8 +size 527859 diff --git a/vlm/test/GEcwtMk1uA/10.png b/vlm/test/GEcwtMk1uA/10.png new file mode 100644 index 0000000000000000000000000000000000000000..88a618b55b314833fc32dc8f81f02f59ab2d6f74 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60cb0479b72f443d62b3071aaa47ad699ef578a05f7385b2a2806869fa96227d +size 587064 diff --git a/vlm/test/GEcwtMk1uA/16.png b/vlm/test/GEcwtMk1uA/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d198f89a0a46a36f665412bd3d75573ef3f322aa --- /dev/null +++ b/vlm/test/GEcwtMk1uA/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af2eca2424ba1b62c1560a04a7868fa8ce44dcfe2ce0fab0f88e50ed2f8aead1 +size 664620 diff --git a/vlm/test/GEcwtMk1uA/17.png b/vlm/test/GEcwtMk1uA/17.png new file mode 100644 index 0000000000000000000000000000000000000000..30266f453250a853c862279c2004b803a68ae099 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be05782a4d2c42320b922564c92531917bded5fbc042820690bad87c952b798a +size 624377 diff --git a/vlm/test/GEcwtMk1uA/2.png b/vlm/test/GEcwtMk1uA/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0b7b4353884853f9e97325314a1cd7e0cdd7d9f9 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28816569aa4fcd217b405f76a27110badc05364c815c37542c9a4af919a5a0e +size 754157 diff --git a/vlm/test/GEcwtMk1uA/21.png b/vlm/test/GEcwtMk1uA/21.png new file mode 100644 index 0000000000000000000000000000000000000000..087a6b647314f4e8d2062b0c88981a46c1626f83 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d6e7148685777fef1e5bad807dbd516cb580bedfad96689ae9ee7772ece16d +size 404515 diff --git a/vlm/test/GEcwtMk1uA/23.png b/vlm/test/GEcwtMk1uA/23.png new file mode 100644 index 0000000000000000000000000000000000000000..43f80c0a15e57d1ab5169898a0fbda72d3769bcc --- /dev/null +++ b/vlm/test/GEcwtMk1uA/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87cf23f3ef2b3f9dc11063052e15ef1e3d9901090be1c6e6d34ac15b7b32b41 +size 419119 diff --git a/vlm/test/GEcwtMk1uA/24.png b/vlm/test/GEcwtMk1uA/24.png new file mode 100644 index 0000000000000000000000000000000000000000..e45785450d8b83e3b62bbe365b71d670da2dc4ac --- /dev/null +++ b/vlm/test/GEcwtMk1uA/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aad96446152a8be19f5da800bd4995ad7f49fcb79f9f452bceff323516ffc30 +size 357020 diff --git a/vlm/test/GEcwtMk1uA/3.png b/vlm/test/GEcwtMk1uA/3.png new file mode 100644 index 0000000000000000000000000000000000000000..80dcfacba79128dbf6076686681d6be66401e520 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46e094b733330c82e09eb8a3de9fcfe8a4eb39acb5ea2247ed6666900ef37ce +size 647165 diff --git a/vlm/test/GEcwtMk1uA/32.png b/vlm/test/GEcwtMk1uA/32.png new file mode 100644 index 0000000000000000000000000000000000000000..2e1c5594b4c7aef8e884975836870fc9a15621f4 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5119c91dd870c0b7db9b077afadd884550f3b21a125a4d61edc7fe9ad267d89 +size 542913 diff --git a/vlm/test/GEcwtMk1uA/33.png b/vlm/test/GEcwtMk1uA/33.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb989240c792026516d9e4dacb50f61badfee50 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505d48189a610ca675afda7934fcf2978fbeb4bd09fd8621f425360479d366de +size 480920 diff --git a/vlm/test/GEcwtMk1uA/36.png b/vlm/test/GEcwtMk1uA/36.png new file mode 100644 index 0000000000000000000000000000000000000000..05754f9db23bc4027a6d2e6efd6bf5ee9afb71e8 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee9d67314d3e1f343b454ecb9f3d1ec52bb1774070291bc1963a3f666b5d648 +size 523314 diff --git a/vlm/test/GEcwtMk1uA/37.png b/vlm/test/GEcwtMk1uA/37.png new file mode 100644 index 0000000000000000000000000000000000000000..94f2215aa80af5fbd6c880e3ec9671bffffe072e --- /dev/null +++ b/vlm/test/GEcwtMk1uA/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5693965a504e2ec02dc7ecf308f8a8f32f8d4f2adf044dfb8bc195afa90ebc +size 498185 diff --git a/vlm/test/GEcwtMk1uA/38.png b/vlm/test/GEcwtMk1uA/38.png new file mode 100644 index 0000000000000000000000000000000000000000..c05813333078181453af8e14dc062662637001e1 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ebb74a955955bc0b5f2eebdb1deda020d1749c8eed8db66fb9bb692dddea9f6 +size 551789 diff --git a/vlm/test/GEcwtMk1uA/42.png b/vlm/test/GEcwtMk1uA/42.png new file mode 100644 index 0000000000000000000000000000000000000000..de7b083b6e0df5e0c2ec6d4eb9419cb42cb18216 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8145f3003d897e8cd3d35141a11b816665459f59067c6f0c4d3818dcca6854b0 +size 617115 diff --git a/vlm/test/GEcwtMk1uA/43.png b/vlm/test/GEcwtMk1uA/43.png new file mode 100644 index 0000000000000000000000000000000000000000..2d87bfb73152fd916bd1fcb2590093201856053c --- /dev/null +++ b/vlm/test/GEcwtMk1uA/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b129eb30f7b81534199a2d7a31c4b079df3a7751d43abd43214f1a7a939e06 +size 433016 diff --git a/vlm/test/GEcwtMk1uA/44.png b/vlm/test/GEcwtMk1uA/44.png new file mode 100644 index 0000000000000000000000000000000000000000..96e54459b19861ae22e879d412e49f64f5701532 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894b6deddeea8c9346c3af26c53ab64032929eda20a68f68318df570750f5741 +size 581910 diff --git a/vlm/test/GEcwtMk1uA/46.png b/vlm/test/GEcwtMk1uA/46.png new file mode 100644 index 0000000000000000000000000000000000000000..5cb615de12d38ec87dcc02d1436ec85b0a1d8a77 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf8c6d80bf4391874f91798e57c2156d509bed7569a804b48c418ff5d249be5 +size 511038 diff --git a/vlm/test/GEcwtMk1uA/49.png b/vlm/test/GEcwtMk1uA/49.png new file mode 100644 index 0000000000000000000000000000000000000000..eed4fc502f1a3331f3027207630d36b6ef9410c8 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c46f7c7b8b5a18e2b5d82fcce36851f483ab730dbad928cbb109bee4c4ec635 +size 710132 diff --git a/vlm/test/GEcwtMk1uA/50.png b/vlm/test/GEcwtMk1uA/50.png new file mode 100644 index 0000000000000000000000000000000000000000..21c57c070e40d9dd65aa8d81d871361192373c2e --- /dev/null +++ b/vlm/test/GEcwtMk1uA/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59bd88be01a4d5a0f9af8972b3e27091fa7efc93d581d71cd2862ed48e84eb8 +size 431014 diff --git a/vlm/test/GEcwtMk1uA/52.png b/vlm/test/GEcwtMk1uA/52.png new file mode 100644 index 0000000000000000000000000000000000000000..60608329460f6fdf757896eecd001a673aceedc7 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6838bbadf1f307df7f8bf1df1b9bfc88f3f93b86aaf6801e064f9b2c8db409d +size 655485 diff --git a/vlm/test/GEcwtMk1uA/54.png b/vlm/test/GEcwtMk1uA/54.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb7da7ad43888c6abd4400f29934534c362a533 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666e9916d68f1bd824f70841d41b7766fe63d1a0e09dbde9a226529f87b87400 +size 540271 diff --git a/vlm/test/GEcwtMk1uA/55.png b/vlm/test/GEcwtMk1uA/55.png new file mode 100644 index 0000000000000000000000000000000000000000..1a44ae3eb9be90afe4e9c6b00bd3c9b1aae3e94a --- /dev/null +++ b/vlm/test/GEcwtMk1uA/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39918e402a37b2ec32be46323b66f6398de6f3d6f72b436d4e898660a7e96f3 +size 474173 diff --git a/vlm/test/GEcwtMk1uA/57.png b/vlm/test/GEcwtMk1uA/57.png new file mode 100644 index 0000000000000000000000000000000000000000..4216fcada06ecc5a31ff14165ed58a43140779d1 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69e26461a9f5def39be4b4b631c5e84cb4a43b2a85a3c9be1cb8240235fbee6 +size 690351 diff --git a/vlm/test/GEcwtMk1uA/58.png b/vlm/test/GEcwtMk1uA/58.png new file mode 100644 index 0000000000000000000000000000000000000000..e9dd49a9faf5e86432dfee689b06f3ebbb68fac4 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3fd6e17a90385063b4e502167b11a8a752e2ffc937f4c65eb9b7e706472f87 +size 467815 diff --git a/vlm/test/GEcwtMk1uA/59.png b/vlm/test/GEcwtMk1uA/59.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9ae2c169d619b256c9cf71341e5c942206ff47 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd93dc2875df24c2342683ae5a4fd277fbab9d50b86f071b21ba172d7779a4a6 +size 616050 diff --git a/vlm/test/GEcwtMk1uA/6.png b/vlm/test/GEcwtMk1uA/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9b8d2695a13514f6cd3fc9e78db4bc533dcafc38 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94f19f05265ff155705a70c8ffe912b78fbaf8e56e8981bb857903a47abea1d +size 619703 diff --git a/vlm/test/GEcwtMk1uA/60.png b/vlm/test/GEcwtMk1uA/60.png new file mode 100644 index 0000000000000000000000000000000000000000..d54f1d0b3e2a5e0bf4a13e8725d0e04e30978223 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1c83f2da4b0e3f85b7281e8922668d038f86963ac78681ba33277d043f537e +size 620950 diff --git a/vlm/test/GEcwtMk1uA/65.png b/vlm/test/GEcwtMk1uA/65.png new file mode 100644 index 0000000000000000000000000000000000000000..f86cd33a163b8020a56b8c03ebfb952383007b12 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3073d9eeb18d4cadb4085c8967c5ebc7ea58ba618582b984dc5ee6b03116fc +size 641457 diff --git a/vlm/test/GEcwtMk1uA/9.png b/vlm/test/GEcwtMk1uA/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2c159d513920ebab2341cba29f6b3a2f14d092e3 --- /dev/null +++ b/vlm/test/GEcwtMk1uA/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6539a3b7a27ff566ca41f05642d23a7214185b6651eca03432aee78bcd7dfa1d +size 617780 diff --git a/vlm/test/IB1HqbA2Pn/0.png b/vlm/test/IB1HqbA2Pn/0.png new file mode 100644 index 0000000000000000000000000000000000000000..851fc032e6f3028db00ad3c2ddf85a1ae33881c2 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bf66b0db226803f525b2e58f64c6fa4492db0806d1b057fa5a76e00c588bb0 +size 537810 diff --git a/vlm/test/IB1HqbA2Pn/1.png b/vlm/test/IB1HqbA2Pn/1.png new file mode 100644 index 0000000000000000000000000000000000000000..773eadb741b00e9521c54c3009b709742482279b --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b4bdc56e8a3433a20215f83ea46cee4af8fd67d78ff832a243d7b7dd2d117c +size 852836 diff --git a/vlm/test/IB1HqbA2Pn/10.png b/vlm/test/IB1HqbA2Pn/10.png new file mode 100644 index 0000000000000000000000000000000000000000..273ac644f8869fad6c87220f787fb23e6784286f --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555fdefd506eaf934a7c9b1d2913dec82e749a92697908ddbb174f5922f16c54 +size 525102 diff --git a/vlm/test/IB1HqbA2Pn/11.png b/vlm/test/IB1HqbA2Pn/11.png new file mode 100644 index 0000000000000000000000000000000000000000..da117d934cde5faa4aa1c0bf58afb427e95501be --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119a9fd599ae3befd4eb23bc8c4ba271c886beae48e525c9ca552ff48939a4d7 +size 523449 diff --git a/vlm/test/IB1HqbA2Pn/12.png b/vlm/test/IB1HqbA2Pn/12.png new file mode 100644 index 0000000000000000000000000000000000000000..459e26fc75d977b30aafb7b4083e324a6f2ad70e --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30d7bcd231a56e81b9fec6f0f23d37f66e9d49a2e10f352717ccd1a6dc7732a +size 530733 diff --git a/vlm/test/IB1HqbA2Pn/13.png b/vlm/test/IB1HqbA2Pn/13.png new file mode 100644 index 0000000000000000000000000000000000000000..234ce03d8e18d8a46d8ac0cc543c847813816d24 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b762278635475adb657100e38e069fa34779650e2efcda4808ca19365d9f03 +size 50470 diff --git a/vlm/test/IB1HqbA2Pn/14.png b/vlm/test/IB1HqbA2Pn/14.png new file mode 100644 index 0000000000000000000000000000000000000000..69b34accddd1be5cc4b63cd458e178b098646ab3 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dd136cb0a5095e3f469c9db23d717e7110c0abeb2688455a6dc91e23fae6d6 +size 442760 diff --git a/vlm/test/IB1HqbA2Pn/15.png b/vlm/test/IB1HqbA2Pn/15.png new file mode 100644 index 0000000000000000000000000000000000000000..333b182aa27b889f65f5d4fe267d92edb28257b2 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf1fbbf53a7b57af447a11b11b17ded683bcd705c8b31c01afa779f5e94d8c4 +size 599422 diff --git a/vlm/test/IB1HqbA2Pn/16.png b/vlm/test/IB1HqbA2Pn/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2cbcdb732be7fd0b224fc721178c3156c32e3c6e --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276e40d34852056184df3414cf30991107ed647e8adb5d24cd49b500e8b94f3c +size 593033 diff --git a/vlm/test/IB1HqbA2Pn/17.png b/vlm/test/IB1HqbA2Pn/17.png new file mode 100644 index 0000000000000000000000000000000000000000..012489add8bcce7a649a96dd1fe707e035b4c850 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34c21a891bfee6ac0d0ded71ada83f8af358e998ecc4909f9c4664b8af141a8 +size 503428 diff --git a/vlm/test/IB1HqbA2Pn/18.png b/vlm/test/IB1HqbA2Pn/18.png new file mode 100644 index 0000000000000000000000000000000000000000..885f13e47be669eadf07ae4b2e233fab3c1ad79f --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4106becc1343ad7175a8aea489db8853c7691dc559f2341d965fa21709dfe90f +size 509648 diff --git a/vlm/test/IB1HqbA2Pn/19.png b/vlm/test/IB1HqbA2Pn/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8b219cdde61af05dda8e1723dfc376514ab06f05 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93403be963f2d94b0d3d0c664ce80636c9838240f23041135672054b15fb7f9 +size 543792 diff --git a/vlm/test/IB1HqbA2Pn/2.png b/vlm/test/IB1HqbA2Pn/2.png new file mode 100644 index 0000000000000000000000000000000000000000..debf96036831197c7635b7efc20a53a89b64955e --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7acf0487bb26be8879b6a4ab2e9483cf5e4814f1004efbc2758a27d05e5a3a7 +size 594306 diff --git a/vlm/test/IB1HqbA2Pn/20.png b/vlm/test/IB1HqbA2Pn/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0f63886a700dbbf556c8a0ba7f260fb7f9eb731b --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f82991d34b0479ca4d3567294d5b9f1e7fa6b79d7c703a3d3423e2dedcbac2 +size 634278 diff --git a/vlm/test/IB1HqbA2Pn/21.png b/vlm/test/IB1HqbA2Pn/21.png new file mode 100644 index 0000000000000000000000000000000000000000..270ad3b118e2519195d5ffc4b20933e7bbb89501 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bde0602100bafe43aad701d2ec1ee5d8846800d187174388178e084e2b7910 +size 894981 diff --git a/vlm/test/IB1HqbA2Pn/22.png b/vlm/test/IB1HqbA2Pn/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bef72c9c945c222fdcadb51656d325d52262ef20 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d0fa9d70d3daf858e4b102f014f5b2d0205e7d7904449beb74dd4ea36f382d +size 515303 diff --git a/vlm/test/IB1HqbA2Pn/23.png b/vlm/test/IB1HqbA2Pn/23.png new file mode 100644 index 0000000000000000000000000000000000000000..f4a6054599da642dead8c84550f4a9a5a4f93257 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905f565e67dbb1143da5f3f9ee8f2dd648155ccccc271d0974a4deed144ce020 +size 887793 diff --git a/vlm/test/IB1HqbA2Pn/24.png b/vlm/test/IB1HqbA2Pn/24.png new file mode 100644 index 0000000000000000000000000000000000000000..01daf9154c926e98ce627a6c9b4fb2bbaa84bc76 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a2e303e2cd41ce365926f7307a4276ed73aad33ca1714f20fd33e696fa3419 +size 1080179 diff --git a/vlm/test/IB1HqbA2Pn/25.png b/vlm/test/IB1HqbA2Pn/25.png new file mode 100644 index 0000000000000000000000000000000000000000..7c663ca3a127905c381add6b84ed8fb93616c28e --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d572cebea23aa0276974762125d0c92bccaad80976eb7eb4a06b395d1ec30e +size 1019508 diff --git a/vlm/test/IB1HqbA2Pn/26.png b/vlm/test/IB1HqbA2Pn/26.png new file mode 100644 index 0000000000000000000000000000000000000000..bcbb758dcc5c59dcbd651ea72b59da84c5a854cd --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f7142d5fb1c4cf8b686541eadbd2c2c5bf7d81d3178319a03da32058d95fd1 +size 842566 diff --git a/vlm/test/IB1HqbA2Pn/27.png b/vlm/test/IB1HqbA2Pn/27.png new file mode 100644 index 0000000000000000000000000000000000000000..5eab0743322cc308b1cdbc318bae0c6eb1073dd0 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698ddb907e8aafa158e672f66ae0ce2eeaa8dd576a7a96aec291f91fc841705d +size 568984 diff --git a/vlm/test/IB1HqbA2Pn/3.png b/vlm/test/IB1HqbA2Pn/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c060b9bb91703bd0c8e496ee4718cb2dcc3f923 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e26825c9ddba54c7fb5ea907f2fa5aba98756dfcdbd1fe44419fd20aec8df7 +size 750033 diff --git a/vlm/test/IB1HqbA2Pn/4.png b/vlm/test/IB1HqbA2Pn/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff00b78c9678f3b153a196f38c0272f3d4e8ebc --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48600ffaeb1c0bbe3fbc640723d1ff608174b17b0aac9b6d0a71d2a6a010976d +size 629346 diff --git a/vlm/test/IB1HqbA2Pn/5.png b/vlm/test/IB1HqbA2Pn/5.png new file mode 100644 index 0000000000000000000000000000000000000000..309f4f59b60dbf4853543786d6b7cb7933128b11 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba18bc2f85f57619c4596cbab56cae81211ba4515c5b1ef8a94fbb655b6cf9cb +size 542651 diff --git a/vlm/test/IB1HqbA2Pn/6.png b/vlm/test/IB1HqbA2Pn/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cb0bcb6dbe075efd990a8b43dcc1fb884c608d31 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce169582bdbb4a7109b654b5067e9a01d0f77894f2e172fe0e2f1cacf97e66a4 +size 648067 diff --git a/vlm/test/IB1HqbA2Pn/7.png b/vlm/test/IB1HqbA2Pn/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a73db91cc0afde38301d031eb5815e85ba5f2a07 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8136720fc6a9cd80c5cf7eb88e824c6db68cf1244559a979fcedf07ddf4f1299 +size 556974 diff --git a/vlm/test/IB1HqbA2Pn/8.png b/vlm/test/IB1HqbA2Pn/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1fcbe226497c78daeec564d83fb88f2e0d4d3406 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0fe870e826ddb165e877970401fc7f05db1ef2780173493742792b7fe216f9 +size 874592 diff --git a/vlm/test/IB1HqbA2Pn/9.png b/vlm/test/IB1HqbA2Pn/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f2ab478faa554e7838a28f8bd9534500f641fa02 --- /dev/null +++ b/vlm/test/IB1HqbA2Pn/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa993422ecf9b66b26e7f12690ce9ba7030f858b4a18256317e10b05827a0ab +size 501159 diff --git a/vlm/test/IW1PR7vEBf/0.png b/vlm/test/IW1PR7vEBf/0.png new file mode 100644 index 0000000000000000000000000000000000000000..78449206de77715ae2181b07e6ced349b720b5f1 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e69cd2bf26af59686bea56273496f5c42bfa32e9697964355e5a760bca3ca73 +size 520035 diff --git a/vlm/test/IW1PR7vEBf/1.png b/vlm/test/IW1PR7vEBf/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5960c9f65869c427fefa8605905927b241a6849d --- /dev/null +++ b/vlm/test/IW1PR7vEBf/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378bd4b8651336fc16708bf70059e191a4c98f857940ffc2d2cc2463217e2803 +size 573923 diff --git a/vlm/test/IW1PR7vEBf/10.png b/vlm/test/IW1PR7vEBf/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d746705060db8c0bb7fef41ed17660b013154282 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c64beaf289144c1acd1bfab3000faebbaf753f08b2dd67728604eb5588d257e +size 717871 diff --git a/vlm/test/IW1PR7vEBf/11.png b/vlm/test/IW1PR7vEBf/11.png new file mode 100644 index 0000000000000000000000000000000000000000..17e0ae84f9fc2887ebdcb0219b6e226109a8c583 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02edfb8a2c097ca828c84aed0e28d837553192cd2c388691d441610cf9089afd +size 650474 diff --git a/vlm/test/IW1PR7vEBf/12.png b/vlm/test/IW1PR7vEBf/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0e31d8360bd40033c762520c46391d606198bc42 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ffb5a00f69827e6390deb4f1769ad39b29bad4ef8bcb297e0a172ecebd27d0 +size 672198 diff --git a/vlm/test/IW1PR7vEBf/13.png b/vlm/test/IW1PR7vEBf/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e799fae4a5239fd4f4d407047515939196b7825a --- /dev/null +++ b/vlm/test/IW1PR7vEBf/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72a4e3ac35fcc718ef337cc5634c464e47e1087fbe89da36a03cdc09b50b44f +size 703218 diff --git a/vlm/test/IW1PR7vEBf/14.png b/vlm/test/IW1PR7vEBf/14.png new file mode 100644 index 0000000000000000000000000000000000000000..067f7c53345f48b3ee1c1975e2a21c3247c08642 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9240cd6e89af67c036d4efef9e0fbfdc1380d92f6bdefd3e1433be827b9b642b +size 705234 diff --git a/vlm/test/IW1PR7vEBf/15.png b/vlm/test/IW1PR7vEBf/15.png new file mode 100644 index 0000000000000000000000000000000000000000..71df182ee5229be73cd422e753daf0b41b67d99f --- /dev/null +++ b/vlm/test/IW1PR7vEBf/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e519786f6e1c7ef8acae759aeb645d69ac6f1fd08b67c77eafbeb905ced99c9a +size 453972 diff --git a/vlm/test/IW1PR7vEBf/16.png b/vlm/test/IW1PR7vEBf/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8e3173328147efbf674de249aec9f5ee0f1069 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8883e783c70f3a38d9a09590877e05db6f8358fe70a43085d3a09826fd52024 +size 507882 diff --git a/vlm/test/IW1PR7vEBf/17.png b/vlm/test/IW1PR7vEBf/17.png new file mode 100644 index 0000000000000000000000000000000000000000..06ce28757264940b411a70710dcb7f58ccd7108b --- /dev/null +++ b/vlm/test/IW1PR7vEBf/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0e8b7083044aa424f12356955154f63eca683b81da02738430bc929c32c631 +size 373288 diff --git a/vlm/test/IW1PR7vEBf/18.png b/vlm/test/IW1PR7vEBf/18.png new file mode 100644 index 0000000000000000000000000000000000000000..738b221ae07049dc4f3df67e1e56b1598f58882f --- /dev/null +++ b/vlm/test/IW1PR7vEBf/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72bb90a0ad54ccbef8305c69b24f2926acd2dc287a9f48134d3f1f534a4570c +size 453512 diff --git a/vlm/test/IW1PR7vEBf/19.png b/vlm/test/IW1PR7vEBf/19.png new file mode 100644 index 0000000000000000000000000000000000000000..64a78b6557b27d1401da8b3df82361f8a6ad3cea --- /dev/null +++ b/vlm/test/IW1PR7vEBf/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f938ba4a3ad298286f47bb01123c863db202cc93cb9a587c5e6e0a542bae20cf +size 478090 diff --git a/vlm/test/IW1PR7vEBf/2.png b/vlm/test/IW1PR7vEBf/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2320dfbb585b4f9c47cbcb206f333d142a5e2984 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ae7ab9549292ff9125a7602c91cf4e0559741de1e779f40fe7be0dc3e4452d +size 604874 diff --git a/vlm/test/IW1PR7vEBf/20.png b/vlm/test/IW1PR7vEBf/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4d554213475829ae729d7272b0e226e36d5f45b3 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7e30434913e72553ce0d09b125e3ef2a9f3a5e1332f77a743e8455d7055a21 +size 333880 diff --git a/vlm/test/IW1PR7vEBf/21.png b/vlm/test/IW1PR7vEBf/21.png new file mode 100644 index 0000000000000000000000000000000000000000..682fca0374cdf8524d836f7e2b66490836309312 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c33a3a84232f3c8e2e696fd467627c9f57c5ccea857da4a9fcaabb9cd1a4e9 +size 459376 diff --git a/vlm/test/IW1PR7vEBf/22.png b/vlm/test/IW1PR7vEBf/22.png new file mode 100644 index 0000000000000000000000000000000000000000..5c94f3469daea622a971cd1df2088e6bcc2d4c33 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001d795d26f5f0a0c53fc52005ee839c43c8bf7ed08fd69e4709250426229b42 +size 515227 diff --git a/vlm/test/IW1PR7vEBf/23.png b/vlm/test/IW1PR7vEBf/23.png new file mode 100644 index 0000000000000000000000000000000000000000..93908434832c9ae3ad3e5d8af7a981df631a0390 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86da875464bf820a8ad391c83cb722a1c9f97c618546940a32814d4452ef7aa +size 502968 diff --git a/vlm/test/IW1PR7vEBf/24.png b/vlm/test/IW1PR7vEBf/24.png new file mode 100644 index 0000000000000000000000000000000000000000..c1b1fac9b7fef62defd88eabc29ba2c462ff8a36 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41d4307b5fe48eb41f0098c1235c2532323e307fe72054da0bd7c5b1c275a84 +size 273923 diff --git a/vlm/test/IW1PR7vEBf/25.png b/vlm/test/IW1PR7vEBf/25.png new file mode 100644 index 0000000000000000000000000000000000000000..cf81d868a7e73b2aa8c9eaf8498a195e470f34cf --- /dev/null +++ b/vlm/test/IW1PR7vEBf/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c898e87e3e140672ba4fa799932147b613f780725d007988f88599708ca5ae46 +size 546658 diff --git a/vlm/test/IW1PR7vEBf/26.png b/vlm/test/IW1PR7vEBf/26.png new file mode 100644 index 0000000000000000000000000000000000000000..5c708dba94f60f99ec599bd3d4d1da61f87ca30f --- /dev/null +++ b/vlm/test/IW1PR7vEBf/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e74517dc6675a73721dc24cfbd1147f3de462780c6a42092d47144c1270bbcc +size 456219 diff --git a/vlm/test/IW1PR7vEBf/27.png b/vlm/test/IW1PR7vEBf/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f096cca671e32b58b26fb8a17d35fc0832a2f127 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a78251114a1f9c7b0778cd0907e6049d8a54a68921c0e5bb8932d557f4ef55f +size 445350 diff --git a/vlm/test/IW1PR7vEBf/3.png b/vlm/test/IW1PR7vEBf/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e12bb3a6ca7a2368df2e3add3a8f7ad5ab7b5bc6 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c35048362078ae27083136f8928b87d8cef81f0cc1b8790922597ac1143d02 +size 548490 diff --git a/vlm/test/IW1PR7vEBf/4.png b/vlm/test/IW1PR7vEBf/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b6cf56339b2e7a938c5d7bff1c8f59ff0e321afd --- /dev/null +++ b/vlm/test/IW1PR7vEBf/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f77c22952667a1c4256fbe0d9430e9e347ce167efd02fec6af5b11796d74c83 +size 552769 diff --git a/vlm/test/IW1PR7vEBf/5.png b/vlm/test/IW1PR7vEBf/5.png new file mode 100644 index 0000000000000000000000000000000000000000..60725cc73af5e4d9f53713e302c06ba8774a1284 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7624327f1356088f2cd29870049912fd1873300a6990a865c9e3069fa7f4d9 +size 546334 diff --git a/vlm/test/IW1PR7vEBf/6.png b/vlm/test/IW1PR7vEBf/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7e82ef205bb34609e9e2ef5b83a08586c28b5b5c --- /dev/null +++ b/vlm/test/IW1PR7vEBf/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f59c036cb9127b8af302132c1e516cb7dc364a057bbec57c30db1efb269ad11 +size 555139 diff --git a/vlm/test/IW1PR7vEBf/7.png b/vlm/test/IW1PR7vEBf/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7f3b0df3cbd303e6be70e47406d8a692b29d28c4 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac05f66bb21a4db168c163e6c42eae7e2485b10f0f7357310f8b5e6ddcbea43 +size 567988 diff --git a/vlm/test/IW1PR7vEBf/8.png b/vlm/test/IW1PR7vEBf/8.png new file mode 100644 index 0000000000000000000000000000000000000000..21b5d616caf3da78ba056c82441596e984d5a899 --- /dev/null +++ b/vlm/test/IW1PR7vEBf/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8c54c9dc1e63f65b12d37670010e45741c6c2e2073c32d0c3095ac79e5c98b +size 552545 diff --git a/vlm/test/IW1PR7vEBf/9.png b/vlm/test/IW1PR7vEBf/9.png new file mode 100644 index 0000000000000000000000000000000000000000..48019b22854953c637bfd96b12974a668358b26a --- /dev/null +++ b/vlm/test/IW1PR7vEBf/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017349a7c8771d2dd15d7b0024ad797d532d2b118946a01861f24d568152182d +size 590364 diff --git a/vlm/test/J44HfH4JCg/0.png b/vlm/test/J44HfH4JCg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9c53583c804adc3fb35d0c03d196d78c1bd68751 --- /dev/null +++ b/vlm/test/J44HfH4JCg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af17841ca37d6db081e18d856fc0141416ac837d42587997ab1a4e522a10789f +size 547620 diff --git a/vlm/test/J44HfH4JCg/1.png b/vlm/test/J44HfH4JCg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..34c97434593c4114906636aa23d3957dd2504ba3 --- /dev/null +++ b/vlm/test/J44HfH4JCg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e0ac5fd27fd4103b93d72cd025fd68f8b4f78e6a90796ccaafc9721aa9f3a1 +size 795644 diff --git a/vlm/test/J44HfH4JCg/10.png b/vlm/test/J44HfH4JCg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce296d27d1d3abadfb119080b56b37edf5d6e18 --- /dev/null +++ b/vlm/test/J44HfH4JCg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e196b03fab451b22564f8fa9c25cf6f3ea8bf640f10a0d5721f09f9f123b0283 +size 560146 diff --git a/vlm/test/J44HfH4JCg/11.png b/vlm/test/J44HfH4JCg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5e106ca633971515a7fb501aa470aa035b6186ba --- /dev/null +++ b/vlm/test/J44HfH4JCg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c44aa29f95c06c5e0b92285542773ba5bfdcbc9cc7816d689a90937ec4295f +size 573049 diff --git a/vlm/test/J44HfH4JCg/12.png b/vlm/test/J44HfH4JCg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8c044f7fa0d374046b405c9104906b24ba675642 --- /dev/null +++ b/vlm/test/J44HfH4JCg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52923378fcef99cb220044b111254faf2bc449e8a7a95b56a91be0f287a640b +size 584145 diff --git a/vlm/test/J44HfH4JCg/13.png b/vlm/test/J44HfH4JCg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c6cb1c5228fdb36a6621b3ee52d4aa50fbd9e52c --- /dev/null +++ b/vlm/test/J44HfH4JCg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2daae003a1efc9910af895f88906d14a41a6bdc956c7854d84efa80b765c1f +size 510759 diff --git a/vlm/test/J44HfH4JCg/14.png b/vlm/test/J44HfH4JCg/14.png new file mode 100644 index 0000000000000000000000000000000000000000..75db04d2ed41242e636648c87768f97e341365a1 --- /dev/null +++ b/vlm/test/J44HfH4JCg/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6db45f307243f601981faba7592457a4e9e314dda8b39ecb49ff677071878e +size 503705 diff --git a/vlm/test/J44HfH4JCg/15.png b/vlm/test/J44HfH4JCg/15.png new file mode 100644 index 0000000000000000000000000000000000000000..adcb320567cb6ccb8c237c67e5a69c06a938db30 --- /dev/null +++ b/vlm/test/J44HfH4JCg/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771611068b16b66419c4bd8bf09385d78ffaff4097aa497ea8796e63610ca0e4 +size 485907 diff --git a/vlm/test/J44HfH4JCg/16.png b/vlm/test/J44HfH4JCg/16.png new file mode 100644 index 0000000000000000000000000000000000000000..fd60ca26cc8fe5fe9cfc01d6b21c697b7771fa2a --- /dev/null +++ b/vlm/test/J44HfH4JCg/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b8f9c1c06ec0e7a0d58460fffb577139a091be684a5d977904d49f795e874b +size 378716 diff --git a/vlm/test/J44HfH4JCg/17.png b/vlm/test/J44HfH4JCg/17.png new file mode 100644 index 0000000000000000000000000000000000000000..fd50e986a3c9bb79f02c4799c83014d3bcd8543e --- /dev/null +++ b/vlm/test/J44HfH4JCg/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48650164c1b4ee24ec3abe447a65f72f79a21fa66509997a921a42dce70cc2b1 +size 350418 diff --git a/vlm/test/J44HfH4JCg/18.png b/vlm/test/J44HfH4JCg/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6f9b1476ae1b395f196e859cda6a7c91f118ceef --- /dev/null +++ b/vlm/test/J44HfH4JCg/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb41d2d33fa1788d60faccd4428beceecba9378cdc35bdc82559918a3b5ef00 +size 195562 diff --git a/vlm/test/J44HfH4JCg/19.png b/vlm/test/J44HfH4JCg/19.png new file mode 100644 index 0000000000000000000000000000000000000000..06ab1b8744c60b85a2eff0c3e861416b0355d3b4 --- /dev/null +++ b/vlm/test/J44HfH4JCg/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53290daa5cb0ccf8d25678c04a77093ba35540572ea0e205b528827eb39816b +size 583596 diff --git a/vlm/test/J44HfH4JCg/2.png b/vlm/test/J44HfH4JCg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9738ca25dc1864d3a19487c9a34dc6fc6c260278 --- /dev/null +++ b/vlm/test/J44HfH4JCg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312aac2db2f18726845ed35559c8826b7b6e7fdbbdb9bd03baeef298d7aceb26 +size 887773 diff --git a/vlm/test/J44HfH4JCg/20.png b/vlm/test/J44HfH4JCg/20.png new file mode 100644 index 0000000000000000000000000000000000000000..2bcde8eb8c2ae0536d72928fc21a1ec944a221a5 --- /dev/null +++ b/vlm/test/J44HfH4JCg/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb30eb7789f390cf85e1ac88ccaa81c38125e3b8970d8684132d30b0202a9921 +size 280884 diff --git a/vlm/test/J44HfH4JCg/21.png b/vlm/test/J44HfH4JCg/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b214ee27911ee2c66d0adca7195df6971c0b4458 --- /dev/null +++ b/vlm/test/J44HfH4JCg/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ce12a4b8d2177f188dbd793d713345c31c4347cb70537cc3e232dfa4af5e15 +size 279442 diff --git a/vlm/test/J44HfH4JCg/22.png b/vlm/test/J44HfH4JCg/22.png new file mode 100644 index 0000000000000000000000000000000000000000..e13333d3921afbf86eb534767f915198e7ca7686 --- /dev/null +++ b/vlm/test/J44HfH4JCg/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f1e4907b27e6b6c612697400ba08add347da082cacfc9867fbec11e94187a6 +size 455255 diff --git a/vlm/test/J44HfH4JCg/23.png b/vlm/test/J44HfH4JCg/23.png new file mode 100644 index 0000000000000000000000000000000000000000..a76ed11716f570bf8e23de0d54c496f62b6e7bc8 --- /dev/null +++ b/vlm/test/J44HfH4JCg/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e630fd4cd6f0750ca5fd84bffdbd23c829104920b0c5f36d60d59e8ab75550 +size 279665 diff --git a/vlm/test/J44HfH4JCg/24.png b/vlm/test/J44HfH4JCg/24.png new file mode 100644 index 0000000000000000000000000000000000000000..05a111ffe52ccde55219cb6c8b1ac7d3ac3eeee1 --- /dev/null +++ b/vlm/test/J44HfH4JCg/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45520dded1ad75dc1e244ea5e2f7434812bf9d70fddbf141cb6c87049ed7c6e1 +size 288709 diff --git a/vlm/test/J44HfH4JCg/25.png b/vlm/test/J44HfH4JCg/25.png new file mode 100644 index 0000000000000000000000000000000000000000..16d855646c3a42420fc12136e97482f551ef764e --- /dev/null +++ b/vlm/test/J44HfH4JCg/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8907b038a56b57801edb3812ade91bf014667d81337af1b6b81fad37328594b1 +size 597008 diff --git a/vlm/test/J44HfH4JCg/26.png b/vlm/test/J44HfH4JCg/26.png new file mode 100644 index 0000000000000000000000000000000000000000..dad3734b816ea702761496b1c1bb9a8a52bf8d23 --- /dev/null +++ b/vlm/test/J44HfH4JCg/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4221309d930412cbe7c2dc70d6682520ace37586eeb6efb45e1547896ed9ac +size 267267 diff --git a/vlm/test/J44HfH4JCg/27.png b/vlm/test/J44HfH4JCg/27.png new file mode 100644 index 0000000000000000000000000000000000000000..46f74e14bbb230c52aaf651bc6d2e6e3c46ccd84 --- /dev/null +++ b/vlm/test/J44HfH4JCg/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c6436ea390a370dd4817593bcb3f06574b4dc3a4b4da3d8daed8f4da8cb675 +size 591859 diff --git a/vlm/test/J44HfH4JCg/28.png b/vlm/test/J44HfH4JCg/28.png new file mode 100644 index 0000000000000000000000000000000000000000..811a10190f008f20c7a3e6245ffe1641966cfcc1 --- /dev/null +++ b/vlm/test/J44HfH4JCg/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8cdac0b8b54bb46fad394df1c03ab2311b40765676da49ad789ddf7fc219722 +size 280521 diff --git a/vlm/test/J44HfH4JCg/29.png b/vlm/test/J44HfH4JCg/29.png new file mode 100644 index 0000000000000000000000000000000000000000..b3d6a07363c612630257af12f4b515c1a71a37e7 --- /dev/null +++ b/vlm/test/J44HfH4JCg/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80590000b288539b30263cb8fcfd16e21354ddfb21169b86c461b144840aef14 +size 573407 diff --git a/vlm/test/J44HfH4JCg/3.png b/vlm/test/J44HfH4JCg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2a6d1894d8984cb70c84d3280c03e4c47d414b --- /dev/null +++ b/vlm/test/J44HfH4JCg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f622f65e58552eade65577210dd1dcd18787c2d223a077277fcf5d82dff2a85 +size 668716 diff --git a/vlm/test/J44HfH4JCg/30.png b/vlm/test/J44HfH4JCg/30.png new file mode 100644 index 0000000000000000000000000000000000000000..99a0f28eb71ce9dbb77c276c34440f1f72617969 --- /dev/null +++ b/vlm/test/J44HfH4JCg/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b91df0a5b5e4692b19ed8228c39d9dd93ef5a7b2aa56caf569a43302dc51b9 +size 305579 diff --git a/vlm/test/J44HfH4JCg/31.png b/vlm/test/J44HfH4JCg/31.png new file mode 100644 index 0000000000000000000000000000000000000000..cd8f8532d0dc96cd907c6c71760d4b9daef0094a --- /dev/null +++ b/vlm/test/J44HfH4JCg/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b606cfc6f6b0d4b6eded23e50b1df65d4ba2d0b52ff6dfb877799145a350204 +size 304738 diff --git a/vlm/test/J44HfH4JCg/32.png b/vlm/test/J44HfH4JCg/32.png new file mode 100644 index 0000000000000000000000000000000000000000..2157c0db40cff43808a31c34b40c88ce30a9fd1b --- /dev/null +++ b/vlm/test/J44HfH4JCg/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c12227969d871a5c4237b90ca05d7bf5aac47379adc4fe5143f902d35b8e21 +size 574193 diff --git a/vlm/test/J44HfH4JCg/33.png b/vlm/test/J44HfH4JCg/33.png new file mode 100644 index 0000000000000000000000000000000000000000..efca742c49fdaf6cc98edbfa8ec40535ec93c60e --- /dev/null +++ b/vlm/test/J44HfH4JCg/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ac053451d8d4c911d9126451f797a255095ef20a5770f9a8e948f71dca857d +size 300361 diff --git a/vlm/test/J44HfH4JCg/34.png b/vlm/test/J44HfH4JCg/34.png new file mode 100644 index 0000000000000000000000000000000000000000..7e52d18c18c2d24d05d2a4f579c8520595999e3e --- /dev/null +++ b/vlm/test/J44HfH4JCg/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0b925502e8fc766a5f0df8a24218bf4d8a4b45b13020811e0b90e2b8cda6ce +size 275821 diff --git a/vlm/test/J44HfH4JCg/35.png b/vlm/test/J44HfH4JCg/35.png new file mode 100644 index 0000000000000000000000000000000000000000..5a32859448cfb249a128e5f2027adfa97cd308b0 --- /dev/null +++ b/vlm/test/J44HfH4JCg/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a679cc497e2ef8cd094f14f942eeac546509f9dad5382d185aa23873bef46d23 +size 694397 diff --git a/vlm/test/J44HfH4JCg/36.png b/vlm/test/J44HfH4JCg/36.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1240510ee623d9c3d827edac5e881f8b60bdec --- /dev/null +++ b/vlm/test/J44HfH4JCg/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84693e70e93300884b19d098b1f6451b885131a908f0ac3996bf0bce7c836405 +size 736963 diff --git a/vlm/test/J44HfH4JCg/37.png b/vlm/test/J44HfH4JCg/37.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a17de2f0eeb84bb406dc1cd2c685c13a74e0ef --- /dev/null +++ b/vlm/test/J44HfH4JCg/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee78d5d7291cbcb4c3e85dfd04a737e37aef5e43670d8b3c28e35ae366283e5 +size 581695 diff --git a/vlm/test/J44HfH4JCg/38.png b/vlm/test/J44HfH4JCg/38.png new file mode 100644 index 0000000000000000000000000000000000000000..a73386f9edcf53ebc22a9af28c2090d5a0234f5f --- /dev/null +++ b/vlm/test/J44HfH4JCg/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76929dc0743552742beee2d6c6e45d13510c73dcaca053059dd22f8237df8c6 +size 708965 diff --git a/vlm/test/J44HfH4JCg/39.png b/vlm/test/J44HfH4JCg/39.png new file mode 100644 index 0000000000000000000000000000000000000000..1d66dab8fbcb370cacf3b2a9d72d472d08a669cc --- /dev/null +++ b/vlm/test/J44HfH4JCg/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9bf7e1eda18ab78eb3c7b17b4e0e04d7825d1b2dc3c827de53ef6556ac4608 +size 737439 diff --git a/vlm/test/J44HfH4JCg/4.png b/vlm/test/J44HfH4JCg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ab98175e0b1cebb0052adc5af19ad16fec2a11 --- /dev/null +++ b/vlm/test/J44HfH4JCg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748710cd36fec087f508c94e6c820cb65f9d826007d7d37c17cdf360e2cb303d +size 694181 diff --git a/vlm/test/J44HfH4JCg/40.png b/vlm/test/J44HfH4JCg/40.png new file mode 100644 index 0000000000000000000000000000000000000000..884309e13b56c40619a80e93fd4b75272b03bbe5 --- /dev/null +++ b/vlm/test/J44HfH4JCg/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a20b59e2c85ff6efa8bb7775c8dc8ec84c2fc840f79db90462b9a4e6377245 +size 285010 diff --git a/vlm/test/J44HfH4JCg/41.png b/vlm/test/J44HfH4JCg/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b7879e8406c29ca1247a9c3155c6a861632e8e8a --- /dev/null +++ b/vlm/test/J44HfH4JCg/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9380471b44a58310a3c36c919ed1b8aaaee1556483353a55cba675b00d0b3ae +size 798571 diff --git a/vlm/test/J44HfH4JCg/42.png b/vlm/test/J44HfH4JCg/42.png new file mode 100644 index 0000000000000000000000000000000000000000..bf45ffe743b7a5e53266a1745cf187246c6449ab --- /dev/null +++ b/vlm/test/J44HfH4JCg/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f076694ca2809116bccbff776f8787ac7ba5f2cc7fbdd71e16db48943132f6e5 +size 439010 diff --git a/vlm/test/J44HfH4JCg/43.png b/vlm/test/J44HfH4JCg/43.png new file mode 100644 index 0000000000000000000000000000000000000000..9990caa49f8b47c20d0806cbb7fce105ea702ca0 --- /dev/null +++ b/vlm/test/J44HfH4JCg/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19502d71f41f9455e53637aef59dfc7e3288b4293bb87cab37d8e8f3a20ccb6 +size 718462 diff --git a/vlm/test/J44HfH4JCg/44.png b/vlm/test/J44HfH4JCg/44.png new file mode 100644 index 0000000000000000000000000000000000000000..f12991f09cdad6b576adaa246cb5c1651f064f4a --- /dev/null +++ b/vlm/test/J44HfH4JCg/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb770d6028766bf1d083e8eefec5e777a31312716730a979a3c53203ce2c6d6 +size 702458 diff --git a/vlm/test/J44HfH4JCg/5.png b/vlm/test/J44HfH4JCg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..24a64f2004b856c0e0ade57487010eb7b63b45bd --- /dev/null +++ b/vlm/test/J44HfH4JCg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b9d08a3c2425b6c225da27a8978575042ae304b2644d2ef2904d8198d894f0 +size 535766 diff --git a/vlm/test/J44HfH4JCg/6.png b/vlm/test/J44HfH4JCg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..49b033196b69dfe41c79dcc71da4c64d0d294a24 --- /dev/null +++ b/vlm/test/J44HfH4JCg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194513cf6cb8f616f59e45a940ba1e6e2e70d0c0f083c663317541fa9ef7fcfa +size 589324 diff --git a/vlm/test/J44HfH4JCg/7.png b/vlm/test/J44HfH4JCg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e932126b82fbbc536b36d6f4c6986984e5d56f2a --- /dev/null +++ b/vlm/test/J44HfH4JCg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6905756cf73cc4c99bd2b612cc9b41b00e4190068d1f1322de908e451c4e0591 +size 642241 diff --git a/vlm/test/J44HfH4JCg/8.png b/vlm/test/J44HfH4JCg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9b03816423248468cbaa83d2564b964fa02ef57d --- /dev/null +++ b/vlm/test/J44HfH4JCg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fad3c53797f0c072e45837d2d657eeb9a1fb74bae8c5418e1b58664cf1a632c +size 586755 diff --git a/vlm/test/J44HfH4JCg/9.png b/vlm/test/J44HfH4JCg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..100380e39b4719dccdaffdb62733f61f0f0df0a3 --- /dev/null +++ b/vlm/test/J44HfH4JCg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b29b38c67032925e04809640387297a9c91bb1702dbe826c6dbe462b18b7b5d +size 542911 diff --git a/vlm/test/K7KQkiHanD/0.png b/vlm/test/K7KQkiHanD/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5b145f1ec5028a86c8eb7a577c2fa3d9f5d9ddc7 --- /dev/null +++ b/vlm/test/K7KQkiHanD/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291afedd11d0a2f35602e62de27126032f47f68b2518542cc8da4ea95a107277 +size 520674 diff --git a/vlm/test/K7KQkiHanD/1.png b/vlm/test/K7KQkiHanD/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f89b669134c796feeae5eecd279e37476d05224 --- /dev/null +++ b/vlm/test/K7KQkiHanD/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764c6cc63b0b730d60613ba81a985686a2c67e63f4d563955c060dcf6b3fb1d6 +size 555377 diff --git a/vlm/test/K7KQkiHanD/10.png b/vlm/test/K7KQkiHanD/10.png new file mode 100644 index 0000000000000000000000000000000000000000..04330b81d7310433e481369af6f3191abc59a1ce --- /dev/null +++ b/vlm/test/K7KQkiHanD/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2106f3e9216e3761118715dd7a2f5f1f729bfe8db4aa68bc2ab48d884296e12d +size 540419 diff --git a/vlm/test/K7KQkiHanD/11.png b/vlm/test/K7KQkiHanD/11.png new file mode 100644 index 0000000000000000000000000000000000000000..921e8d2cbfab6baa1ce1b29ce0e2d7cd47e7cda1 --- /dev/null +++ b/vlm/test/K7KQkiHanD/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75c79ba5c5ee1244a77990d9201b0e02a682b2aab03b7b0a20b046824990bbc +size 557999 diff --git a/vlm/test/K7KQkiHanD/12.png b/vlm/test/K7KQkiHanD/12.png new file mode 100644 index 0000000000000000000000000000000000000000..66c0b76b6597a702196e55cd09ca78e57e7f4e2c --- /dev/null +++ b/vlm/test/K7KQkiHanD/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b9ebd4158bc4b6be576a4a1560e751e3002e42ba5bd3a09d33550bd6e13399 +size 217860 diff --git a/vlm/test/K7KQkiHanD/13.png b/vlm/test/K7KQkiHanD/13.png new file mode 100644 index 0000000000000000000000000000000000000000..95af3d8457312f5d795713192de7771613277349 --- /dev/null +++ b/vlm/test/K7KQkiHanD/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3596cd6cdcad822f150bfa7259b02dd7c79d28ef0cfa42c6301d69a8a786a9 +size 473926 diff --git a/vlm/test/K7KQkiHanD/14.png b/vlm/test/K7KQkiHanD/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b64cecf2d7377ed313140ac785debd41b3c853cd --- /dev/null +++ b/vlm/test/K7KQkiHanD/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568c2be4a62b796fe6f3bf8de394b24ff17c16cf06c539cdf91f2d60bef3f381 +size 490950 diff --git a/vlm/test/K7KQkiHanD/15.png b/vlm/test/K7KQkiHanD/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7102be06aea71f2709f0b92d64ee07ba3f9400 --- /dev/null +++ b/vlm/test/K7KQkiHanD/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc0631d68416f861fa6de0d704174417a19cbce855778e0d690189e4f625954 +size 454838 diff --git a/vlm/test/K7KQkiHanD/16.png b/vlm/test/K7KQkiHanD/16.png new file mode 100644 index 0000000000000000000000000000000000000000..37096adfa0e301163e72f27f5c5a16140e076bc8 --- /dev/null +++ b/vlm/test/K7KQkiHanD/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fa3ced04895e0c50e0f409b04fa7917ae505fb37f6d7853b900b75d3512c2a +size 464631 diff --git a/vlm/test/K7KQkiHanD/2.png b/vlm/test/K7KQkiHanD/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e0038762d850be95ffc6ee933d93665d74c5a673 --- /dev/null +++ b/vlm/test/K7KQkiHanD/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d17ec2a092b61e55a2c5f451fa4de01002407c413e912374605552aaf29494 +size 509841 diff --git a/vlm/test/K7KQkiHanD/3.png b/vlm/test/K7KQkiHanD/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2d73eca8cc59d66f616abf7fc43db43a8d0723 --- /dev/null +++ b/vlm/test/K7KQkiHanD/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83f8fc8635d534b4745af1e390c09a600200fc38f8d261dfcedd54abee969be +size 589276 diff --git a/vlm/test/K7KQkiHanD/4.png b/vlm/test/K7KQkiHanD/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1146ff4b803acf05bdd625e82562ff8738b34b50 --- /dev/null +++ b/vlm/test/K7KQkiHanD/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd95319bb8779333f63cd1542e4ed649234be51cc5ee23ca3ec1c714684515a +size 488973 diff --git a/vlm/test/K7KQkiHanD/5.png b/vlm/test/K7KQkiHanD/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e2492b64ab6ba762ec954bf2b7b243a45c83b0 --- /dev/null +++ b/vlm/test/K7KQkiHanD/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd9e4ab178cab8d2a96ce29a5f4c5a63318b18f228061cafc146132935cd21d +size 587876 diff --git a/vlm/test/K7KQkiHanD/6.png b/vlm/test/K7KQkiHanD/6.png new file mode 100644 index 0000000000000000000000000000000000000000..db5e96c44444fe0222d24a57e9f71a6f2636308d --- /dev/null +++ b/vlm/test/K7KQkiHanD/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4598a107539c35d61d46f3b19bbbbf3b775a9a7aa1c8d24ea730d3f6f0be5d +size 588302 diff --git a/vlm/test/K7KQkiHanD/7.png b/vlm/test/K7KQkiHanD/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fddb2734b098484e6aa0c2685a27e96969c69f75 --- /dev/null +++ b/vlm/test/K7KQkiHanD/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf34b1e62b4dfd10b7376cae30a42adc8741af5fdb6c25fa1d1ae18c433b5919 +size 578133 diff --git a/vlm/test/K7KQkiHanD/8.png b/vlm/test/K7KQkiHanD/8.png new file mode 100644 index 0000000000000000000000000000000000000000..84cea3dd19df802c2bd4048af8acff911e6c2aab --- /dev/null +++ b/vlm/test/K7KQkiHanD/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d286571d88540bb4c6007d822706bd4acce514cf8d79762568d5f93ff935205 +size 437511 diff --git a/vlm/test/K7KQkiHanD/9.png b/vlm/test/K7KQkiHanD/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0c58f8f7294e82a8feeff7b25580e4a323e54e --- /dev/null +++ b/vlm/test/K7KQkiHanD/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fbe39e12622346f40843cf29486f0e6e5b6da9f99e973c60eb97e04f985b600 +size 566448 diff --git a/vlm/test/KOTsHW6mBI/0.png b/vlm/test/KOTsHW6mBI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c54cfd3f0687d7a99ae850ef7aab464dbe845962 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dbf068061568f7e96b9233289321604c8b169fe17b4de22a03a7a40fde06b06 +size 477412 diff --git a/vlm/test/KOTsHW6mBI/1.png b/vlm/test/KOTsHW6mBI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..da3fe5811f5eaece7923a3b7c2bd33cb20747d63 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cedf3a1ef7fe093ce88cd2fe9b5127d9517da979bc2cda9c2a15118024a211e1 +size 615962 diff --git a/vlm/test/KOTsHW6mBI/10.png b/vlm/test/KOTsHW6mBI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..54cb0586dee7f6b653fa7df6951fbecca092726c --- /dev/null +++ b/vlm/test/KOTsHW6mBI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84aec46de0ce7386a7795996320787620e28ed7f1733700348fe516269846d9c +size 575772 diff --git a/vlm/test/KOTsHW6mBI/11.png b/vlm/test/KOTsHW6mBI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..30292e9e8cc5a444a513a0308fefd50c8d66e05a --- /dev/null +++ b/vlm/test/KOTsHW6mBI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65faf658e0cac2d8332d9aeeb0adb3cd8c4f44c646a741f7093b308bc1364ed +size 523910 diff --git a/vlm/test/KOTsHW6mBI/12.png b/vlm/test/KOTsHW6mBI/12.png new file mode 100644 index 0000000000000000000000000000000000000000..736210255bd267a1cbfd0f5c1f1c7cfdfc2e349b --- /dev/null +++ b/vlm/test/KOTsHW6mBI/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab11257ebd08187c429bb25ab39f878b4ad769d3117e5e100d01fadd8549b9ea +size 223220 diff --git a/vlm/test/KOTsHW6mBI/13.png b/vlm/test/KOTsHW6mBI/13.png new file mode 100644 index 0000000000000000000000000000000000000000..fb2869649e547e3231cefc7419e9f375a7cd78f1 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3349ad97d71997a1484ba605f334f8235a3110c1f28a18986a2a3d1c1262c975 +size 525283 diff --git a/vlm/test/KOTsHW6mBI/14.png b/vlm/test/KOTsHW6mBI/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b47012d2403c3c748d262dfbf7c0fb22b8f57ce8 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dacecfd8eaf7a6d01bf09dc055925ceac735660692f98986261a72f1f5b20ef +size 535461 diff --git a/vlm/test/KOTsHW6mBI/15.png b/vlm/test/KOTsHW6mBI/15.png new file mode 100644 index 0000000000000000000000000000000000000000..333a288b2bc364c7de25c62ab3b442d2a0681d0b --- /dev/null +++ b/vlm/test/KOTsHW6mBI/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea24e35f1a9fd8181e2298a53b04dfb35904c170b0dab6400595a48f4c6abaa3 +size 245802 diff --git a/vlm/test/KOTsHW6mBI/16.png b/vlm/test/KOTsHW6mBI/16.png new file mode 100644 index 0000000000000000000000000000000000000000..df3fde919f25e0b64090c04973faf38d6f49feea --- /dev/null +++ b/vlm/test/KOTsHW6mBI/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96a2236ebcd3ea796c4f36fa747427739f7044d979a46ce329b7ff8d4160e8c +size 507279 diff --git a/vlm/test/KOTsHW6mBI/17.png b/vlm/test/KOTsHW6mBI/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ef968ccd25b1c322c01967b215d2d70b515e20db --- /dev/null +++ b/vlm/test/KOTsHW6mBI/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93343e3c932e88760d193a0fa80edfaee33723f4852711f43f84419746ad14f5 +size 613241 diff --git a/vlm/test/KOTsHW6mBI/18.png b/vlm/test/KOTsHW6mBI/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7e95edaf8804d971495d0964d06f6bf9a54aaf78 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407aae935ed0912dc91f77d45a0b6e3d3525b90c2d742c7a840e12c652819ae6 +size 469568 diff --git a/vlm/test/KOTsHW6mBI/19.png b/vlm/test/KOTsHW6mBI/19.png new file mode 100644 index 0000000000000000000000000000000000000000..170ab3c5f3e495306e6aeb15ab6cc8fdfcd3f9a8 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b415ef425ce30cc109bde692beac00507c7b6585f1100f2970183090349b3d +size 357463 diff --git a/vlm/test/KOTsHW6mBI/2.png b/vlm/test/KOTsHW6mBI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a621b943c66440c84ed45726aad3b7d79e59a82 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63323dab1b3a3785d1d1226e5b62e19c8dd11f4f8a6575ba4af7aaa421fb5eb2 +size 563504 diff --git a/vlm/test/KOTsHW6mBI/20.png b/vlm/test/KOTsHW6mBI/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4a19339e7d5e7b5e473b2e007e00a62bfadff1de --- /dev/null +++ b/vlm/test/KOTsHW6mBI/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beabdd3804b3228657b2715a74e59aed726da602ab5e28e09b10f2b5a6b0e110 +size 351545 diff --git a/vlm/test/KOTsHW6mBI/21.png b/vlm/test/KOTsHW6mBI/21.png new file mode 100644 index 0000000000000000000000000000000000000000..694301568ddbcf0c2cb7d81e9b9dad427dc17ae1 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636b81fdec92fddd9e67da2e00cfb6c3a043e0eac2128e016e9b9e74e2594f6d +size 364491 diff --git a/vlm/test/KOTsHW6mBI/22.png b/vlm/test/KOTsHW6mBI/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7bbbb289d63db53c48daf47d4459c6036cc92e51 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050584ce3ac5050f210906df52bdb4206bec4abb219597679b6ab23dc8e13d66 +size 442036 diff --git a/vlm/test/KOTsHW6mBI/3.png b/vlm/test/KOTsHW6mBI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b5a8993189dfa68544cb332d08e623e0e90fd2e --- /dev/null +++ b/vlm/test/KOTsHW6mBI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bc74309785d541c3d81e6f2d6379305ab7ea7ca70bb5c3af7dcb29da5246f6 +size 487414 diff --git a/vlm/test/KOTsHW6mBI/4.png b/vlm/test/KOTsHW6mBI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6a484f3aa9896f4f1d9c8240e140054a4f014248 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7a1dafb0a5348f4c9c2cd146183a415c392203b93c07c6b63ef72546d91f7e +size 512745 diff --git a/vlm/test/KOTsHW6mBI/5.png b/vlm/test/KOTsHW6mBI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1280ecdb9e48a78385198de5651f003bcf84caec --- /dev/null +++ b/vlm/test/KOTsHW6mBI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09de7cfff383712e874e2c8cc83cd237a688514d80e25e27f1497d6a3915c29 +size 547218 diff --git a/vlm/test/KOTsHW6mBI/6.png b/vlm/test/KOTsHW6mBI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b482caaa86faf645925be65a7d2c0fde5a4355e2 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d172f64a0189a2078a90df1cffe9e5b14180dbf340abfe83147a931da2975740 +size 539496 diff --git a/vlm/test/KOTsHW6mBI/7.png b/vlm/test/KOTsHW6mBI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c158708f4dec3083e4bdb6e50db57ac67263d71c --- /dev/null +++ b/vlm/test/KOTsHW6mBI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94e3263bcd0cf77ba3e7ecf01a56facc2e3c5d8de50eaa2ae947926dc3c7ea5 +size 543370 diff --git a/vlm/test/KOTsHW6mBI/8.png b/vlm/test/KOTsHW6mBI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4656da7737370566de0b7ee5a0c5d07679e4a03f --- /dev/null +++ b/vlm/test/KOTsHW6mBI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2697df0c2500d07192eea5146033367f4f6aa0101171aed0b4308b50d0b8d5 +size 511559 diff --git a/vlm/test/KOTsHW6mBI/9.png b/vlm/test/KOTsHW6mBI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..907366796b43fbf241bc017d0ae7982a24e53888 --- /dev/null +++ b/vlm/test/KOTsHW6mBI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc5488d29a3da95785932b279b54e31aeb9c9cebee0a96d42231c2461ae1f94 +size 516960 diff --git a/vlm/test/OJoMzslBIa/0.png b/vlm/test/OJoMzslBIa/0.png new file mode 100644 index 0000000000000000000000000000000000000000..60501817959996166920927eaae7dfaa40f9238a --- /dev/null +++ b/vlm/test/OJoMzslBIa/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37eeff2530a8ea762cfb2b056a9e06f78646d50761701a9ff2ecf33a7c280b1f +size 482357 diff --git a/vlm/test/OJoMzslBIa/1.png b/vlm/test/OJoMzslBIa/1.png new file mode 100644 index 0000000000000000000000000000000000000000..47e33f52dcc6defaf9dbd9bcfcb7f3ceba86ba56 --- /dev/null +++ b/vlm/test/OJoMzslBIa/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74558335a49703dcbeea9a44e0aef0f71372f57e2ab369d817709f0e550a2420 +size 554071 diff --git a/vlm/test/OJoMzslBIa/10.png b/vlm/test/OJoMzslBIa/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3217b8a395bc8100c1d8de5e4cc1508dcf18a015 --- /dev/null +++ b/vlm/test/OJoMzslBIa/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a30b9836bf6224d99d3fa98972b576fbdef26c166f7785a0a5a04694508205 +size 542703 diff --git a/vlm/test/OJoMzslBIa/11.png b/vlm/test/OJoMzslBIa/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9c9527f4455442a04919c5f2cd8b96e84a3f3700 --- /dev/null +++ b/vlm/test/OJoMzslBIa/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa73d905988540ead1a116acfeaad1f139562336c8bbc86be25fdeb87479ce1 +size 533466 diff --git a/vlm/test/OJoMzslBIa/12.png b/vlm/test/OJoMzslBIa/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1fcd0877adc829671f62ff9d944159cd51c57318 --- /dev/null +++ b/vlm/test/OJoMzslBIa/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5333d4d6a49b9ec309f1f36101aab94892f7ed74909debd17343f4102b8543 +size 155785 diff --git a/vlm/test/OJoMzslBIa/2.png b/vlm/test/OJoMzslBIa/2.png new file mode 100644 index 0000000000000000000000000000000000000000..04ba466770a85ea6f2db36ecc229aeefc8c64cb8 --- /dev/null +++ b/vlm/test/OJoMzslBIa/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13160f20376d63f98a24e52f7e6210444564e1e944fc1048f4594010db955655 +size 426136 diff --git a/vlm/test/OJoMzslBIa/3.png b/vlm/test/OJoMzslBIa/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1b27e8b54d3654a40cfc11ace630257d2885dafa --- /dev/null +++ b/vlm/test/OJoMzslBIa/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6270be20e31efe9f6cbd1019c3e469435bc00dc88acad1c58924f48a725fb048 +size 598990 diff --git a/vlm/test/OJoMzslBIa/4.png b/vlm/test/OJoMzslBIa/4.png new file mode 100644 index 0000000000000000000000000000000000000000..515ba49293059eb7bc393d5ac34f44394dce5314 --- /dev/null +++ b/vlm/test/OJoMzslBIa/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8789be296d5bd6d4345234ba572eec8b002ad9167a948f78f627b8806ccde03 +size 454262 diff --git a/vlm/test/OJoMzslBIa/5.png b/vlm/test/OJoMzslBIa/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe854a90c1abfaf5666023b9da3289716958786 --- /dev/null +++ b/vlm/test/OJoMzslBIa/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751c853b38bfd15a8fd93ca4fcf28aeded295f37affef35e105a695a0a43cec4 +size 545606 diff --git a/vlm/test/OJoMzslBIa/6.png b/vlm/test/OJoMzslBIa/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d12ced971dd2105a5b679053da99c37c8d5607a2 --- /dev/null +++ b/vlm/test/OJoMzslBIa/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e967895aed71e1b4501b91d4e0376f7bcd62620ff99ba6d2abc3bf6183d8941 +size 447479 diff --git a/vlm/test/OJoMzslBIa/7.png b/vlm/test/OJoMzslBIa/7.png new file mode 100644 index 0000000000000000000000000000000000000000..31e67373639b8b1c37dced0d6fa58b4ef5cb9854 --- /dev/null +++ b/vlm/test/OJoMzslBIa/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d04ba2b448f35f515992399ab2544120f1f0afddddd2bd1b82efd84b8a2cf0c +size 537228 diff --git a/vlm/test/OJoMzslBIa/8.png b/vlm/test/OJoMzslBIa/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f02a29d40fe786f0fb5d48fb35915806c5d9188c --- /dev/null +++ b/vlm/test/OJoMzslBIa/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4335b201678ffce6e4484f937442e49d1445b2ee3a80bcbd250888f00ad4e26c +size 527133 diff --git a/vlm/test/OJoMzslBIa/9.png b/vlm/test/OJoMzslBIa/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ac816d0334d6c24734ea0263abd2e184dd5fe8c2 --- /dev/null +++ b/vlm/test/OJoMzslBIa/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d30b8df1530e6585f97f49fce38558e9f1fce6f5bf944aa498c8c6990154c48 +size 551051 diff --git a/vlm/test/Oho3UxCkKr/0.png b/vlm/test/Oho3UxCkKr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..519b7cd2efb6b26219856631f4dab721de0d9e55 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c210bba2d1f8b326bb0135c7f5cde1586d483202c7296225511cb49a9dc7d12 +size 511932 diff --git a/vlm/test/Oho3UxCkKr/1.png b/vlm/test/Oho3UxCkKr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a461fbd181ab8054a78038f6b1f64a3c53852727 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b286843f1b2dc6ff1377ec620e17d9a0cfd81482889ff21e575a2534c6525b +size 679334 diff --git a/vlm/test/Oho3UxCkKr/10.png b/vlm/test/Oho3UxCkKr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d87f01a88d9f62d9ee153d0fc681f91f28d498ae --- /dev/null +++ b/vlm/test/Oho3UxCkKr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a637120400cbf2cadd0e258dc1199a08927ac284a7a9de99b1984c629a4de54 +size 657240 diff --git a/vlm/test/Oho3UxCkKr/11.png b/vlm/test/Oho3UxCkKr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..81ec7861b171fd8b65f20926766beae300392ae4 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca8e0df4b0a3dbc7e632cdd854cce5b8bb643bea196a63fa0db04076b82408e +size 631738 diff --git a/vlm/test/Oho3UxCkKr/12.png b/vlm/test/Oho3UxCkKr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ebd1c0e9ea753bbaffdc405c3061503a4000ea --- /dev/null +++ b/vlm/test/Oho3UxCkKr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0cab8206979bba621c5beeb97c97a3fcd309346b15507f1e53fa53a505a340 +size 364785 diff --git a/vlm/test/Oho3UxCkKr/13.png b/vlm/test/Oho3UxCkKr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2dd168854c4f238d56c8c1687da22f7722e7597e --- /dev/null +++ b/vlm/test/Oho3UxCkKr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29f25d81e48ed4b9519e9c5b7dd2f7cea397b9fcde7e66bb77646155fe7a7a2 +size 327548 diff --git a/vlm/test/Oho3UxCkKr/14.png b/vlm/test/Oho3UxCkKr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c48211b1dba8d6ce5e0207600d2e1c985a8b8 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e17f04defca42c674bc14fde2c9e2628bef19d66582adb80602203e2a1e01a8 +size 471461 diff --git a/vlm/test/Oho3UxCkKr/15.png b/vlm/test/Oho3UxCkKr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c9fba4c00a67ee48dbd3f0915245352d9b8760b9 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6667e6636b76b7cefeeefe3d636357c03461170fb1d657796b3935dd06d3d1b3 +size 359630 diff --git a/vlm/test/Oho3UxCkKr/16.png b/vlm/test/Oho3UxCkKr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..95abb5c41d51adf58958ad0fe9155f9d6f33c25b --- /dev/null +++ b/vlm/test/Oho3UxCkKr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c43943960e8dc9fbaec9e4664c2fd5426252aafadc3918596de32d422ff7a4f +size 456892 diff --git a/vlm/test/Oho3UxCkKr/17.png b/vlm/test/Oho3UxCkKr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..baf4376ac21ad24914f27123e8eea17dcb5dd9cc --- /dev/null +++ b/vlm/test/Oho3UxCkKr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d37868d382147fdc8378a2de468829bc367facc133fb8094c5f697d3779e2dd +size 350005 diff --git a/vlm/test/Oho3UxCkKr/18.png b/vlm/test/Oho3UxCkKr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..15ebaf088c3deab047b290b20c61770e6391cd56 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b84828d892eccd28d4a51ba9abd0dda8c728ec896c354d4029bfb05309fa7e +size 99599 diff --git a/vlm/test/Oho3UxCkKr/2.png b/vlm/test/Oho3UxCkKr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f3dc4e1a5964c8d80c773ebfdfef5e622e521a5 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd77b7c82d81800895a57e8540d1590e6af51074e0b2715c04928ef34ccf113b +size 488104 diff --git a/vlm/test/Oho3UxCkKr/3.png b/vlm/test/Oho3UxCkKr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6e4c44824806a9980e61a8500a95b7afbef8046c --- /dev/null +++ b/vlm/test/Oho3UxCkKr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53aed555633a2bdd96e69fed7cd17a734d1ea68cab67510b53c5ac8deeffd197 +size 621160 diff --git a/vlm/test/Oho3UxCkKr/4.png b/vlm/test/Oho3UxCkKr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1514a3f588339fc44f3f8d5259e0a2123d89c8 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f519e6b71587769c646b4dea3cf58ae1ce5ea4679d37cfdc51667f4d498c976 +size 579260 diff --git a/vlm/test/Oho3UxCkKr/5.png b/vlm/test/Oho3UxCkKr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..33f9d529e60a2586d0efb524564085406e76bc11 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4436c9790600851266f9e3f8ca4d1496136d76327664436759d0b00dbed7d5f +size 521645 diff --git a/vlm/test/Oho3UxCkKr/6.png b/vlm/test/Oho3UxCkKr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7e5ec3e9177d2f2fdc854d9047ddb0e99b5e090c --- /dev/null +++ b/vlm/test/Oho3UxCkKr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d399410d4fe0b365dd2decfddd11a25329488503dacc8b2889090b7a534154 +size 541480 diff --git a/vlm/test/Oho3UxCkKr/7.png b/vlm/test/Oho3UxCkKr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f1c45e27ea0b8bd8a23b7afbd42865bfae99006a --- /dev/null +++ b/vlm/test/Oho3UxCkKr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde0e8dc8e55aca734c85197a142c54b7e53f88abba767fcc05cd3745c9c2d03 +size 562451 diff --git a/vlm/test/Oho3UxCkKr/8.png b/vlm/test/Oho3UxCkKr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6448af2ed0ed574688ab403a1a7a31e8160d47d0 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001a75ee5b0c9ac8832c02f9a2051e39ce7190aada87514300764df0e57172db +size 627173 diff --git a/vlm/test/Oho3UxCkKr/9.png b/vlm/test/Oho3UxCkKr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4d79901bc9ea58e5e50c3b9210c24644228e2266 --- /dev/null +++ b/vlm/test/Oho3UxCkKr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1856910858006b67f7da018e969a71dea87676ad4bc554449f366b6e5d58c4c4 +size 625754 diff --git a/vlm/test/Q1u25ahSuy/0.png b/vlm/test/Q1u25ahSuy/0.png new file mode 100644 index 0000000000000000000000000000000000000000..723c75164321e5b1b9a5a3fa7c379c547910a89e --- /dev/null +++ b/vlm/test/Q1u25ahSuy/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f5c921e6bf821d63f0beef8819c24a8550141e66e64dec17eaa9400679a9f3 +size 549687 diff --git a/vlm/test/Q1u25ahSuy/1.png b/vlm/test/Q1u25ahSuy/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e3fdfdf13ea857b748407033c0c366d6c952bb9 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928bc705df4def309bce420d7a5178be49d1b4db10031fa23091e05efc153316 +size 629307 diff --git a/vlm/test/Q1u25ahSuy/10.png b/vlm/test/Q1u25ahSuy/10.png new file mode 100644 index 0000000000000000000000000000000000000000..77901af05f591d928771420616b966aafa694d35 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f50ec1e6337b0c127db3c0615cda92cbbb8655954706f2ac1bf0058812b6076 +size 544482 diff --git a/vlm/test/Q1u25ahSuy/11.png b/vlm/test/Q1u25ahSuy/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8fc5341cfa11b56e9284d159dd7a5320af5b26c0 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4247389c935084b0a481c621ab86abe669d880f441ec795a5cf96bd9ee94d5 +size 577523 diff --git a/vlm/test/Q1u25ahSuy/12.png b/vlm/test/Q1u25ahSuy/12.png new file mode 100644 index 0000000000000000000000000000000000000000..126089b45d3d259478b9493991c311bda295d46a --- /dev/null +++ b/vlm/test/Q1u25ahSuy/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc969343ca3af71c71bb407d9d35c5d72b08b21d45ea9df6f32b9944a4546a96 +size 232055 diff --git a/vlm/test/Q1u25ahSuy/13.png b/vlm/test/Q1u25ahSuy/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c0edb20923bc6b9b508333cf0bb13ad083ff3dae --- /dev/null +++ b/vlm/test/Q1u25ahSuy/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e86a265050979da5895c47454e9077643b8240fd0129153d99f9ee7e2cce6f5 +size 343393 diff --git a/vlm/test/Q1u25ahSuy/14.png b/vlm/test/Q1u25ahSuy/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9b31ed3ef5847c32cd8ad83954ae89f5e4132715 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580cbe6c8b1d4e8828dac9dd7add75fdbd45c8c461604432e692a0afb554dfcb +size 533622 diff --git a/vlm/test/Q1u25ahSuy/15.png b/vlm/test/Q1u25ahSuy/15.png new file mode 100644 index 0000000000000000000000000000000000000000..633341778b04f6272a44461e14482b4b87aefd34 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a4b9e5c5cf139cf34452f67701c90ecd4e3310db63dfab732a3bebc4890d56 +size 1604907 diff --git a/vlm/test/Q1u25ahSuy/16.png b/vlm/test/Q1u25ahSuy/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d26d47f64fe2891db0bcdb61aa1032c0dca768e6 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8ac54a52da91a436c827f09788fd7298844173bc87f63337d7b40a8316def3 +size 458495 diff --git a/vlm/test/Q1u25ahSuy/17.png b/vlm/test/Q1u25ahSuy/17.png new file mode 100644 index 0000000000000000000000000000000000000000..79a92a9bc761103271aca39c16614565f39a24a6 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ec012631db654b88ea69afdb41a38d795520500c641452243ddecfa54845f2 +size 423668 diff --git a/vlm/test/Q1u25ahSuy/18.png b/vlm/test/Q1u25ahSuy/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8a89c00472ceeca7eda503900d3ee25d87fefb42 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101ffc6fa9c955d66b58add0c958ef7c2d7945e3fcc9cd4a26ddf275c83be27c +size 462642 diff --git a/vlm/test/Q1u25ahSuy/19.png b/vlm/test/Q1u25ahSuy/19.png new file mode 100644 index 0000000000000000000000000000000000000000..e32511b51d9354f5b2e091e08aca83a709c547a5 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfefb5eaa8c5c5a307a5275630568ddbdc2db2563c482f7801fb075d732b6f09 +size 294914 diff --git a/vlm/test/Q1u25ahSuy/2.png b/vlm/test/Q1u25ahSuy/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c2a19ebd0f10c4256e4f0843299c8a0ea37254a3 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b2e3ead430337be7db039ebd7ac7d9e833b8fb708398c08f526e75573c95e3 +size 904339 diff --git a/vlm/test/Q1u25ahSuy/20.png b/vlm/test/Q1u25ahSuy/20.png new file mode 100644 index 0000000000000000000000000000000000000000..718c024aa3a9573324f2cd52b8baf8dc3c40248c --- /dev/null +++ b/vlm/test/Q1u25ahSuy/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957e75479637b2b001846d56178138082085434296a9249726d2b08acca985f5 +size 434562 diff --git a/vlm/test/Q1u25ahSuy/21.png b/vlm/test/Q1u25ahSuy/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d92ba82fcb13dfc7f8f67f311182762adbeb93 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99cb2d3a454e37f4a17ebf052816afb6f174caefb47d7b73133e841abad4573e +size 400372 diff --git a/vlm/test/Q1u25ahSuy/22.png b/vlm/test/Q1u25ahSuy/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7bd74a3f34b8bed62311f1e58a521ff7f9a12ff6 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25350e4dec945ece98da2a8ebf5a56e943eaf9ddd520effbdbd92d2bd5c3ee8a +size 358156 diff --git a/vlm/test/Q1u25ahSuy/23.png b/vlm/test/Q1u25ahSuy/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c3cea05e680d5fda328fd96a9d326702d193c8ba --- /dev/null +++ b/vlm/test/Q1u25ahSuy/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c67ee7949eec9a78024d2d0ef22ce1e12efc785b11e51ae5976aaca4b890fd +size 113785 diff --git a/vlm/test/Q1u25ahSuy/24.png b/vlm/test/Q1u25ahSuy/24.png new file mode 100644 index 0000000000000000000000000000000000000000..59965d3071b46e24c2ead1bad857bfb1f302e6ef --- /dev/null +++ b/vlm/test/Q1u25ahSuy/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324fa2f1d068995a97d9f4b1906a0581feef17b908b49d0614d811bdea9eb4c6 +size 293329 diff --git a/vlm/test/Q1u25ahSuy/25.png b/vlm/test/Q1u25ahSuy/25.png new file mode 100644 index 0000000000000000000000000000000000000000..ac767cf51b07023107b947d8fe44469707b16465 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e38fbba65236ff41bebc26b8e7ebd1a567b151422e724fd53c4a8467feb76ab +size 394732 diff --git a/vlm/test/Q1u25ahSuy/26.png b/vlm/test/Q1u25ahSuy/26.png new file mode 100644 index 0000000000000000000000000000000000000000..fb1c575e5b27f60846b724f04b698e0ca2b48f57 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeac84b6ca2a77aa2115d99fe20147c963c97ad3ea552c70d39fdf3868bb6fb4 +size 356171 diff --git a/vlm/test/Q1u25ahSuy/27.png b/vlm/test/Q1u25ahSuy/27.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9866e6be375d7a90dc529bf2d58435349700b0 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6674803d59d24d5d5d3cb5e2dec75f4d6c511859116207b06f92eaf1eb83c847 +size 1034087 diff --git a/vlm/test/Q1u25ahSuy/28.png b/vlm/test/Q1u25ahSuy/28.png new file mode 100644 index 0000000000000000000000000000000000000000..27f47cc02500bbf802f7d766a0bb0970a5e10729 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd84d294bc5fb2ac23c3b5bc1d3d9d49c30d38bca5d314ff6e12d9eacc27d035 +size 989639 diff --git a/vlm/test/Q1u25ahSuy/3.png b/vlm/test/Q1u25ahSuy/3.png new file mode 100644 index 0000000000000000000000000000000000000000..78338c788d69d3737e4ef1284f5eb6720b540efc --- /dev/null +++ b/vlm/test/Q1u25ahSuy/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd75144d14fc45b5ae4af2fd677a25f93a2c47d31168f014dadf6bca4815407 +size 610723 diff --git a/vlm/test/Q1u25ahSuy/4.png b/vlm/test/Q1u25ahSuy/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ced12472d0d8010d43750b010c4b866f1e2a4ab4 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c7495958519f52b317d69c0c490d1a1a098851553c0ee720bfa0fcb01207db +size 591069 diff --git a/vlm/test/Q1u25ahSuy/5.png b/vlm/test/Q1u25ahSuy/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f24a9232f6078e61a1e40e8defeb0ab96a7b5a --- /dev/null +++ b/vlm/test/Q1u25ahSuy/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f685f4e664fca65d9bc3decf7a9ca48c5e949d0d9743ac417529d7a66e4986a +size 612668 diff --git a/vlm/test/Q1u25ahSuy/6.png b/vlm/test/Q1u25ahSuy/6.png new file mode 100644 index 0000000000000000000000000000000000000000..27057c8cdb866d842b071c418fb491b557422d4e --- /dev/null +++ b/vlm/test/Q1u25ahSuy/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72448feb4b4f83b5966e8b23b9f80c2091a08b829194d00c8ce8131d95809d6 +size 680757 diff --git a/vlm/test/Q1u25ahSuy/7.png b/vlm/test/Q1u25ahSuy/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a39cdc66ac647bd9983789dbae8f02166a0ecee0 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50b54814c1c015fcb8e72234f3717f2beb00644e161435cab6590a6713d15a8 +size 585177 diff --git a/vlm/test/Q1u25ahSuy/8.png b/vlm/test/Q1u25ahSuy/8.png new file mode 100644 index 0000000000000000000000000000000000000000..fe05d41f640522401a152b46a4311b9f6052c08e --- /dev/null +++ b/vlm/test/Q1u25ahSuy/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b144ee431eb4e5fd132985feefd19effb4b0ec88ec52a5665751b53d6ad50844 +size 584566 diff --git a/vlm/test/Q1u25ahSuy/9.png b/vlm/test/Q1u25ahSuy/9.png new file mode 100644 index 0000000000000000000000000000000000000000..375e0e40613962d79bc616abd58e6f90848b6c41 --- /dev/null +++ b/vlm/test/Q1u25ahSuy/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a93cdc0957cd00320365825c296cc31f338394edefb3c9084feaae4a1540106 +size 570355 diff --git a/vlm/test/WZ6NY4JfFX/0.png b/vlm/test/WZ6NY4JfFX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f7db0e0078b334666c493f56f25195fc9784602a --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f33e4b1c252bebefe533a50a60d340d1fb4f41702ea5c75dd1a3b6660b483c +size 530860 diff --git a/vlm/test/WZ6NY4JfFX/1.png b/vlm/test/WZ6NY4JfFX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..efff246de9a107ba115b5f66d631fbb4a0092468 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3191c9c1629541792df1f30f99044c33067e5bc10fe1d91cdadddb2862b8d0 +size 719684 diff --git a/vlm/test/WZ6NY4JfFX/10.png b/vlm/test/WZ6NY4JfFX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8472eb9d23c28baa2ee7fa08f8ac527ee6fb00e2 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac97dbcfab54ad82ce48f71cc033f74bfad32b03ce8fc36c5017b5a2acbf2b3 +size 570429 diff --git a/vlm/test/WZ6NY4JfFX/11.png b/vlm/test/WZ6NY4JfFX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a512b3e2db686ec590feed8fa17040484fbf11e0 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e965b9db26c3b8119f7820c1dc2a162d022fa72eb2c25ed08beb7a173437b04 +size 558915 diff --git a/vlm/test/WZ6NY4JfFX/12.png b/vlm/test/WZ6NY4JfFX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0e2a7bde38e660e3290f9e2478a1c5e30e3cb43c --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2214ae9c05fe7bc50021df097e004600862c7c99379713ee8cb2cc1a642b8c +size 378680 diff --git a/vlm/test/WZ6NY4JfFX/13.png b/vlm/test/WZ6NY4JfFX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..fda22e9e8d09b30e0d2c7e9f3b4fb4781add54db --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bc906cd5a3adfbd2b9e9a6e28f174a42205b56f0227bd532aef4545a57bd66 +size 453703 diff --git a/vlm/test/WZ6NY4JfFX/14.png b/vlm/test/WZ6NY4JfFX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..528c74a950f284988f6c7da01c913a791846df1c --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1abfc225f23e8004f956d85a8ebb305a9df16548f5f8acb50ddf5a89aed0d66 +size 477785 diff --git a/vlm/test/WZ6NY4JfFX/15.png b/vlm/test/WZ6NY4JfFX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b4af4ddf7a0a21683ee99115dae89f7fcdb6cef7 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee2ec965ac5625c13bb86b96ffdc45869e480d7d7adba4a7a150e9fd63eacef +size 459871 diff --git a/vlm/test/WZ6NY4JfFX/16.png b/vlm/test/WZ6NY4JfFX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..80b127738a31e21de8d943ed67353efc795194b1 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31174612fe13f2b4cde93b786e0ce80b7994cd4cf71a985b7c293720b23e3cbe +size 433582 diff --git a/vlm/test/WZ6NY4JfFX/17.png b/vlm/test/WZ6NY4JfFX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..18c8cee70fbc35e8e5c064c6bb3cad7d8742ef90 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129c109d9e7b19f570cb13bb14a32326c4b0a7cebbd31de60132e2b4ce7788e9 +size 431402 diff --git a/vlm/test/WZ6NY4JfFX/18.png b/vlm/test/WZ6NY4JfFX/18.png new file mode 100644 index 0000000000000000000000000000000000000000..eb420d2f82182ee066b5d4a29c07d863622e3ebf --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddb9a6bdeba7bf25c7f4b08158285e09e69a2eecfc792d8c1f324d77c9fc66c +size 566585 diff --git a/vlm/test/WZ6NY4JfFX/2.png b/vlm/test/WZ6NY4JfFX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..44a97751e7e5516fbd15a27e7e9dab38dcd03ea5 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014ebbcef3eb69f7eba4b17a27c5f3e490646094024a757b47ee9c18dd6878f5 +size 596156 diff --git a/vlm/test/WZ6NY4JfFX/3.png b/vlm/test/WZ6NY4JfFX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5a8d771ffde50a77a58fbd3d3bc808c6af5ade9c --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81674e008b7b0035c571faa04f0617fe1d773540eac85c1755a024a9763317fb +size 548936 diff --git a/vlm/test/WZ6NY4JfFX/4.png b/vlm/test/WZ6NY4JfFX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..131232edce1f13995e5988184ca58d0c37b78b49 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567255044bcec79e0de24327e5d306f6c45b47ddddb7f3b743ce08d78deea352 +size 589916 diff --git a/vlm/test/WZ6NY4JfFX/5.png b/vlm/test/WZ6NY4JfFX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..be880896e6b710fe1ec83c95e6a93827ca75be33 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2f7f203db110da21896eb14f9256013f29d84ad1ba0275ad20f923abe9dcf0 +size 642116 diff --git a/vlm/test/WZ6NY4JfFX/6.png b/vlm/test/WZ6NY4JfFX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bf156ccec5cc62912f71b7eb90d0c35a7567b3bb --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b6254d59ec3dbe94a472728ee8f780833324e1ab4f82c0b9a073deb3ba0df6 +size 639987 diff --git a/vlm/test/WZ6NY4JfFX/7.png b/vlm/test/WZ6NY4JfFX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8a586c926369adfc811997181a4aea88e5c7fdbd --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e14cca33a8cb318bf19c7f6600d10b2f871fb54db9e72b566c90d2eff19b93d +size 470455 diff --git a/vlm/test/WZ6NY4JfFX/8.png b/vlm/test/WZ6NY4JfFX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3394e6858d1b99d6ed5a4b921e9d39cbcd6f8d7c --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30a983b5cf1926a0f3f79506b24b5aeffb8ebadd6b51714cb17defbe6a8c1ec +size 586339 diff --git a/vlm/test/WZ6NY4JfFX/9.png b/vlm/test/WZ6NY4JfFX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8394c3aedda371fc19841d2f605c7277f81fd769 --- /dev/null +++ b/vlm/test/WZ6NY4JfFX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe22d358afe7eb01de503db4711ca1969e157243093685ffcfe62591ffe1002 +size 597315 diff --git a/vlm/test/XUZ2S0JVJP/0.png b/vlm/test/XUZ2S0JVJP/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1712303e368ed5261f3ab8d1d28f9c5d338548c1 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09095a934d42b1ec13d1146b831f56c93114bc563852859bc7e06ba3ac8925a6 +size 520890 diff --git a/vlm/test/XUZ2S0JVJP/1.png b/vlm/test/XUZ2S0JVJP/1.png new file mode 100644 index 0000000000000000000000000000000000000000..56d9c6c30ccb93de4cdc75be05e1ef0e34b03095 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f04790616194fbc62e6f22873d24c5ad3833b445ae7377207b4d6264c1006a8 +size 566663 diff --git a/vlm/test/XUZ2S0JVJP/10.png b/vlm/test/XUZ2S0JVJP/10.png new file mode 100644 index 0000000000000000000000000000000000000000..10d19572a22e6f92b175bd4ce8ffa20242246f2c --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2663b43a95f1c083908ff0a6314dc27d223ae2bdb62408e7dae175bd03b25c34 +size 576267 diff --git a/vlm/test/XUZ2S0JVJP/2.png b/vlm/test/XUZ2S0JVJP/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f40525e555b18e017b4a8a9088218cbda71a6cc2 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70ed7ce9256d24dc88366640503135a2ea1f3ac29d02a7439ef2f817c5726ec +size 647039 diff --git a/vlm/test/XUZ2S0JVJP/3.png b/vlm/test/XUZ2S0JVJP/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6bfda2023edf06629a2bd65be9c1bcba55b157f4 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a3e702c79db9cfc11f5d77af94f17edbf351f1234b27d12bd7610e17da55ec +size 541613 diff --git a/vlm/test/XUZ2S0JVJP/4.png b/vlm/test/XUZ2S0JVJP/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1bb517ca6bf6bc71778a9e2f7a74d926b94043 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3da14ca5ad0cc28b5655242506a629daec9c321c1580ead7c5cfc0415cb64e9 +size 616366 diff --git a/vlm/test/XUZ2S0JVJP/5.png b/vlm/test/XUZ2S0JVJP/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f161292528643ed58767463b55759e8b21b54845 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f2553323c92cf03f408b883599b50f1204986567acabafd1e0f338943cac82 +size 425590 diff --git a/vlm/test/XUZ2S0JVJP/6.png b/vlm/test/XUZ2S0JVJP/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab473a5a2558b1cebdd604df27982e05a200f12 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac53f5de1c197e87f22f7dba749d6bccf287454981b18b23d3556a86ee6709dc +size 610999 diff --git a/vlm/test/XUZ2S0JVJP/7.png b/vlm/test/XUZ2S0JVJP/7.png new file mode 100644 index 0000000000000000000000000000000000000000..612371f397f8f16bbf4968c4bc77038371465bc4 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea48862df5bef59a2b4ebae6f697d73c0aa3c4c3204eb14dd11f0a357108ebc +size 670225 diff --git a/vlm/test/XUZ2S0JVJP/8.png b/vlm/test/XUZ2S0JVJP/8.png new file mode 100644 index 0000000000000000000000000000000000000000..90cc1db9546397233f86424ae47c6bbe55eb0f04 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59d090ea5878b8bf7418f2d521e98bf3a1dd2634201f1eff6859d0c9432ad48 +size 576822 diff --git a/vlm/test/XUZ2S0JVJP/9.png b/vlm/test/XUZ2S0JVJP/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4827f281dc52043fa68592f1d9d9c81c9413f7f1 --- /dev/null +++ b/vlm/test/XUZ2S0JVJP/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a8ce3c8e258c44b152c5a6532e8f1c0244b421b4cd3e5d39e70e10f658a8f9 +size 515404 diff --git a/vlm/test/cijO0f8u35/0.png b/vlm/test/cijO0f8u35/0.png new file mode 100644 index 0000000000000000000000000000000000000000..730a83fddf27b399a6b9712d4b16bb09c5556150 --- /dev/null +++ b/vlm/test/cijO0f8u35/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da69c5240d3ee0a6c78e3aae4468d76c87771681a107e5eb325099bf62eeaa6 +size 526802 diff --git a/vlm/test/cijO0f8u35/1.png b/vlm/test/cijO0f8u35/1.png new file mode 100644 index 0000000000000000000000000000000000000000..19f32f4e5c6691d79cd3c8e63de536d91ecfe526 --- /dev/null +++ b/vlm/test/cijO0f8u35/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eebb49a28fe4731ea7abfd4d9bab3f518b7ede4d9ddef4e450e62219dcbe415f +size 535549 diff --git a/vlm/test/cijO0f8u35/10.png b/vlm/test/cijO0f8u35/10.png new file mode 100644 index 0000000000000000000000000000000000000000..15dd909cfebd7adc210482cb2f6151ef0811321b --- /dev/null +++ b/vlm/test/cijO0f8u35/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9324acf753000321764a26601e7ce391f117641d5ddd136d868f7855350cf663 +size 547585 diff --git a/vlm/test/cijO0f8u35/11.png b/vlm/test/cijO0f8u35/11.png new file mode 100644 index 0000000000000000000000000000000000000000..246062960ca8482480db3eac84b8766bfebd5918 --- /dev/null +++ b/vlm/test/cijO0f8u35/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c51bad86a992ab3623110d25629f4a525eb72ab14ba9ee8fbfa2237ee9c94f +size 569997 diff --git a/vlm/test/cijO0f8u35/12.png b/vlm/test/cijO0f8u35/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9f6a54087b81d01971e2dc7e35085f303be439b2 --- /dev/null +++ b/vlm/test/cijO0f8u35/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b304cf26b8484486a58937177bdd9a6ad47fff6d5e010be5f1056ead2ae7798 +size 566276 diff --git a/vlm/test/cijO0f8u35/13.png b/vlm/test/cijO0f8u35/13.png new file mode 100644 index 0000000000000000000000000000000000000000..215cee34f9ce369b5e06b6fe901d86af96a723f5 --- /dev/null +++ b/vlm/test/cijO0f8u35/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4b1fc4b8ee53cc70f080cdc0c24413e64e7b2ac00996bda9f7c792a4f14221 +size 439400 diff --git a/vlm/test/cijO0f8u35/14.png b/vlm/test/cijO0f8u35/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d1f3c68577ff16f654ad720470e5ebc632de4bc1 --- /dev/null +++ b/vlm/test/cijO0f8u35/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c53105be6b182b665309ad77087cae2d855449c2affc600fa853896c7f184d +size 415052 diff --git a/vlm/test/cijO0f8u35/15.png b/vlm/test/cijO0f8u35/15.png new file mode 100644 index 0000000000000000000000000000000000000000..58ee13ef8dc5d74e061e2883a510b94f72fa8238 --- /dev/null +++ b/vlm/test/cijO0f8u35/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721f3e0b7c42d7f4a7396614ed8ab04984e33e4957d4104f060699fdfd7354ca +size 602282 diff --git a/vlm/test/cijO0f8u35/16.png b/vlm/test/cijO0f8u35/16.png new file mode 100644 index 0000000000000000000000000000000000000000..06fa91874c207a6f4e2bff990645eb2dbcb188bd --- /dev/null +++ b/vlm/test/cijO0f8u35/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91278b10ef0f3a0cd96b5ddc4bb0bf141ae1bd8bc652f8800f165c1f19fd41a2 +size 506256 diff --git a/vlm/test/cijO0f8u35/17.png b/vlm/test/cijO0f8u35/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6bc212a8c731483f4ae072056ffa9069a17e9919 --- /dev/null +++ b/vlm/test/cijO0f8u35/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1c30e663db1e3f98b2aff7ee79068db015953a46d6934a960c92ae0a2e6ca6 +size 485319 diff --git a/vlm/test/cijO0f8u35/18.png b/vlm/test/cijO0f8u35/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cf446653db4d3e2b1c66fec775f77bf9151f8dbd --- /dev/null +++ b/vlm/test/cijO0f8u35/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3431920f9af2ee7fcb739f17081203c44911685e788e72847e04556bc2631ce +size 341310 diff --git a/vlm/test/cijO0f8u35/19.png b/vlm/test/cijO0f8u35/19.png new file mode 100644 index 0000000000000000000000000000000000000000..88451ba47aa9c0540f3a503075a57783380950c3 --- /dev/null +++ b/vlm/test/cijO0f8u35/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1da567419f8c79bc0f227a56ccb8246adf4fe4cb57bddaa51dc46383f440854 +size 359847 diff --git a/vlm/test/cijO0f8u35/2.png b/vlm/test/cijO0f8u35/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f4eac5f76948a1d6a4022af3565c266a2f324c5b --- /dev/null +++ b/vlm/test/cijO0f8u35/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296fe487c5ee9b10c55759da5553ecd5ea9860ccce0482d70eb27d9fe6485099 +size 501357 diff --git a/vlm/test/cijO0f8u35/20.png b/vlm/test/cijO0f8u35/20.png new file mode 100644 index 0000000000000000000000000000000000000000..60c8a3a49076fdf0436c016f5583a9bb0199be34 --- /dev/null +++ b/vlm/test/cijO0f8u35/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f424273eb928cd954684fa7c7412865a63685c7f71a1dd30b94377186080321 +size 223043 diff --git a/vlm/test/cijO0f8u35/3.png b/vlm/test/cijO0f8u35/3.png new file mode 100644 index 0000000000000000000000000000000000000000..297227216318da43e401808acfe16475642e4f27 --- /dev/null +++ b/vlm/test/cijO0f8u35/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3671b8dd31ac08ae702efcd0b9a8c01725ad1684b03f72c776c602df8b1c1877 +size 492238 diff --git a/vlm/test/cijO0f8u35/4.png b/vlm/test/cijO0f8u35/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e28bd722d859cf6d956c897625b1f9bd346b2149 --- /dev/null +++ b/vlm/test/cijO0f8u35/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f2674a59403202d876819fd7229323af4bd0c51aaf758f5183216c9e5c5c82 +size 582377 diff --git a/vlm/test/cijO0f8u35/5.png b/vlm/test/cijO0f8u35/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bfe71ab42446e622e722ed239b614ce207e0b812 --- /dev/null +++ b/vlm/test/cijO0f8u35/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49eef789908b0a2658d66127ad5b6f554fd7918e83eabef08db397f5fd6fe01 +size 535534 diff --git a/vlm/test/cijO0f8u35/6.png b/vlm/test/cijO0f8u35/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5249f4b5b8e37b202cae407d45073ebe2ab34248 --- /dev/null +++ b/vlm/test/cijO0f8u35/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36fffbb1ab6834f480cd00f9a5e68a9fb581b73323200375dfae6b6cc1c8381 +size 511349 diff --git a/vlm/test/cijO0f8u35/7.png b/vlm/test/cijO0f8u35/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b435bc45aba2cd5cb2ee6a46cfcadfae6857154f --- /dev/null +++ b/vlm/test/cijO0f8u35/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af0b672d7eeac6e79ac71ef5d3507d093e00f5bddd61f533e4faebddad3fcd8 +size 581424 diff --git a/vlm/test/cijO0f8u35/8.png b/vlm/test/cijO0f8u35/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e5f3f57153894381fdebd5e1a2f7f53a4f211970 --- /dev/null +++ b/vlm/test/cijO0f8u35/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0fa3cbd6c6e18e2628cd0e187525e0664205ae1e72c358e8e92df3afbd2c77 +size 459157 diff --git a/vlm/test/cijO0f8u35/9.png b/vlm/test/cijO0f8u35/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3f0700fef45be3bd92a314bff9eb8ae9aa177e --- /dev/null +++ b/vlm/test/cijO0f8u35/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756a62977c9701ace4fc77011ac5ba71960516f1f6c411da38a3e9be1c9c506f +size 634933 diff --git a/vlm/test/dHng2O0Jjr/0.png b/vlm/test/dHng2O0Jjr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d2b0546438f44309e42bf207fe732e12947f0b8d --- /dev/null +++ b/vlm/test/dHng2O0Jjr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21e06f97668ef25e67b0163f6b1f6d1bad6b48bbdeb0d25b8db93742034dabb +size 496799 diff --git a/vlm/test/dHng2O0Jjr/1.png b/vlm/test/dHng2O0Jjr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f6256c90c7eee6c409403577fc31831daf1336fe --- /dev/null +++ b/vlm/test/dHng2O0Jjr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227300bec055bdd6749123fe356a03aa00103331f2e5b71ba76e34b5e36fd7f6 +size 648923 diff --git a/vlm/test/dHng2O0Jjr/10.png b/vlm/test/dHng2O0Jjr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ebfd5a1b6c6358c5af97f40ae7481898a16f7499 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73ff6a99479a2020a8a22cd3a9b76844722acdb2fcb141c415bc573d2c1bdc9 +size 564647 diff --git a/vlm/test/dHng2O0Jjr/11.png b/vlm/test/dHng2O0Jjr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9a68bc2d6124b3629b15088e4557254164933c --- /dev/null +++ b/vlm/test/dHng2O0Jjr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846e19c9b27917400da401fe71ce8735576e2ed4741a2d724ed1f5f4e286a9e9 +size 484706 diff --git a/vlm/test/dHng2O0Jjr/12.png b/vlm/test/dHng2O0Jjr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fd77c97831738f150d0eb4f5a25232fe009b338b --- /dev/null +++ b/vlm/test/dHng2O0Jjr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6bffc8dec9ed287a7b302971993cc85652765b4b626f29ffe3155a4eec04dc +size 498850 diff --git a/vlm/test/dHng2O0Jjr/13.png b/vlm/test/dHng2O0Jjr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..df6d350d29271c24922b78ddafffe355574ec58d --- /dev/null +++ b/vlm/test/dHng2O0Jjr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4aaffb00106f255f0724f3b638e2e2306cfbc1dfe2ce44de866df170d710dd6 +size 444457 diff --git a/vlm/test/dHng2O0Jjr/14.png b/vlm/test/dHng2O0Jjr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3f7151ce3313581b44cedbed1e93912d7c4d90 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6d520a8cc1269aeeb68051a9758bfd47b69269077d432abda1c2c306c66853 +size 506444 diff --git a/vlm/test/dHng2O0Jjr/15.png b/vlm/test/dHng2O0Jjr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7d9d704738309c5d813967a3511dca134759c9a3 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575b48acafe6a0315981d819962af44908ce6e4a0b227a28df1b436ff93a2d1d +size 563605 diff --git a/vlm/test/dHng2O0Jjr/16.png b/vlm/test/dHng2O0Jjr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..21c501365cf294827b31e8a7373721e7ae743b75 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9820961371f42db0f23b15388e882a11dc415d259f1c9b4ae585fd8f8244b948 +size 617756 diff --git a/vlm/test/dHng2O0Jjr/17.png b/vlm/test/dHng2O0Jjr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7a22bb14e0eb97f04e881f94d389d0c0aad3bb46 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a964082887f5aa417cc071f3e6147a7d1d4a54f5a8b146b49ed3e6d5ef7bda +size 372900 diff --git a/vlm/test/dHng2O0Jjr/18.png b/vlm/test/dHng2O0Jjr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2f125cc0e689e7f10fa61f764ecdc87d6e102dd7 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b02bfd9fc6f4f43c49bc6a9123e0a136a516e718cb468453eefcd6525a7d9f +size 229203 diff --git a/vlm/test/dHng2O0Jjr/19.png b/vlm/test/dHng2O0Jjr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..5ebc6f36a066cb0ef2b2e8e3fe9f7685ad653dfc --- /dev/null +++ b/vlm/test/dHng2O0Jjr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60247bf132d75309ca43fc71d2e70db7be3ae0dae62c62d6158dae2d4106493 +size 229516 diff --git a/vlm/test/dHng2O0Jjr/2.png b/vlm/test/dHng2O0Jjr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7dbbd837f288a61adc6e42f47c64c01f31b99954 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db8034a8784929408516b8c83f046206a66cea3596d31823e26651cacf15c45 +size 560375 diff --git a/vlm/test/dHng2O0Jjr/20.png b/vlm/test/dHng2O0Jjr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4b62ab8e0ee2816d02af7132a97b9572effdc1f0 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7550df644666e8d596e5f7b12297d866ac2612a04f3e059e61ed2e27ca1834 +size 224966 diff --git a/vlm/test/dHng2O0Jjr/21.png b/vlm/test/dHng2O0Jjr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e0e5c4378560b5c9b3623efa5e9033845dbe5f --- /dev/null +++ b/vlm/test/dHng2O0Jjr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae591939b86ed1215690ed31858a47be9755f49821e84bafb34fb3887a68b1f1 +size 326833 diff --git a/vlm/test/dHng2O0Jjr/22.png b/vlm/test/dHng2O0Jjr/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c078505b2c26cdd87a0a3bb4fee73b320d54214d --- /dev/null +++ b/vlm/test/dHng2O0Jjr/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3172efbe3b1ebdddaf35d012d99addf0247f2e3e6f08ef98199813ef9d120715 +size 300186 diff --git a/vlm/test/dHng2O0Jjr/3.png b/vlm/test/dHng2O0Jjr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a5432215166bdd3367f5ebfe93bf4167cfdcb195 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e19e133eaf49ae4cd02fc9ed4d415ff9467b6638ecb247259f4d2a78329c43 +size 596325 diff --git a/vlm/test/dHng2O0Jjr/4.png b/vlm/test/dHng2O0Jjr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..748a071d64d476411ac373901862f7d6cb6c55db --- /dev/null +++ b/vlm/test/dHng2O0Jjr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202c67c17841651a8331e23f882e572273122075e44c5546b4c51842974f1d8e +size 575035 diff --git a/vlm/test/dHng2O0Jjr/5.png b/vlm/test/dHng2O0Jjr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..431f0d41e09e0df1c7e4d1a7d1df1c0bad770a87 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b0d8681247251cc84c84f8223f0651b07cdfaa300021bec22633b91ac359c2 +size 608917 diff --git a/vlm/test/dHng2O0Jjr/6.png b/vlm/test/dHng2O0Jjr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e614fc6dec0405a03145bfbcb2e7233b37af4702 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f210c3f22092f043ae7716f65e6aeb3f13e526956666dff78316adf520a971 +size 616026 diff --git a/vlm/test/dHng2O0Jjr/7.png b/vlm/test/dHng2O0Jjr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a2cb3078987e84b0aa6c82e7478b3eefee9a5b57 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f9814779b26c1412b8ffaf30932b212abb6bdd1688c3483c5f3d8987886317 +size 635828 diff --git a/vlm/test/dHng2O0Jjr/8.png b/vlm/test/dHng2O0Jjr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7d61c706841c307686a7349464dba655b3434d --- /dev/null +++ b/vlm/test/dHng2O0Jjr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a13a5d883944c185a26d38f19e3320fffb22e4cd1dbe8c4cc222b6dd623fe8c +size 572962 diff --git a/vlm/test/dHng2O0Jjr/9.png b/vlm/test/dHng2O0Jjr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9f00f043616d6e608fd3da1d89b3f56a8a9d3176 --- /dev/null +++ b/vlm/test/dHng2O0Jjr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42cda22e8e2104fe6d0e3abae0069902739e7fcfa05cc9c92b7a11642d366a20 +size 563553 diff --git a/vlm/test/farT6XXntP/0.png b/vlm/test/farT6XXntP/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4570046827ca349bc0d97e81f11e4f7e094b20f0 --- /dev/null +++ b/vlm/test/farT6XXntP/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8240aa1abfd7877063a120f76ac19139f6eba28efd4c9b9a32dd5e333d491a8 +size 496272 diff --git a/vlm/test/farT6XXntP/1.png b/vlm/test/farT6XXntP/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d05863ef1179d4db2ad7568a4671b9c2dd9927c1 --- /dev/null +++ b/vlm/test/farT6XXntP/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311ee02b5ec0d706129bb2b1cece50587c254eed0901821a285d0bedb189cba8 +size 558769 diff --git a/vlm/test/farT6XXntP/10.png b/vlm/test/farT6XXntP/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fb0ed074ccbf82e22e566d9b3e650f8682f72d70 --- /dev/null +++ b/vlm/test/farT6XXntP/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc549627f8aa0392feb4beeb4f8a4067591dfdb380524f112b446e86b05b4649 +size 617272 diff --git a/vlm/test/farT6XXntP/11.png b/vlm/test/farT6XXntP/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a715c38d31b531394faa98868bea97847d66d0fb --- /dev/null +++ b/vlm/test/farT6XXntP/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30c9747dff0f1773d4dbc0bdfb4ddeeeedf1133b37f54bf1cc008ca1373400a +size 606771 diff --git a/vlm/test/farT6XXntP/12.png b/vlm/test/farT6XXntP/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d3cd7b80e6fab14b4981906d9acb20d5a0dac4af --- /dev/null +++ b/vlm/test/farT6XXntP/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c63f260dfbb7bedbe745b40f099b9c11ee3a5201da071a0d71c766669fe232e +size 619578 diff --git a/vlm/test/farT6XXntP/13.png b/vlm/test/farT6XXntP/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d7cc23be7f77bc0d14c2932a8ea882b7b9a452b5 --- /dev/null +++ b/vlm/test/farT6XXntP/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ce6a248d27d724b093b2954dc285f4d6d44963d23d486b47b12b0e84fdfa88 +size 117318 diff --git a/vlm/test/farT6XXntP/14.png b/vlm/test/farT6XXntP/14.png new file mode 100644 index 0000000000000000000000000000000000000000..428910adad69367c77f806bad7b1cb90b4bed976 --- /dev/null +++ b/vlm/test/farT6XXntP/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d6aadfa28aaae89c293c30da2e9da0b27c015bc2057059bf54e603c08d4f4d +size 485502 diff --git a/vlm/test/farT6XXntP/15.png b/vlm/test/farT6XXntP/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6cdbedd6cbe0efd0798a9afb08470dd15a9c1315 --- /dev/null +++ b/vlm/test/farT6XXntP/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77e152a41578530b6fbfdd7a5a0cd219cce61c1d34b033d52f9534c31baa102 +size 493970 diff --git a/vlm/test/farT6XXntP/16.png b/vlm/test/farT6XXntP/16.png new file mode 100644 index 0000000000000000000000000000000000000000..20c3b64a21c1218483ab23888ab267e9974f0695 --- /dev/null +++ b/vlm/test/farT6XXntP/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520484f4a778c9435bd7e8e3152bb394ec536b3a2620d78a68cead2954d12fa9 +size 512814 diff --git a/vlm/test/farT6XXntP/17.png b/vlm/test/farT6XXntP/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e16372d4893e33538b4c0d2623c2cd8029aee930 --- /dev/null +++ b/vlm/test/farT6XXntP/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939ee269a7225861535f808d5b1a1ddabcc9ebba11fd65081e5cf5511795a070 +size 596869 diff --git a/vlm/test/farT6XXntP/18.png b/vlm/test/farT6XXntP/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cd44bec994799b434784b9e1ae8eaa54ac0ac1bb --- /dev/null +++ b/vlm/test/farT6XXntP/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ff63ad0a94fcef5fd28d53c9d7f33e6e2c10c607bee0ed58fc2d9671620d78 +size 485864 diff --git a/vlm/test/farT6XXntP/19.png b/vlm/test/farT6XXntP/19.png new file mode 100644 index 0000000000000000000000000000000000000000..61e85d45f034d67d380d77d445add2be8e64f343 --- /dev/null +++ b/vlm/test/farT6XXntP/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747c391217da0be3a17d151cc558c36a34aacb652e62fb2b096f1e8a84ee7983 +size 511745 diff --git a/vlm/test/farT6XXntP/2.png b/vlm/test/farT6XXntP/2.png new file mode 100644 index 0000000000000000000000000000000000000000..403a544f3fe920ab6c23fba0a80488d3a4163449 --- /dev/null +++ b/vlm/test/farT6XXntP/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a3d775f57c2c1c5afea5e4865c96979a219d3e0520d33563ff4516f9310ee7 +size 486105 diff --git a/vlm/test/farT6XXntP/20.png b/vlm/test/farT6XXntP/20.png new file mode 100644 index 0000000000000000000000000000000000000000..1383abf29baf7ddda11daa1ecd1b4dc71621bcfd --- /dev/null +++ b/vlm/test/farT6XXntP/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c69be89e2e517a847ac4f052a99fa36fcab6785c0b08151b37a2d6c71c8a05 +size 528364 diff --git a/vlm/test/farT6XXntP/3.png b/vlm/test/farT6XXntP/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1ddda10a0111fd0d6035a34b5778c5b17c90b5 --- /dev/null +++ b/vlm/test/farT6XXntP/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094b1b8448689e0f9c95bf3a66f25e21e34c1105dbfec2f36a624f00e2aabb21 +size 495873 diff --git a/vlm/test/farT6XXntP/4.png b/vlm/test/farT6XXntP/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1d427434de010efcf09d6dad31c247539d0797d1 --- /dev/null +++ b/vlm/test/farT6XXntP/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f5add34765a5e644bb2979be15b8d8e4364f41b5c15158da7a18c834ba2d1d +size 527946 diff --git a/vlm/test/farT6XXntP/5.png b/vlm/test/farT6XXntP/5.png new file mode 100644 index 0000000000000000000000000000000000000000..04b8c07758c903896f4a435e4cb6b99c93316ce2 --- /dev/null +++ b/vlm/test/farT6XXntP/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6274c58bafed3742a837a6cce2f59a6823bba16809893901ce0e2cb8521587 +size 540335 diff --git a/vlm/test/farT6XXntP/6.png b/vlm/test/farT6XXntP/6.png new file mode 100644 index 0000000000000000000000000000000000000000..05badbfb5c73e6bb8023321d8e2de2de16a105cd --- /dev/null +++ b/vlm/test/farT6XXntP/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cdbe9beefb6619f2c4a5ac78ba3b4119e1097eba020d1a5dbe6ffc70532e81d +size 621076 diff --git a/vlm/test/farT6XXntP/7.png b/vlm/test/farT6XXntP/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7ebf66c75d2b55b2067cec290a258bd673823bff --- /dev/null +++ b/vlm/test/farT6XXntP/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e85ffd7d46904af8a8dcdc467aad970d31369bc02e70dc0fc9343db2f92eae2 +size 522601 diff --git a/vlm/test/farT6XXntP/8.png b/vlm/test/farT6XXntP/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ef654c426959447b9d15b1109eaad153b785666d --- /dev/null +++ b/vlm/test/farT6XXntP/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fceed4532a100af9ceeabcaa96114d0e88da5bf5ac95d20c88cf816d85ba23c +size 527750 diff --git a/vlm/test/farT6XXntP/9.png b/vlm/test/farT6XXntP/9.png new file mode 100644 index 0000000000000000000000000000000000000000..46b6e2af7cb6201536ce996e9b482b860e456108 --- /dev/null +++ b/vlm/test/farT6XXntP/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ab29f9bd46bed532a9e53c3bb5f9291a672c029383182daa0084a062c8c50f +size 570270 diff --git a/vlm/test/hFALpTb4fR/0.png b/vlm/test/hFALpTb4fR/0.png new file mode 100644 index 0000000000000000000000000000000000000000..809fc713e17af6a95f7baf049bac91c2a683bdb9 --- /dev/null +++ b/vlm/test/hFALpTb4fR/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b744aee9f79d0d183cd4ca22dbcb8269e8adc07340480f3d893ad3c86aa3d0f +size 395814 diff --git a/vlm/test/hFALpTb4fR/1.png b/vlm/test/hFALpTb4fR/1.png new file mode 100644 index 0000000000000000000000000000000000000000..36727aaf8938e8f2759940adeb8abc8f98d5c2ac --- /dev/null +++ b/vlm/test/hFALpTb4fR/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc66f7d7f3e7b842aec9fc460659a63bdd9e87941afb5dc4080f5e725a7a0429 +size 1071694 diff --git a/vlm/test/hFALpTb4fR/10.png b/vlm/test/hFALpTb4fR/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6222f7e03633f41f02e4d69a435442c7987480ae --- /dev/null +++ b/vlm/test/hFALpTb4fR/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a01c0a9fbb509faa2366313fd4021de4cf7fe4b2d87225e527e062b9cbf1cd +size 677727 diff --git a/vlm/test/hFALpTb4fR/11.png b/vlm/test/hFALpTb4fR/11.png new file mode 100644 index 0000000000000000000000000000000000000000..570a62f2858ebe0b829fc77ab3936a98a4a3c4d1 --- /dev/null +++ b/vlm/test/hFALpTb4fR/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58bbe9d5e68101aeaabb336da06bdc74ccf5cfff4f18371bda7414367a87be5 +size 610360 diff --git a/vlm/test/hFALpTb4fR/12.png b/vlm/test/hFALpTb4fR/12.png new file mode 100644 index 0000000000000000000000000000000000000000..46966463159e67271aa33761717a621c0c9f7e61 --- /dev/null +++ b/vlm/test/hFALpTb4fR/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9be488944fea5b8807725af5a9036e9ff193920682296cb9ccdffff614696d +size 260575 diff --git a/vlm/test/hFALpTb4fR/13.png b/vlm/test/hFALpTb4fR/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0b5f561e662250259b4681cc7e4185840213fbbd --- /dev/null +++ b/vlm/test/hFALpTb4fR/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5afbaadafe76bd962a2e7b48bff53ac6ffa89cc3baad7511718d9751f2a67e +size 572035 diff --git a/vlm/test/hFALpTb4fR/14.png b/vlm/test/hFALpTb4fR/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e05e58cb0c7a806a6554a6a81467ba4120b96197 --- /dev/null +++ b/vlm/test/hFALpTb4fR/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20087ccea492d08470a1a01b5ca7fba1a5499c9e8a161b957baa0f1c9f995f21 +size 575630 diff --git a/vlm/test/hFALpTb4fR/15.png b/vlm/test/hFALpTb4fR/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1601f102572c4a8440aa6f0279036dee1ab4a52c --- /dev/null +++ b/vlm/test/hFALpTb4fR/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131930f74745dcdf4241e435a21e82400935a92d0e0b3cbdd953b4841d8d7d05 +size 568194 diff --git a/vlm/test/hFALpTb4fR/16.png b/vlm/test/hFALpTb4fR/16.png new file mode 100644 index 0000000000000000000000000000000000000000..28ad2490829ec6418c4bb96f577ece532904f0f5 --- /dev/null +++ b/vlm/test/hFALpTb4fR/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8291145826d73af639d5e688ad2384824d572074d776daf98921b4526e3f5d8f +size 98206 diff --git a/vlm/test/hFALpTb4fR/17.png b/vlm/test/hFALpTb4fR/17.png new file mode 100644 index 0000000000000000000000000000000000000000..14909a23af849f36c804869eaa37cacf19a2e95e --- /dev/null +++ b/vlm/test/hFALpTb4fR/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3268f919dd9019a942c54522f22eb46c19cf185523907b50ccb983a878631ef +size 459922 diff --git a/vlm/test/hFALpTb4fR/18.png b/vlm/test/hFALpTb4fR/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a3db553c8ba8663627c0992f1eb8b0e736876592 --- /dev/null +++ b/vlm/test/hFALpTb4fR/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad5f27984db4b288176d7384de24582a7e0df9b2f412ebf832877a42c2591be +size 464630 diff --git a/vlm/test/hFALpTb4fR/19.png b/vlm/test/hFALpTb4fR/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed30ad0bc0047aa30e33902492641eee8695e5e --- /dev/null +++ b/vlm/test/hFALpTb4fR/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fee19453bf7b446ffb6424fe3b75523f7189cbc1a7b17e43906498db9aebb7 +size 214236 diff --git a/vlm/test/hFALpTb4fR/2.png b/vlm/test/hFALpTb4fR/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e9ed522835cf53ae2c056389997cf4816542f531 --- /dev/null +++ b/vlm/test/hFALpTb4fR/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9a561b56ea8dc9ef9dd90d7afed8a9fcd4d5279b4e37c310f7ac8759927543 +size 797322 diff --git a/vlm/test/hFALpTb4fR/20.png b/vlm/test/hFALpTb4fR/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9c7ea387080d56b19180c1776d81216a1985c490 --- /dev/null +++ b/vlm/test/hFALpTb4fR/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb5edae3468e77dc801fecbd9fec339ce25ad3ff4206dbe8f3bdb55ee77db05 +size 455416 diff --git a/vlm/test/hFALpTb4fR/21.png b/vlm/test/hFALpTb4fR/21.png new file mode 100644 index 0000000000000000000000000000000000000000..8763f8d9696b3f9fa712f72c6170f8da144ece00 --- /dev/null +++ b/vlm/test/hFALpTb4fR/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e2ffe6cee58eb1f308bb3060498e5c31940eb6588e98022c9db4080f466022 +size 985360 diff --git a/vlm/test/hFALpTb4fR/22.png b/vlm/test/hFALpTb4fR/22.png new file mode 100644 index 0000000000000000000000000000000000000000..627f8b8787a4874dc12a260f72897952921e3af6 --- /dev/null +++ b/vlm/test/hFALpTb4fR/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6239ed62575177e3987aca9c89796464e0fb8ae3069f105b71cf18d0213e8de +size 543861 diff --git a/vlm/test/hFALpTb4fR/23.png b/vlm/test/hFALpTb4fR/23.png new file mode 100644 index 0000000000000000000000000000000000000000..5f97a7b6cb9a8bc7d98e408cc906ee99b6a7df73 --- /dev/null +++ b/vlm/test/hFALpTb4fR/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283c910d3db065a70c0fefc67da0003194ab7f68bb7fade155b9b20138910d50 +size 410842 diff --git a/vlm/test/hFALpTb4fR/24.png b/vlm/test/hFALpTb4fR/24.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeac4f555e5131db1b5fee15fc4274b166535c9 --- /dev/null +++ b/vlm/test/hFALpTb4fR/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:226629a013f1e860aa8f6826bca3259a61aa87a2048c056d99a500f8fb933865 +size 986566 diff --git a/vlm/test/hFALpTb4fR/25.png b/vlm/test/hFALpTb4fR/25.png new file mode 100644 index 0000000000000000000000000000000000000000..42ab61155f219c17928fe45b2dfae3182794ecf2 --- /dev/null +++ b/vlm/test/hFALpTb4fR/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50784042103f854941b4f8b2566266106892699d48b87587ac1b3eff1db3f49d +size 730338 diff --git a/vlm/test/hFALpTb4fR/26.png b/vlm/test/hFALpTb4fR/26.png new file mode 100644 index 0000000000000000000000000000000000000000..4ccc570f39d748474a0b34e431a59dddd6ce369c --- /dev/null +++ b/vlm/test/hFALpTb4fR/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36a11475bf00ee76f158ed7fb38ea381aa0812ec756672f7d571e978ebbf6ca +size 1092992 diff --git a/vlm/test/hFALpTb4fR/27.png b/vlm/test/hFALpTb4fR/27.png new file mode 100644 index 0000000000000000000000000000000000000000..addf1a0f32525107d44ca1b1b117b69cac8cc987 --- /dev/null +++ b/vlm/test/hFALpTb4fR/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282055fb5ca5c6e98a9d8e34202a0feb3abd8648af92dd643e8f5b981ad3cc0a +size 334641 diff --git a/vlm/test/hFALpTb4fR/28.png b/vlm/test/hFALpTb4fR/28.png new file mode 100644 index 0000000000000000000000000000000000000000..61f4ed0c3c71b34c4cb67ed5ee9b5b43d0d06ecb --- /dev/null +++ b/vlm/test/hFALpTb4fR/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7554919a0088fa9bb4a6f95f575241ae9a50d81c4feb6a1416b7f34e7805b0fb +size 446568 diff --git a/vlm/test/hFALpTb4fR/3.png b/vlm/test/hFALpTb4fR/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8301f531e99e1db0c520a66b7249fb6a5b914023 --- /dev/null +++ b/vlm/test/hFALpTb4fR/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8079b76ec1610758ec0d2a3b46097e76e1add39d923727f9d7a631957ae561e3 +size 612384 diff --git a/vlm/test/hFALpTb4fR/4.png b/vlm/test/hFALpTb4fR/4.png new file mode 100644 index 0000000000000000000000000000000000000000..682fee366af50ece114ead76578d7cd919b49586 --- /dev/null +++ b/vlm/test/hFALpTb4fR/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d96fe74f7b3fa18f0621c1750e6d47dc2f1d2e60efec2f54fe090805dce2054 +size 525103 diff --git a/vlm/test/hFALpTb4fR/5.png b/vlm/test/hFALpTb4fR/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e8019c2d9c1e3844d8c860f46ac844bf939e31ed --- /dev/null +++ b/vlm/test/hFALpTb4fR/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5029ffbb8521b4059fac59fee5d02e0a1044dbc2251e1167a347a8389f046cc8 +size 771578 diff --git a/vlm/test/hFALpTb4fR/6.png b/vlm/test/hFALpTb4fR/6.png new file mode 100644 index 0000000000000000000000000000000000000000..26885c7e5598bb34244e7a90c51c8d800d6b0750 --- /dev/null +++ b/vlm/test/hFALpTb4fR/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec94d05a6b9c9f6af8be252790870f920e6d70f473aa76f92cef00e4dfac1cec +size 751300 diff --git a/vlm/test/hFALpTb4fR/7.png b/vlm/test/hFALpTb4fR/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d8782e91e9f7049cff047f83d6a4b1a991f3e1f0 --- /dev/null +++ b/vlm/test/hFALpTb4fR/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d6a0a1a11c4a2988a0889cfea158e4fc40d91982be9e125dda9863ea6b9c46 +size 822685 diff --git a/vlm/test/hFALpTb4fR/8.png b/vlm/test/hFALpTb4fR/8.png new file mode 100644 index 0000000000000000000000000000000000000000..41b31f1c355555fd42ea3955d4126210073033ff --- /dev/null +++ b/vlm/test/hFALpTb4fR/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5d25dfd0fef8d4278035676481e8b734db7615e2f8a30bd067f7c5a7cb64c7 +size 881825 diff --git a/vlm/test/hFALpTb4fR/9.png b/vlm/test/hFALpTb4fR/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b9311aa5a5b99c29091a8fdad9c6ae9dcdeb75b9 --- /dev/null +++ b/vlm/test/hFALpTb4fR/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2623291defb243fdd410cef899240f2c723c1dc840cbd2d79c0aef60ebe2b7e2 +size 526090 diff --git a/vlm/test/jKN1pXi7b0/0.png b/vlm/test/jKN1pXi7b0/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0a6359f364ebfe3b441ecee5a92da1ce0f42f028 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3cd7b891812466cdc4b5d2abd37147b1377e8f459c89a425c2d94f73b82d18 +size 485955 diff --git a/vlm/test/jKN1pXi7b0/1.png b/vlm/test/jKN1pXi7b0/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0d9ad21a3fd55f6c5812ceb2a35d02a75f90c95 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62048b77c3df993da2aa914e23bb685e0562a3de327c7ebe3375ffe768a6edb +size 610958 diff --git a/vlm/test/jKN1pXi7b0/10.png b/vlm/test/jKN1pXi7b0/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d7f9061bd5a896633c9ffe0c718a770c3caefcae --- /dev/null +++ b/vlm/test/jKN1pXi7b0/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421619a1b18863ef23f2fb0f43ee06b5c24dc4d01b2a20387554610c02e95874 +size 519649 diff --git a/vlm/test/jKN1pXi7b0/11.png b/vlm/test/jKN1pXi7b0/11.png new file mode 100644 index 0000000000000000000000000000000000000000..588d7d18317a73c4339deaa24f0105f76d1f3c69 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30aa44805ec59b0ad15eae8eeefdae072537ef9b2731ebad74a5610095a6fdc8 +size 488122 diff --git a/vlm/test/jKN1pXi7b0/12.png b/vlm/test/jKN1pXi7b0/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b826028d61ec93ef92bb70acfda8c08c013979af --- /dev/null +++ b/vlm/test/jKN1pXi7b0/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b5c2efc4e3534991f7e7e561563f75ea53c35fcaae58e3dda2f7a72525a26e +size 477966 diff --git a/vlm/test/jKN1pXi7b0/13.png b/vlm/test/jKN1pXi7b0/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f317c8f0dc4755925ac724b3d1f46ab32c93d0ff --- /dev/null +++ b/vlm/test/jKN1pXi7b0/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8e0d0f388c065f4c2f522ad77508e3b2d655cebf420d29a654073c95a15ebf +size 587572 diff --git a/vlm/test/jKN1pXi7b0/14.png b/vlm/test/jKN1pXi7b0/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c8e5d2f75b63f4597e4c369b25b91fd330c3bb46 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789bd90e73af406a19c1937a543980c44555da7176fc01db1b2725f780428406 +size 535375 diff --git a/vlm/test/jKN1pXi7b0/15.png b/vlm/test/jKN1pXi7b0/15.png new file mode 100644 index 0000000000000000000000000000000000000000..80e793522a5ddbb711017fb0ccc9147896d0f799 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340b118e9799ce68b25734ea7b1add581c24e80928ebba9f3a7318fb0c7b667d +size 550888 diff --git a/vlm/test/jKN1pXi7b0/16.png b/vlm/test/jKN1pXi7b0/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2496ccba5fcf24594c4126fc4ea7ebc4abac71fc --- /dev/null +++ b/vlm/test/jKN1pXi7b0/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8fdc3b4868fccb37265c921c9411e163d4b689f10bf2f4f91424b30967ddd10 +size 479102 diff --git a/vlm/test/jKN1pXi7b0/17.png b/vlm/test/jKN1pXi7b0/17.png new file mode 100644 index 0000000000000000000000000000000000000000..10522a31cad8b0d68e31b4a0987b06ddb2919ea2 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ab606afa5338b437d6d9e654b649ba901280c5c79f29fb2070653ff5ebffdd +size 504671 diff --git a/vlm/test/jKN1pXi7b0/18.png b/vlm/test/jKN1pXi7b0/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5302501a9332876b0df505caa5955a47b2247f9b --- /dev/null +++ b/vlm/test/jKN1pXi7b0/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c25cad9e66beeb9a265853acc4430bda9ee8038d83d69009498e17a534027e6 +size 438598 diff --git a/vlm/test/jKN1pXi7b0/19.png b/vlm/test/jKN1pXi7b0/19.png new file mode 100644 index 0000000000000000000000000000000000000000..7097b54b6d3ac28f1fb830d843e0f70ebc665607 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194d0a7ef260b2712486d249c73494a1ca62a01dd6e7bc11fb00f8072472b190 +size 434876 diff --git a/vlm/test/jKN1pXi7b0/2.png b/vlm/test/jKN1pXi7b0/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e758475d040e6a480b2ac7db48f6733d3be19aa8 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed809d21dda32c8846d0cc4ed6823b143a000aa6c5fcc6d8247b227363605b0 +size 644006 diff --git a/vlm/test/jKN1pXi7b0/20.png b/vlm/test/jKN1pXi7b0/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8f2da848979c60bae55ca488215e8202f9cd1f --- /dev/null +++ b/vlm/test/jKN1pXi7b0/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12a4f095e3fe9ae033ff65d08517531a12332bf91729b7ffa68495242e7294d +size 243355 diff --git a/vlm/test/jKN1pXi7b0/3.png b/vlm/test/jKN1pXi7b0/3.png new file mode 100644 index 0000000000000000000000000000000000000000..89fb378eb74c6226cc4177fcfa800163837bd4ce --- /dev/null +++ b/vlm/test/jKN1pXi7b0/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4810b387aec0de92d9b1d866d9f244baa66b4bdc9b07fd02af4f3c219d907d64 +size 534574 diff --git a/vlm/test/jKN1pXi7b0/4.png b/vlm/test/jKN1pXi7b0/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6ea9e3ece6feab6b2e9b978e79ce2870fa3bb463 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f739152ebd1386f2c1833d82dfbc93ea51bb579fd2cb9f175a6b340af2234b8 +size 467347 diff --git a/vlm/test/jKN1pXi7b0/5.png b/vlm/test/jKN1pXi7b0/5.png new file mode 100644 index 0000000000000000000000000000000000000000..15f9ffbec95e03263377ccacfffaada63c48b8a5 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5626350a0ade9fca6fd9a292594302def42729edb4982e5e92779d88a2bbf135 +size 554407 diff --git a/vlm/test/jKN1pXi7b0/6.png b/vlm/test/jKN1pXi7b0/6.png new file mode 100644 index 0000000000000000000000000000000000000000..35b8a2acbfed3a7d66b7b29056306b131f4fed88 --- /dev/null +++ b/vlm/test/jKN1pXi7b0/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9d2fae32feaf737ae4fdbfa3ff95e2ce74a97dc6d5879d74eaa341fbfef3eb +size 576939 diff --git a/vlm/test/jKN1pXi7b0/7.png b/vlm/test/jKN1pXi7b0/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0897f9a5d718f197dda010238747373f86ac9d6c --- /dev/null +++ b/vlm/test/jKN1pXi7b0/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3222cc348978563c52ce4da1e8fd6997ea19c65a17a247c51d271d97bd69c39b +size 545761 diff --git a/vlm/test/jKN1pXi7b0/8.png b/vlm/test/jKN1pXi7b0/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1cf75efe2779dd268e274225a9459ddab3929e --- /dev/null +++ b/vlm/test/jKN1pXi7b0/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c60a3ebc8bbd1d919b217effb7cd2518856220485c0a6835651c966003bdb3 +size 542550 diff --git a/vlm/test/jKN1pXi7b0/9.png b/vlm/test/jKN1pXi7b0/9.png new file mode 100644 index 0000000000000000000000000000000000000000..49ff277612079ec4433efe537a5607ff5c10ad0e --- /dev/null +++ b/vlm/test/jKN1pXi7b0/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab0fb89cabc0d06297ef77ffa5ff3f93c9d1d18821cfaf4e8ac5d4315e90fd4 +size 547926 diff --git a/vlm/test/jh7wH2AzKK/0.png b/vlm/test/jh7wH2AzKK/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7926b499073e5386a6f6027d1ea6bba2b46ca841 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b5ac3cf4d1084468002fe5a2d6b3921bc54f4d6450d129211fd637f0506fd6 +size 421603 diff --git a/vlm/test/jh7wH2AzKK/1.png b/vlm/test/jh7wH2AzKK/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f887fbdfe27dd4c20f604bee81ff5f8bc843ba2d --- /dev/null +++ b/vlm/test/jh7wH2AzKK/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea153dd710cc4d67c5c7e1d8ba903aa2aa4d43fa078fda95fe3e809f83f5a59e +size 607503 diff --git a/vlm/test/jh7wH2AzKK/10.png b/vlm/test/jh7wH2AzKK/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ba09d53eaf291b671ebd1f346e3c5964635e34 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5997f3a76ac34958311aa282cce9e7eb1d04aaaa106367e4b86c769346b218 +size 589638 diff --git a/vlm/test/jh7wH2AzKK/11.png b/vlm/test/jh7wH2AzKK/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fca036618a2d1cbf8e7550a26995c9b442563150 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4ca7edf78f02295a40989209561d6b265e524c8b5f6231825e89086faeb9e6 +size 596171 diff --git a/vlm/test/jh7wH2AzKK/12.png b/vlm/test/jh7wH2AzKK/12.png new file mode 100644 index 0000000000000000000000000000000000000000..db18263b0d4992f1790ff9bf98e9b32bc1acbfdb --- /dev/null +++ b/vlm/test/jh7wH2AzKK/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea707c6e84b50c85d19e13234c71381f7d28cd93e35e3c29536aa5e277def051 +size 638314 diff --git a/vlm/test/jh7wH2AzKK/13.png b/vlm/test/jh7wH2AzKK/13.png new file mode 100644 index 0000000000000000000000000000000000000000..085ca69c83c703c0ad26d21cf92b11d11a7e54d5 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bdd3c31ddde33790fc0a9fb58b4c38a246c0c57ccb727f52356ccebc746c77e +size 466572 diff --git a/vlm/test/jh7wH2AzKK/14.png b/vlm/test/jh7wH2AzKK/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1e07f22228d2f926701d9f291b33a649f737b03d --- /dev/null +++ b/vlm/test/jh7wH2AzKK/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef88e5906e5b2d38decd7ade9e6625c3bea3eddd8352983184c3effab41e99a +size 641976 diff --git a/vlm/test/jh7wH2AzKK/15.png b/vlm/test/jh7wH2AzKK/15.png new file mode 100644 index 0000000000000000000000000000000000000000..44baa0355894fb66f9520b70279ef1c5b6c68149 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0800b52205f8dc6a434be1d5de86dfdc6afa0fdb8d485eaf31bde2eff74aa844 +size 661518 diff --git a/vlm/test/jh7wH2AzKK/16.png b/vlm/test/jh7wH2AzKK/16.png new file mode 100644 index 0000000000000000000000000000000000000000..86ff4cf86a78aa5ae3eacd898921dcd50c0a6fbf --- /dev/null +++ b/vlm/test/jh7wH2AzKK/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e700c2f4117828f34ad6154dee334f06332cba27b2cee75d1300152d79b8ea3c +size 688897 diff --git a/vlm/test/jh7wH2AzKK/17.png b/vlm/test/jh7wH2AzKK/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f47e4e4941c481cdb80c875ff93eeddd528952ed --- /dev/null +++ b/vlm/test/jh7wH2AzKK/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a931f976e4d91ec22c8546fc65fe165f89e0b3a892e87c29afae1fc22ad612 +size 645973 diff --git a/vlm/test/jh7wH2AzKK/18.png b/vlm/test/jh7wH2AzKK/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5dc90f0a7e49e100611e29e980076db0b04f6d8e --- /dev/null +++ b/vlm/test/jh7wH2AzKK/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a7c05f545db6b4e74e0d12a93aca1fd129e9fab8edfd6e995386f3bb727462 +size 638520 diff --git a/vlm/test/jh7wH2AzKK/19.png b/vlm/test/jh7wH2AzKK/19.png new file mode 100644 index 0000000000000000000000000000000000000000..17e6986cb15db968bff6bba8670a19549b1728f0 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2a386a275d6fb0d32e1c19c9b88719f2f93c182391cb50d99033c1b8c6a0ab +size 615858 diff --git a/vlm/test/jh7wH2AzKK/2.png b/vlm/test/jh7wH2AzKK/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c89a80d63a5fd623bf9ac47d7b33b435f61802f8 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b25c77cdbe7ff8d172a8ef548468d464c67afb1d6d9e4e95b6fcb9b642fcedc +size 565642 diff --git a/vlm/test/jh7wH2AzKK/20.png b/vlm/test/jh7wH2AzKK/20.png new file mode 100644 index 0000000000000000000000000000000000000000..428cf98d96047031e45ae44568cc9790244b197a --- /dev/null +++ b/vlm/test/jh7wH2AzKK/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4010b75bac325c11b7322f4c8a88b1600657982ae2a3e61d94c10ba533bcf3a1 +size 565978 diff --git a/vlm/test/jh7wH2AzKK/21.png b/vlm/test/jh7wH2AzKK/21.png new file mode 100644 index 0000000000000000000000000000000000000000..781d018c83055f5f61bde5d8b81a552b6d949995 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14eff48b97d38e86b6aa2ff198f6553695c82bf74f40607f781be4e25a18004a +size 555793 diff --git a/vlm/test/jh7wH2AzKK/22.png b/vlm/test/jh7wH2AzKK/22.png new file mode 100644 index 0000000000000000000000000000000000000000..607792227713be9bed8cb045542e1af8339f0ac2 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e5c638337176a22f95e3fefb003243ba80fe2754261da9d394f8f9fa77530e +size 576756 diff --git a/vlm/test/jh7wH2AzKK/23.png b/vlm/test/jh7wH2AzKK/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b09415102cb622d694f49726ee3aee297c30e406 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1431ea71d66ac250439027e31f374c2890922224a7c7957c98dda600090ba2c1 +size 627695 diff --git a/vlm/test/jh7wH2AzKK/24.png b/vlm/test/jh7wH2AzKK/24.png new file mode 100644 index 0000000000000000000000000000000000000000..774d993fc2033ecbfef4ccd617b4696785f4ef4a --- /dev/null +++ b/vlm/test/jh7wH2AzKK/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6d37fdff45c074d96603179a86f680c6e0ef1a954fb9a694cfb5c53af0a7f4 +size 600531 diff --git a/vlm/test/jh7wH2AzKK/25.png b/vlm/test/jh7wH2AzKK/25.png new file mode 100644 index 0000000000000000000000000000000000000000..296cfa4eccaacda01dc8eefc0d67592c20bc5b8f --- /dev/null +++ b/vlm/test/jh7wH2AzKK/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724a9625f051485bc13165251b55b3aa0928a8ccb0b9dd7db70c4658c3b3f695 +size 566048 diff --git a/vlm/test/jh7wH2AzKK/26.png b/vlm/test/jh7wH2AzKK/26.png new file mode 100644 index 0000000000000000000000000000000000000000..dc810e547f9cc703761a402aa9128dd29b3d4ad9 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866db995e7744011222de8b9919254a6ab1096a79b30cf060d73998677436695 +size 566585 diff --git a/vlm/test/jh7wH2AzKK/27.png b/vlm/test/jh7wH2AzKK/27.png new file mode 100644 index 0000000000000000000000000000000000000000..ad7c18ba118f1709c9bba9128265abb815d08779 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0778def491c06653b575ffeb7a4499f2606a3ebbb635c6e6c3c5aa4526cfbff +size 591082 diff --git a/vlm/test/jh7wH2AzKK/28.png b/vlm/test/jh7wH2AzKK/28.png new file mode 100644 index 0000000000000000000000000000000000000000..fbad710557f525245d420129563f3e18cf93f537 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4e999dd0578dae51b6bb62bf9911952433ec7d62976ebd57abdef98404b874 +size 589173 diff --git a/vlm/test/jh7wH2AzKK/29.png b/vlm/test/jh7wH2AzKK/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ea2f50caa53404e2b47508e045e54b610bc25efa --- /dev/null +++ b/vlm/test/jh7wH2AzKK/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c585bd4d34bd363b6001482cda68f42ed21b03e08126623e69767d7a7c7d1724 +size 610121 diff --git a/vlm/test/jh7wH2AzKK/3.png b/vlm/test/jh7wH2AzKK/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ea0902d589061fffa901c7e5d897b7f65ebfb1bd --- /dev/null +++ b/vlm/test/jh7wH2AzKK/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3228da06d12d4bffdde60d67076110bfc8d5fc422b6b7f36dd86416fa00bbbe +size 657581 diff --git a/vlm/test/jh7wH2AzKK/30.png b/vlm/test/jh7wH2AzKK/30.png new file mode 100644 index 0000000000000000000000000000000000000000..a41ac4507ecd1c0ccff556f49fed91c6869e9bf8 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ad041418d0457b9f219242b8b7ef5ea3ab2a6fd31693be3cbf60aa7b3b83f2 +size 598084 diff --git a/vlm/test/jh7wH2AzKK/31.png b/vlm/test/jh7wH2AzKK/31.png new file mode 100644 index 0000000000000000000000000000000000000000..c546c7d3426ae3a523a3e6b019eff37c455f6b3d --- /dev/null +++ b/vlm/test/jh7wH2AzKK/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf373a793670ac1828cec5f3438638898b3aee392f19f89a7bbed2d4af686c8 +size 563218 diff --git a/vlm/test/jh7wH2AzKK/32.png b/vlm/test/jh7wH2AzKK/32.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f0c3db60193eb87fe39401cb7a55b0287ee0f9 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2296e441623ff631e74cd9e72a65ebcc7743c05e64241de80ebd5286685aa1bb +size 579437 diff --git a/vlm/test/jh7wH2AzKK/33.png b/vlm/test/jh7wH2AzKK/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d4bf56c6adaa56786d0143403c2c62ba29951d --- /dev/null +++ b/vlm/test/jh7wH2AzKK/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2ae41cb1a59adf90b224feea522165d58d60a6dcd30146091be8625e99d2d0 +size 583161 diff --git a/vlm/test/jh7wH2AzKK/34.png b/vlm/test/jh7wH2AzKK/34.png new file mode 100644 index 0000000000000000000000000000000000000000..8f9f77f0de0301b7f87a433effba26ecda91ac66 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64791ef810d8d52cb73e58fe54c13b8ec2bcd72b322b70ad5001d9aab0ee7e2 +size 500648 diff --git a/vlm/test/jh7wH2AzKK/4.png b/vlm/test/jh7wH2AzKK/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bc32cc2b1876e67a031c8da00be59ea744100407 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033c7a61b63a5c706e7b632cef92d7512a7a71181dcd00687f4042230fa3f7b7 +size 518840 diff --git a/vlm/test/jh7wH2AzKK/5.png b/vlm/test/jh7wH2AzKK/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8606cad5de6212a160039fb16abe30970e676998 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a223235bcf700dfcfa89ce97871b0cb798fd30af26e464ee00da300f2b9bf08e +size 578857 diff --git a/vlm/test/jh7wH2AzKK/6.png b/vlm/test/jh7wH2AzKK/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b6a5e7281e6bf33ba96d44683be64abadbcc23f1 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e80c62f4ec6ed93ecada90ba4409f23e437da00af53422472d64586c22c0b8 +size 415799 diff --git a/vlm/test/jh7wH2AzKK/7.png b/vlm/test/jh7wH2AzKK/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b5a08a0033c7516757edd9986b84c69e5e013dd9 --- /dev/null +++ b/vlm/test/jh7wH2AzKK/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e56b2a9dd4805c6b754202d75ce0b9e19d823aa72bd136f21fef1fc40d5b557 +size 308984 diff --git a/vlm/test/jh7wH2AzKK/8.png b/vlm/test/jh7wH2AzKK/8.png new file mode 100644 index 0000000000000000000000000000000000000000..35d555fb405c80c4c132c61b2652d965d17eef8d --- /dev/null +++ b/vlm/test/jh7wH2AzKK/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab32c264e50ff3dc2d4eecf3e4ed355d3d857b4e8d948f688c719c5a8a2c4e9a +size 467937 diff --git a/vlm/test/jh7wH2AzKK/9.png b/vlm/test/jh7wH2AzKK/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c80bf8c1969cef9577864fa892eaafc71050279b --- /dev/null +++ b/vlm/test/jh7wH2AzKK/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8f39a0cca544bda1a2b45c590fbfd7e072770b717b52167d6ab2682aabf4d4 +size 631096 diff --git a/vlm/test/k0qTnbQxzR/0.png b/vlm/test/k0qTnbQxzR/0.png new file mode 100644 index 0000000000000000000000000000000000000000..33619a3854de4bb1faa4dca10609b85a2b51ee4c --- /dev/null +++ b/vlm/test/k0qTnbQxzR/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2b7b614dddb233efe56ff821696d1a6274c41091332c0b1569cbca7d9a982a +size 690361 diff --git a/vlm/test/k0qTnbQxzR/1.png b/vlm/test/k0qTnbQxzR/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a156b55c8e991057e4f47fe16da0c374d57a2632 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40717829d3aad3b41fef8cbe4dc4b4b14b5801679df4181449b3f376537f4d1 +size 561530 diff --git a/vlm/test/k0qTnbQxzR/11.png b/vlm/test/k0qTnbQxzR/11.png new file mode 100644 index 0000000000000000000000000000000000000000..51c49bc88cf299dc1f381efb7e60374f578bbcdd --- /dev/null +++ b/vlm/test/k0qTnbQxzR/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e130a83a5021e3b0a057194c7491314edbd61d3b33b6110897d3bbd59cb6501 +size 563276 diff --git a/vlm/test/k0qTnbQxzR/12.png b/vlm/test/k0qTnbQxzR/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4b72eafbbed55dd26ece6db939b6dec7a76dac06 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:583b248eec16f294a23dcaa38bc2bcb750ef980f253553a9e5a4d0f30c3ecf74 +size 300882 diff --git a/vlm/test/k0qTnbQxzR/13.png b/vlm/test/k0qTnbQxzR/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c2917812eae613ef3e0ed2ce68ce51aebc18d255 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fc99e1d88cd43b4028e6e70cfe60aa46e91b14e29183707ff7527dc02e3109 +size 584154 diff --git a/vlm/test/k0qTnbQxzR/14.png b/vlm/test/k0qTnbQxzR/14.png new file mode 100644 index 0000000000000000000000000000000000000000..25dbff45ca0095c842743cec3b9c2d667722b7d0 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73549c4548d8a39bc0af27685dbace37ee0688d50a6db1b9f4ff940a587709b7 +size 424908 diff --git a/vlm/test/k0qTnbQxzR/15.png b/vlm/test/k0qTnbQxzR/15.png new file mode 100644 index 0000000000000000000000000000000000000000..451c169720b3e43d54a4ce23dfa7b845bd517eb6 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf3309336805c7e9bb9d9912c7568e8aedc71cb5b3432045ac1607a873326c7 +size 257378 diff --git a/vlm/test/k0qTnbQxzR/16.png b/vlm/test/k0qTnbQxzR/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f432d2fabafefdb542fe65d24e7953822bd9054b --- /dev/null +++ b/vlm/test/k0qTnbQxzR/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3c53fdf071c86f312d9d9ca76a524a6b21cb96ce85f677fffcc7d8aa22ee3a +size 587977 diff --git a/vlm/test/k0qTnbQxzR/18.png b/vlm/test/k0qTnbQxzR/18.png new file mode 100644 index 0000000000000000000000000000000000000000..669a8afa22a5cc3eaa4504e0a216cad9bdbef7b4 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad2777b8219f68a2a6fa38ad65255551a378ec2b26da45c711271045044ab45 +size 663264 diff --git a/vlm/test/k0qTnbQxzR/19.png b/vlm/test/k0qTnbQxzR/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8e9cd97f252ef94a35f4d7631d06fbc1e439e616 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754bab4baa64a6d21d4cff70f909e65a29b1e0f702f7e0a591d96cb96054dac2 +size 446472 diff --git a/vlm/test/k0qTnbQxzR/2.png b/vlm/test/k0qTnbQxzR/2.png new file mode 100644 index 0000000000000000000000000000000000000000..031a692d7c31c04959e21e915a4c258475b6736c --- /dev/null +++ b/vlm/test/k0qTnbQxzR/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d863fafeae20a77b518c17c18be7f978d8c217f088f8e5dbf9c551c0a1c4bc9 +size 625224 diff --git a/vlm/test/k0qTnbQxzR/20.png b/vlm/test/k0qTnbQxzR/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5225697a850cc809349c3a720b88e39874ca8c --- /dev/null +++ b/vlm/test/k0qTnbQxzR/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe3e9d75fcec94a7fcf6b3e4ed878d3f96d391d8d5ed885d95ac06626d3bb55 +size 502579 diff --git a/vlm/test/k0qTnbQxzR/22.png b/vlm/test/k0qTnbQxzR/22.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd0785bd50b0878a127360cd89f6032d7a4765e --- /dev/null +++ b/vlm/test/k0qTnbQxzR/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e2791bd5f762f8305840ed1b12a5ac48f1dd1b678f936d804af5a1d0448fcf +size 453659 diff --git a/vlm/test/k0qTnbQxzR/4.png b/vlm/test/k0qTnbQxzR/4.png new file mode 100644 index 0000000000000000000000000000000000000000..37096964b751cddbc085b243014e1c04bfe91db1 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6541530caceb8de68969d531b7b01b87c3a23489d1635ce6e483f1505f89c340 +size 614380 diff --git a/vlm/test/k0qTnbQxzR/5.png b/vlm/test/k0qTnbQxzR/5.png new file mode 100644 index 0000000000000000000000000000000000000000..66315d98c459ddd6fa661e4aa5a51ceabace75e9 --- /dev/null +++ b/vlm/test/k0qTnbQxzR/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bca7055b082398d7fcafc43a29b9edfd4460f04f05a1688f739405cc2711dd +size 523919 diff --git a/vlm/test/k0qTnbQxzR/7.png b/vlm/test/k0qTnbQxzR/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4cfd3cf72ac6854ff077ea0c2656c779220cddba --- /dev/null +++ b/vlm/test/k0qTnbQxzR/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f992cd4df4fdf4f80777149fe8e92247d926570ab88eef3fee9fb5ea716c966 +size 593360 diff --git a/vlm/test/k0qTnbQxzR/8.png b/vlm/test/k0qTnbQxzR/8.png new file mode 100644 index 0000000000000000000000000000000000000000..883d23fd80cb30757566ebf804f711dd0052d4dc --- /dev/null +++ b/vlm/test/k0qTnbQxzR/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30eb9252bdb2bd0dabb62a25498b9f3cc5c3eaf74290d1ec6e69ab7a12fb3ce +size 557287 diff --git a/vlm/test/lPw8Xdzw5f/0.png b/vlm/test/lPw8Xdzw5f/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c5eb234671be7a070b002ecca2c71806359bbf23 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aaf8b1a3ccd5d0ce77170c76c1151cb2687289505b79af1c3fd30bec10addb2 +size 485860 diff --git a/vlm/test/lPw8Xdzw5f/1.png b/vlm/test/lPw8Xdzw5f/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0d4d5e6b79d8a4c479e46823efa0c2cd5af4175 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b2db2aa584cf7919cd68f6934f68231dc3ae1a26d1de8acfe899a09396fb09 +size 428079 diff --git a/vlm/test/lPw8Xdzw5f/10.png b/vlm/test/lPw8Xdzw5f/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9f48894ff3da11598e4f72f266bd08b47e01eb39 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f40ef769f50c51209416666d9dba26b90b2fbf78125a941a02da180368300e +size 457915 diff --git a/vlm/test/lPw8Xdzw5f/11.png b/vlm/test/lPw8Xdzw5f/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c99a320233875e7ff9ea484a7f6708610721ccca --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b5849ffe9cae770b8c8d132c7cb3c8718266619e51e2e9acf47da86e1612a8 +size 554587 diff --git a/vlm/test/lPw8Xdzw5f/12.png b/vlm/test/lPw8Xdzw5f/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d4ea4d7972d8634595be7b2228a27669b5e356f7 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4750203a1ebfbb7cfea69b44f4fac613d928fe0bc8ddc557e6f3f8d7554dc3 +size 451667 diff --git a/vlm/test/lPw8Xdzw5f/13.png b/vlm/test/lPw8Xdzw5f/13.png new file mode 100644 index 0000000000000000000000000000000000000000..818f82aef6a3ad132c155310819cbedd0b57bd68 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39bad6a83f6811af70cde2ccf85a084f15f7cab7ca8fe3d05abb58ce8519441 +size 325000 diff --git a/vlm/test/lPw8Xdzw5f/2.png b/vlm/test/lPw8Xdzw5f/2.png new file mode 100644 index 0000000000000000000000000000000000000000..859a708197eb1ac8f6972b6c0fde4ddbf1426857 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b158932f4fca7e744146d15f36bda1e1112c423a10f77ddf199c5df0d98c9931 +size 489353 diff --git a/vlm/test/lPw8Xdzw5f/3.png b/vlm/test/lPw8Xdzw5f/3.png new file mode 100644 index 0000000000000000000000000000000000000000..76c06d33255149b6116d3e5eb5796665d2bf5316 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5680bef3e08e05cfc54d8c763af1d20a76005f85f21731078aa6862c5c005861 +size 483517 diff --git a/vlm/test/lPw8Xdzw5f/4.png b/vlm/test/lPw8Xdzw5f/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb4524a78547bc8230960121d8fefffefa07a1a --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883ebcfb5da8b0c79dd8d2551ee59d5b58afadf6a0ab9334bd88076f36cbb1e9 +size 516433 diff --git a/vlm/test/lPw8Xdzw5f/5.png b/vlm/test/lPw8Xdzw5f/5.png new file mode 100644 index 0000000000000000000000000000000000000000..18967e794fcae6f013e7ab60626a7ffba2d70cf0 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88e80977b23951ea2ff52d35c4dac27d66ee74fc7f30432a96f504f27b41cfa +size 393464 diff --git a/vlm/test/lPw8Xdzw5f/6.png b/vlm/test/lPw8Xdzw5f/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba895d2c14813322033a76f76079267f8b88ced --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:653b895b812be77cd91396e4ba340d46c87fd1a05c7dbe164e3a125d6be1d977 +size 467222 diff --git a/vlm/test/lPw8Xdzw5f/7.png b/vlm/test/lPw8Xdzw5f/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f556da81d3a7e045be9a6bd107c82c3366d55c57 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e4b196a6dadabe83f0af9df9ff2e6f7369d68e71340cdbe896cac45d395f45 +size 418014 diff --git a/vlm/test/lPw8Xdzw5f/8.png b/vlm/test/lPw8Xdzw5f/8.png new file mode 100644 index 0000000000000000000000000000000000000000..452698a9dee04edf14859164c6697e03c9136c71 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b56d6d1a31518e0ab4e3c7b8b2213a86e55c3b3f91acc07e038012a128cd88e +size 552044 diff --git a/vlm/test/lPw8Xdzw5f/9.png b/vlm/test/lPw8Xdzw5f/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e3938a894266beb932f24e3659db3fb1a8804121 --- /dev/null +++ b/vlm/test/lPw8Xdzw5f/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a779efac88aa73dd23f74f694240b82c051dafb237c04346261992f6fba753ef +size 484614 diff --git a/vlm/test/nRp0XhTf61/0.png b/vlm/test/nRp0XhTf61/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2528ef18a66f8e23d84efdc7f0d35a151b537a0d --- /dev/null +++ b/vlm/test/nRp0XhTf61/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ecc2fd0fad134fbb0d0bebbeac70f555b249ce9e862a5b69d8f665e273d59c +size 464676 diff --git a/vlm/test/nRp0XhTf61/1.png b/vlm/test/nRp0XhTf61/1.png new file mode 100644 index 0000000000000000000000000000000000000000..06946beb521024dff4a8a9d916816fc0160239aa --- /dev/null +++ b/vlm/test/nRp0XhTf61/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cb228faac3b561f781ee5d4f87757aa4113d1acee09f620be50f9eab3923b8 +size 714508 diff --git a/vlm/test/nRp0XhTf61/10.png b/vlm/test/nRp0XhTf61/10.png new file mode 100644 index 0000000000000000000000000000000000000000..88c18a9ec41f74370e2876c7c02730253f398538 --- /dev/null +++ b/vlm/test/nRp0XhTf61/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df3d99d6917dc3b0f73d3f197bf9a39fbee29d972ea58e888a77ac32fda45e5 +size 701101 diff --git a/vlm/test/nRp0XhTf61/11.png b/vlm/test/nRp0XhTf61/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ae4648dc39a91376feab70aec7a3aa892ab1c0fc --- /dev/null +++ b/vlm/test/nRp0XhTf61/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4125c69122288d8912890906b4ed8505e632260ba2d7284034266aa63ec7124b +size 682691 diff --git a/vlm/test/nRp0XhTf61/12.png b/vlm/test/nRp0XhTf61/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ea147b398137b46c17ed93edf092e5a420b5a4f4 --- /dev/null +++ b/vlm/test/nRp0XhTf61/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef5274329ba02e5c4db04a8ce78eacb69eba4e41b2816229d550eaab50eb055 +size 700681 diff --git a/vlm/test/nRp0XhTf61/13.png b/vlm/test/nRp0XhTf61/13.png new file mode 100644 index 0000000000000000000000000000000000000000..700a188492f09f5f95010b4d72b512edea236fc4 --- /dev/null +++ b/vlm/test/nRp0XhTf61/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c76812045614c1599b431b07903d3da7523fe72d651dc934df9ce7f5b4180ff +size 733032 diff --git a/vlm/test/nRp0XhTf61/14.png b/vlm/test/nRp0XhTf61/14.png new file mode 100644 index 0000000000000000000000000000000000000000..05dd72a0b661e6c27926607866228fb99e6061c3 --- /dev/null +++ b/vlm/test/nRp0XhTf61/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161581524ce835579cb9ade8fe5aec6250fa7dcf4269801a5fad744da7d28d3e +size 736148 diff --git a/vlm/test/nRp0XhTf61/15.png b/vlm/test/nRp0XhTf61/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7b74e45c6035baa91e75e89153348d5c3d620f3c --- /dev/null +++ b/vlm/test/nRp0XhTf61/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6155892c3634d8b4c9e759daaa191fe75e4ab515a9937a12941a10587252824 +size 185960 diff --git a/vlm/test/nRp0XhTf61/16.png b/vlm/test/nRp0XhTf61/16.png new file mode 100644 index 0000000000000000000000000000000000000000..af57db470f42264b382491a7f040fdc8fb533792 --- /dev/null +++ b/vlm/test/nRp0XhTf61/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11df5c6ef277ee316eb0f57e3a8efabb04b2f9a0120ee79a9236b69cd138fdc +size 894823 diff --git a/vlm/test/nRp0XhTf61/17.png b/vlm/test/nRp0XhTf61/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e5749efb37cd92f4f96e5de86348cdda4f1638be --- /dev/null +++ b/vlm/test/nRp0XhTf61/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7aff26df2d00720d55578bc4affd3f7faa838bd0e707557b3412551951ea56 +size 626922 diff --git a/vlm/test/nRp0XhTf61/18.png b/vlm/test/nRp0XhTf61/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0f983bd6c0ba275a0b7174569b56ded215f426fd --- /dev/null +++ b/vlm/test/nRp0XhTf61/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c58265b264af3265cbce0af5bb4671a5110e41853735fc43331c489fbd5158 +size 546530 diff --git a/vlm/test/nRp0XhTf61/19.png b/vlm/test/nRp0XhTf61/19.png new file mode 100644 index 0000000000000000000000000000000000000000..cb30d9c570e6254ecbd6d20b4d8ff0d95af16d91 --- /dev/null +++ b/vlm/test/nRp0XhTf61/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ace26dc4f71dde15b9fc2e1dd222aa823083a22e7e049d7cb534e5f2358503b +size 339149 diff --git a/vlm/test/nRp0XhTf61/2.png b/vlm/test/nRp0XhTf61/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1b8a70499131d61a54e21ddf5e1fc959ef1527 --- /dev/null +++ b/vlm/test/nRp0XhTf61/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddeb0cd3ee7bbba984532a7a8c6e6fc09411839e9628e01f4368e56883eb9214 +size 917021 diff --git a/vlm/test/nRp0XhTf61/20.png b/vlm/test/nRp0XhTf61/20.png new file mode 100644 index 0000000000000000000000000000000000000000..870d8c83d61d9eee4c03de579f7d2398c15de2dd --- /dev/null +++ b/vlm/test/nRp0XhTf61/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05285f1239d166436f0d4df85c6c103da038bcfb5cb8859eb0aa39f23814e1d9 +size 432649 diff --git a/vlm/test/nRp0XhTf61/21.png b/vlm/test/nRp0XhTf61/21.png new file mode 100644 index 0000000000000000000000000000000000000000..af138589e8949c4094c664b182e1f4f2a24203de --- /dev/null +++ b/vlm/test/nRp0XhTf61/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf465048a41fa7001502ea9f28d38336b05d535205eaa7ecd40e8c58d59cd78 +size 442802 diff --git a/vlm/test/nRp0XhTf61/22.png b/vlm/test/nRp0XhTf61/22.png new file mode 100644 index 0000000000000000000000000000000000000000..62862fe708fd3f67341b58a922211f0eb0ff200e --- /dev/null +++ b/vlm/test/nRp0XhTf61/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab49ae5a51d875933b79c5621605bd3bcb5a82b3f5b2096f9d6b33fb11673d8 +size 481406 diff --git a/vlm/test/nRp0XhTf61/23.png b/vlm/test/nRp0XhTf61/23.png new file mode 100644 index 0000000000000000000000000000000000000000..8a75c6487b1de232f0596df67436a96160e9ce52 --- /dev/null +++ b/vlm/test/nRp0XhTf61/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106191051a4ff7687b292c3cae242a1281c743f9d6263256d30c22f1cec82965 +size 396461 diff --git a/vlm/test/nRp0XhTf61/24.png b/vlm/test/nRp0XhTf61/24.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdad228a77faba166bde288f0a9078c89b6a216 --- /dev/null +++ b/vlm/test/nRp0XhTf61/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72c5904daab24ba3e50c4cb33d95fef143015637a578284f3764d6a7491e50e +size 442540 diff --git a/vlm/test/nRp0XhTf61/25.png b/vlm/test/nRp0XhTf61/25.png new file mode 100644 index 0000000000000000000000000000000000000000..9df74146c330bb5c9dd6cf2ee5a2d1489ed4468d --- /dev/null +++ b/vlm/test/nRp0XhTf61/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71d6f7fbf55f2c26f793b4f80276252ad53e1b5d941fbc064eceed59862eace +size 398311 diff --git a/vlm/test/nRp0XhTf61/26.png b/vlm/test/nRp0XhTf61/26.png new file mode 100644 index 0000000000000000000000000000000000000000..a002c2b51ade500a91ee0d28f13ecdd627dcecbe --- /dev/null +++ b/vlm/test/nRp0XhTf61/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75cbaf45b0f550aa12137f28a49831d64c16b237ec2448528f1765c62ef27c6a +size 282327 diff --git a/vlm/test/nRp0XhTf61/3.png b/vlm/test/nRp0XhTf61/3.png new file mode 100644 index 0000000000000000000000000000000000000000..983566133addeb04f66e1ce2de02f8c4eb9585ee --- /dev/null +++ b/vlm/test/nRp0XhTf61/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ca7996104a243e8c955bdc395cae36f09bf967bccd5c9d4271f3cd16fb7529 +size 605987 diff --git a/vlm/test/nRp0XhTf61/4.png b/vlm/test/nRp0XhTf61/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a272a7d2213b3152063bb842ed5d8315376b8139 --- /dev/null +++ b/vlm/test/nRp0XhTf61/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30228b743acd19cc38c2ea5a7f0fbfe033f21f3954cbc8611bd1022a16b66aa +size 611897 diff --git a/vlm/test/nRp0XhTf61/5.png b/vlm/test/nRp0XhTf61/5.png new file mode 100644 index 0000000000000000000000000000000000000000..37e971e14d8ae8b97152407f03745a91d89869b6 --- /dev/null +++ b/vlm/test/nRp0XhTf61/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:592beafd17753e915f3cd48636d76ff39a4ad5fec951ae74047a960c8cc82b00 +size 633533 diff --git a/vlm/test/nRp0XhTf61/6.png b/vlm/test/nRp0XhTf61/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9263cd4e62ae2d0370794ddc64414bf8feff6c0c --- /dev/null +++ b/vlm/test/nRp0XhTf61/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d3675d46674034dc4e7b1b51bb0f69bc6af08f6dfc894c33559e8bd70a033f4 +size 611571 diff --git a/vlm/test/nRp0XhTf61/7.png b/vlm/test/nRp0XhTf61/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6452934552c2cceec34e49fe8720d82df5e38b36 --- /dev/null +++ b/vlm/test/nRp0XhTf61/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee62dcfefdbff28240400f15106e48f4f4a110325c74d41360665db3d79bd7d +size 529653 diff --git a/vlm/test/nRp0XhTf61/8.png b/vlm/test/nRp0XhTf61/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba3c2d95f59b63c6da6690165c2bdf3bb5961d1 --- /dev/null +++ b/vlm/test/nRp0XhTf61/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e829195a8c74a71ed0fa2122dddfebae3fa3feddfe22d6ff09132bc78a9b0b +size 562149 diff --git a/vlm/test/nRp0XhTf61/9.png b/vlm/test/nRp0XhTf61/9.png new file mode 100644 index 0000000000000000000000000000000000000000..48ab032283ab2a16779df66cd62138ce04f7499a --- /dev/null +++ b/vlm/test/nRp0XhTf61/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ca756132153e91f423b657174947564a22bd335ec4a217b427e3227b2e3eb4 +size 509834 diff --git a/vlm/test/oKn9c6ytLx/0.png b/vlm/test/oKn9c6ytLx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f97479c4b9099d699c1e53978485ea81d1e8c1 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a9a4729a1fc1b468c97763a5abfdcf3dca8678850d3232a8e332c0213ea59f +size 490307 diff --git a/vlm/test/oKn9c6ytLx/1.png b/vlm/test/oKn9c6ytLx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bb6a2056afb6c0a68d3ab6bfdf59aa5a3a86ba69 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f14ebae6257c976605f57b96ccf963f05902dafeaed0861108673ffea0fbabb +size 684339 diff --git a/vlm/test/oKn9c6ytLx/10.png b/vlm/test/oKn9c6ytLx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0528d07148d43479ae0e11461a6b9a1083849284 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996d73799389839ccd851d55501b07311fa2332e0d3d6119dd868b2dce3ea707 +size 616099 diff --git a/vlm/test/oKn9c6ytLx/11.png b/vlm/test/oKn9c6ytLx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..78d92d914dc422461d7330e62f13d5aa132d1ec7 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b40a49c33ccb64f5882a8572282df735d2aba76ef19d10451f424d11e5c7ad +size 578141 diff --git a/vlm/test/oKn9c6ytLx/12.png b/vlm/test/oKn9c6ytLx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5c4edefa2706efc371066ab0539ef9960aaa06 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2122840d3cdabfd5bff8dbfc560b3e20260270e10231516e2040ff2596ee69 +size 654874 diff --git a/vlm/test/oKn9c6ytLx/13.png b/vlm/test/oKn9c6ytLx/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8240ad49e5776c622703ab09c98837707a083fa4 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a316429fa200715381e8c4871bef1a935f314238c80199ed4b0c93fec0456ce +size 363747 diff --git a/vlm/test/oKn9c6ytLx/14.png b/vlm/test/oKn9c6ytLx/14.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5277c103651518efb43f6534f27dfae504a622 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed5f71ee5cefd668d767c3ce7d927947794358febc013ac33ea1fd9e0097d1c +size 537744 diff --git a/vlm/test/oKn9c6ytLx/15.png b/vlm/test/oKn9c6ytLx/15.png new file mode 100644 index 0000000000000000000000000000000000000000..29ca39744930a8831a3df0332237a72c41317437 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb5e036105812931f4ae200916815b2b65160502b41a7924e83f0b0b3df3e5d +size 366890 diff --git a/vlm/test/oKn9c6ytLx/16.png b/vlm/test/oKn9c6ytLx/16.png new file mode 100644 index 0000000000000000000000000000000000000000..5f6e8c49c5aa7258a9c7ba05b54317a9e5d6467c --- /dev/null +++ b/vlm/test/oKn9c6ytLx/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb2eca78daf4864967aaed12a49a794a10b0fedca383348ddbd727007be91d5 +size 435051 diff --git a/vlm/test/oKn9c6ytLx/17.png b/vlm/test/oKn9c6ytLx/17.png new file mode 100644 index 0000000000000000000000000000000000000000..535c7c074c00aa90622fffde0b17f85c94031dee --- /dev/null +++ b/vlm/test/oKn9c6ytLx/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e41a38437586754d73b07f8681c9acbb9b6e2e49d7282b9f586e94c50ae3e7e +size 424833 diff --git a/vlm/test/oKn9c6ytLx/18.png b/vlm/test/oKn9c6ytLx/18.png new file mode 100644 index 0000000000000000000000000000000000000000..699beb3af5591bd6d66214de2b2132781e5db4ef --- /dev/null +++ b/vlm/test/oKn9c6ytLx/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85caaa7a8940dc869de104b60e3aa66a3a130d3ad43bf6facbd26c34f317420e +size 261747 diff --git a/vlm/test/oKn9c6ytLx/19.png b/vlm/test/oKn9c6ytLx/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4145d31981b9dcf3fe6be63748232e5d91a364ac --- /dev/null +++ b/vlm/test/oKn9c6ytLx/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997a2689e0a9ccb24b3207c92e447d9e856b3ea1eeb5c28160be05f866c76802 +size 396711 diff --git a/vlm/test/oKn9c6ytLx/2.png b/vlm/test/oKn9c6ytLx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..148d92561a2cd36a1fbb584d567850c700ad332e --- /dev/null +++ b/vlm/test/oKn9c6ytLx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b7c494cc877d662e58a0969dd3c013c7bb6aca20aab6e29f3eefad1d46e395 +size 695401 diff --git a/vlm/test/oKn9c6ytLx/20.png b/vlm/test/oKn9c6ytLx/20.png new file mode 100644 index 0000000000000000000000000000000000000000..29c5d45f7d2f513aed9479eb83051910bf0dd919 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ab683e75713bc774eead189f9a25505730d4a2426ce42b7285a9334d93a861 +size 192549 diff --git a/vlm/test/oKn9c6ytLx/21.png b/vlm/test/oKn9c6ytLx/21.png new file mode 100644 index 0000000000000000000000000000000000000000..117ea95c198e072129a8acc3da54d852786dde41 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3213d24469108f6442d8ffaa01991116d10107398d26f09a2ec3a06b204c9ecd +size 452928 diff --git a/vlm/test/oKn9c6ytLx/3.png b/vlm/test/oKn9c6ytLx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f65bf41fa528dab33b6f7b14f9bb8241833c5d15 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ecba68bba5fb7bd214c6c5d0ed60bdf0a9021cfa00c215647ed2ca8a9c77b7 +size 662551 diff --git a/vlm/test/oKn9c6ytLx/4.png b/vlm/test/oKn9c6ytLx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..def3deaeedb7d38360422d15a45334c3a04563eb --- /dev/null +++ b/vlm/test/oKn9c6ytLx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c14276abbecdfa2166ec9c142fb17143a282e1f34bf4fb53fd9e16882afe4244 +size 564417 diff --git a/vlm/test/oKn9c6ytLx/5.png b/vlm/test/oKn9c6ytLx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..955651cb05d4b89f215ae4111417349ced56592a --- /dev/null +++ b/vlm/test/oKn9c6ytLx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65790d3cd5155f0f9cdee22e8070e386731c79da85b590594f35278fdfde3626 +size 600896 diff --git a/vlm/test/oKn9c6ytLx/6.png b/vlm/test/oKn9c6ytLx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..51086c271b882d91e395f12140dd3513f5e12c7d --- /dev/null +++ b/vlm/test/oKn9c6ytLx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7aee80c67195408edb5505d66962cf07210677ad51ad9b086dc7165f7a130a +size 584980 diff --git a/vlm/test/oKn9c6ytLx/7.png b/vlm/test/oKn9c6ytLx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..27c737fd901f1da3cef76d068afb61573c5ce2d6 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a754234985144e6a02ba172bb748c3cae8b012f33c168108ba69ac7966726c +size 618449 diff --git a/vlm/test/oKn9c6ytLx/8.png b/vlm/test/oKn9c6ytLx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..318dfee37a1444fd3b7ba1984b5f1aae55a2cec9 --- /dev/null +++ b/vlm/test/oKn9c6ytLx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4b34ae9946c19f5eb8f2330d6f8774a6a37dc6a218160fcd0f7c2ab571dbf5 +size 584960 diff --git a/vlm/test/oKn9c6ytLx/9.png b/vlm/test/oKn9c6ytLx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1549c9e943a4d62e84bb9536f1a5afa294a74d8e --- /dev/null +++ b/vlm/test/oKn9c6ytLx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eda537777bf9555c0f6213e293818a7f7be0cd1217e90b1dd05cee351ab6690 +size 630168 diff --git a/vlm/test/p9pBJv1DTz/0.png b/vlm/test/p9pBJv1DTz/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e58e77e7e24fbdf41b7d52b086eda9b8b2aa9e6d --- /dev/null +++ b/vlm/test/p9pBJv1DTz/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331444f8264aa4f583130a541291e3f34aa77f04b67f4f2c45ebb09bcaf17173 +size 1017992 diff --git a/vlm/test/p9pBJv1DTz/1.png b/vlm/test/p9pBJv1DTz/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d53df31f8c1969f7e0dfe4c74837fb717f16a296 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b36ab5857cd5291969733cb2fbc5b7e94e1d321dcc67868be9e63d946b0d78a +size 624606 diff --git a/vlm/test/p9pBJv1DTz/10.png b/vlm/test/p9pBJv1DTz/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b3a735d17dfb3bcdff800a4737583b18e66e741d --- /dev/null +++ b/vlm/test/p9pBJv1DTz/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c22174e890612f9b547f44129f6039f4306ad87972a5fd48c314891c54505b +size 589230 diff --git a/vlm/test/p9pBJv1DTz/11.png b/vlm/test/p9pBJv1DTz/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c988177563fc16fe9b1755660bbe3f2804520e61 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7695730c75a9c2145a1716d667aca9ec2692f4515515d687e954921c6928fa87 +size 482695 diff --git a/vlm/test/p9pBJv1DTz/12.png b/vlm/test/p9pBJv1DTz/12.png new file mode 100644 index 0000000000000000000000000000000000000000..23d1b4e82185428f5df95c51de987ad5d8b27fb8 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f487de7d260531e7b07737ed71836057edc3cd8c3b018a01596b0363f9c39d +size 409547 diff --git a/vlm/test/p9pBJv1DTz/13.png b/vlm/test/p9pBJv1DTz/13.png new file mode 100644 index 0000000000000000000000000000000000000000..61c38c5796c396eee1d1afa0556cf477dc425cba --- /dev/null +++ b/vlm/test/p9pBJv1DTz/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d38f46b602213930bd8ba3688dab48e8a0eb7002cd8a27e9c0cfcdc88ea7f53 +size 542440 diff --git a/vlm/test/p9pBJv1DTz/14.png b/vlm/test/p9pBJv1DTz/14.png new file mode 100644 index 0000000000000000000000000000000000000000..25cc8d5b902cbb4fbb4bcb21f9457ba4820256f9 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6114e1ff30e340627e634102c28ac24ef370f41ecedc0897a2b8b6c81f8fed23 +size 307509 diff --git a/vlm/test/p9pBJv1DTz/15.png b/vlm/test/p9pBJv1DTz/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c2b34cac84167587b7a6fbc425cfd9f323f11fe5 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d79531b63d60914a68fc9d8204d641457b208972739f8ac5335d72ed724f01 +size 178293 diff --git a/vlm/test/p9pBJv1DTz/16.png b/vlm/test/p9pBJv1DTz/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9a726e4d2aeeb515aa8d2552d00053bbdd97d895 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f179d55af49bc78c62bdc8e0bf51517b3ca8c20e69dc46e0e77d183f3f71d6cf +size 207402 diff --git a/vlm/test/p9pBJv1DTz/17.png b/vlm/test/p9pBJv1DTz/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e534097848cb1eb40bf3183e8190e1aa9deb117d --- /dev/null +++ b/vlm/test/p9pBJv1DTz/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce52333d3456ba048de23266d76345f73b9a26a7913ba0d11f8e03af6f8bde7 +size 243414 diff --git a/vlm/test/p9pBJv1DTz/18.png b/vlm/test/p9pBJv1DTz/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2b42218e65c71fb4e73eba36bc7c16018fb6ea81 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36713c2f7fa39eeeb874cc4f40c8c5397e9fb08c2a3ce40e04830dc53be011cd +size 185618 diff --git a/vlm/test/p9pBJv1DTz/19.png b/vlm/test/p9pBJv1DTz/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9392e9909f1ccc5755a6bae82b6c5a7d8935c1ee --- /dev/null +++ b/vlm/test/p9pBJv1DTz/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61fd707dcf20a06e59af8795fe8bd33111a72d05f2ca68366a9f0ec1b5b9c35 +size 237377 diff --git a/vlm/test/p9pBJv1DTz/2.png b/vlm/test/p9pBJv1DTz/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b8bf6ee0298a5db344258151cd47be8923b75d13 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88da9db13fee86c8db43e0486edd57e17e956ffd8c1954f461536d05a45ceeb5 +size 671198 diff --git a/vlm/test/p9pBJv1DTz/20.png b/vlm/test/p9pBJv1DTz/20.png new file mode 100644 index 0000000000000000000000000000000000000000..96827c1a7aabcebeee76e4cd06bdac3a8c2ad7d2 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff012445119e7246e453dc17097a90dac0568f6a27e32f797c573cae772d7d3 +size 111673 diff --git a/vlm/test/p9pBJv1DTz/21.png b/vlm/test/p9pBJv1DTz/21.png new file mode 100644 index 0000000000000000000000000000000000000000..5a307dfcbbe960910d0034dd9866b4ea473bdbd1 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728616de123611ef3996dea74dd4fb7e7a53620f13b4a3a3bc2d5dc7e19e04de +size 425411 diff --git a/vlm/test/p9pBJv1DTz/22.png b/vlm/test/p9pBJv1DTz/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f5f4366aee391e5aba42833b9a9d2aa4678df3ac --- /dev/null +++ b/vlm/test/p9pBJv1DTz/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1b68177ef05bf407d401d2e92382c242e817a0b622761e0b1c1d03c5cb02d0 +size 490689 diff --git a/vlm/test/p9pBJv1DTz/23.png b/vlm/test/p9pBJv1DTz/23.png new file mode 100644 index 0000000000000000000000000000000000000000..9cee1e6f8d7dbbb099d8b0a6aa4b34265f4da886 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95fb4f1291cebed299cba199bbd4b34203fc33a224e7f6b6c0192cf479f9148 +size 524862 diff --git a/vlm/test/p9pBJv1DTz/24.png b/vlm/test/p9pBJv1DTz/24.png new file mode 100644 index 0000000000000000000000000000000000000000..63b903c399e9a76a811e12cb84fab1ad4efd7af7 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8e5f8b03219d978d853f5d9be87eab2ed8087043befc9f1e60d194ee913491 +size 1146534 diff --git a/vlm/test/p9pBJv1DTz/25.png b/vlm/test/p9pBJv1DTz/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd56f83ef442886fcca06b3654f843f8ff0751e --- /dev/null +++ b/vlm/test/p9pBJv1DTz/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:891a8d6ca2cb869c05f161cb34c9e38ffa39c822473caf5c661602613f70a0a3 +size 438625 diff --git a/vlm/test/p9pBJv1DTz/26.png b/vlm/test/p9pBJv1DTz/26.png new file mode 100644 index 0000000000000000000000000000000000000000..75be394265b0de63eea45f793e2e82ee9a108643 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8080832704ecb1aec3ce5ce6244b3cde25f11169262933042b495851347d5d62 +size 399539 diff --git a/vlm/test/p9pBJv1DTz/27.png b/vlm/test/p9pBJv1DTz/27.png new file mode 100644 index 0000000000000000000000000000000000000000..5d476272f36634fd68594cdca02d15f7a6f8887b --- /dev/null +++ b/vlm/test/p9pBJv1DTz/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a8f6d372a50befb607cf36930bcfd0e5f22e34ffe0043528955f93ff6af2f1 +size 1400956 diff --git a/vlm/test/p9pBJv1DTz/28.png b/vlm/test/p9pBJv1DTz/28.png new file mode 100644 index 0000000000000000000000000000000000000000..6d19847311a0132fb991631fb1ae51863171a7f3 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbdcef277c7894d6a0faa09459393cb49a6834389206ea1d413256ad4a4ca76 +size 166812 diff --git a/vlm/test/p9pBJv1DTz/29.png b/vlm/test/p9pBJv1DTz/29.png new file mode 100644 index 0000000000000000000000000000000000000000..515a4665d8d350a8eb7a57c320cbf92c51978df2 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb874c96e6284ad89a84d76887388481c31dad810a308baab2baa0c5c726ff0 +size 309017 diff --git a/vlm/test/p9pBJv1DTz/3.png b/vlm/test/p9pBJv1DTz/3.png new file mode 100644 index 0000000000000000000000000000000000000000..80a83505c7ef4d6cf08f7c7a469ddf1c85e52f06 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12067d26b82ddb979d5455d9a861ee340ebaf0a363e221f78e785d21dc7c991 +size 697212 diff --git a/vlm/test/p9pBJv1DTz/30.png b/vlm/test/p9pBJv1DTz/30.png new file mode 100644 index 0000000000000000000000000000000000000000..0d994843fc38ac2e433e8bcfc76334c627acf1b9 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b2059e877307281f6c657206ac83748530f92c21039b4359c8124b14c9cd1c +size 226850 diff --git a/vlm/test/p9pBJv1DTz/31.png b/vlm/test/p9pBJv1DTz/31.png new file mode 100644 index 0000000000000000000000000000000000000000..aaed07943ea4a57c48155e95c9fbc29701b9ad6c --- /dev/null +++ b/vlm/test/p9pBJv1DTz/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ed8595633a1d8c33b8a8e9f17931de95f3f64ec91e83108f1d3d0fc079ef31 +size 385827 diff --git a/vlm/test/p9pBJv1DTz/32.png b/vlm/test/p9pBJv1DTz/32.png new file mode 100644 index 0000000000000000000000000000000000000000..146debb04939348f4fd630159b3a0a2f66e06ba4 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039af4fc576ec1b8eb4b14f702bf07eac6921aadaa3e41c2c033753f09791e5c +size 336523 diff --git a/vlm/test/p9pBJv1DTz/33.png b/vlm/test/p9pBJv1DTz/33.png new file mode 100644 index 0000000000000000000000000000000000000000..eb41e6d1641b9e0a171c1479e5ea8d0e334e73b9 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7311c72ad974ca0f4d4cad21be01167268b174f315a5aadbddb3931624712bf5 +size 277749 diff --git a/vlm/test/p9pBJv1DTz/34.png b/vlm/test/p9pBJv1DTz/34.png new file mode 100644 index 0000000000000000000000000000000000000000..b4dd4f01c5c06f82735bf283f4734de4a68ff9da --- /dev/null +++ b/vlm/test/p9pBJv1DTz/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58057d73eecb596480569438db85aae74c27b050ae4665369649f8c78c5f8ca +size 218799 diff --git a/vlm/test/p9pBJv1DTz/35.png b/vlm/test/p9pBJv1DTz/35.png new file mode 100644 index 0000000000000000000000000000000000000000..5c7cf6ecf1dbf93f72c9ce4bbcba99b0fb440717 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf19b7a17ae44a00abb29b172bec18310b99a9e0e0a2fa2b1af3ed9da119eec +size 231692 diff --git a/vlm/test/p9pBJv1DTz/36.png b/vlm/test/p9pBJv1DTz/36.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d5f38fe2585c56b7d482132867defd6b7da1d7 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03405e1af685986af7fa4b2027c858dee5a067cdf877cd2b34702c3a334b2d3f +size 217660 diff --git a/vlm/test/p9pBJv1DTz/37.png b/vlm/test/p9pBJv1DTz/37.png new file mode 100644 index 0000000000000000000000000000000000000000..7ddcd68cc0c8d0c7484d8f44381ab06f01378aa7 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5f139259c895c3df77edd95484c6bfd5a6acb67f401cee010404976dbde046 +size 222850 diff --git a/vlm/test/p9pBJv1DTz/38.png b/vlm/test/p9pBJv1DTz/38.png new file mode 100644 index 0000000000000000000000000000000000000000..539655ae5d3cc626e5099e44478b8f82108c3268 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29df1374693c9f243ad0cb8f1554b8a06143571c311fbe56de29377aeb66a83a +size 211438 diff --git a/vlm/test/p9pBJv1DTz/39.png b/vlm/test/p9pBJv1DTz/39.png new file mode 100644 index 0000000000000000000000000000000000000000..f30c25976e43db0f4e6129da7f0d25352a01aa81 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c223c436ccf7d81f67d4d4baae1a4c202bc484f7ce0994ae9121750cd9e95e8f +size 203011 diff --git a/vlm/test/p9pBJv1DTz/4.png b/vlm/test/p9pBJv1DTz/4.png new file mode 100644 index 0000000000000000000000000000000000000000..05d2a139118efc9a3d4b4542b6b3011c4a074887 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3a6ecab852c9c1269055082bcf8204c5dbb8210e63773d2a4bfcaddb56458d +size 541131 diff --git a/vlm/test/p9pBJv1DTz/40.png b/vlm/test/p9pBJv1DTz/40.png new file mode 100644 index 0000000000000000000000000000000000000000..9cddadbc932e8566616e3710d40a2cd520f06e22 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2a2e7819bc6017818d85d49eeda1cdc588fb47a0f233100272b4626c3e58ac +size 215692 diff --git a/vlm/test/p9pBJv1DTz/41.png b/vlm/test/p9pBJv1DTz/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b02980c7f17419466ab736a70014a4205ff00da5 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d9175177100962a05c2464a7086f8d45c2b17e598007b8905c4338b4ad4f43 +size 203665 diff --git a/vlm/test/p9pBJv1DTz/42.png b/vlm/test/p9pBJv1DTz/42.png new file mode 100644 index 0000000000000000000000000000000000000000..c0531b3505c79541de9f497be6a88682d79b3b6d --- /dev/null +++ b/vlm/test/p9pBJv1DTz/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0a4f55104f45a6937d03b08200d2a06243ad69ca98245667a762694f106651 +size 224856 diff --git a/vlm/test/p9pBJv1DTz/43.png b/vlm/test/p9pBJv1DTz/43.png new file mode 100644 index 0000000000000000000000000000000000000000..ae498e2f680112c6a3450a6cb30cd9e540170b67 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac570adc67a0e5d2726ff2fbd02e7846f3acbddba0751f4914a3a6cf76ce7eed +size 204003 diff --git a/vlm/test/p9pBJv1DTz/44.png b/vlm/test/p9pBJv1DTz/44.png new file mode 100644 index 0000000000000000000000000000000000000000..4c3e490b327d31aab4cb05b75bb6f994e080f34e --- /dev/null +++ b/vlm/test/p9pBJv1DTz/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6f90150615e0ad1e32c830a5c676eb169e99814cfcbbe5a130659131f0f7ae +size 227502 diff --git a/vlm/test/p9pBJv1DTz/45.png b/vlm/test/p9pBJv1DTz/45.png new file mode 100644 index 0000000000000000000000000000000000000000..8c8bcca8498b127f4fafb3ca8d05e262a19bdd28 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7ea6e0c5452455c1fca835aeab9c777ee3287255dec6840aa383d58f8f3e01 +size 220755 diff --git a/vlm/test/p9pBJv1DTz/46.png b/vlm/test/p9pBJv1DTz/46.png new file mode 100644 index 0000000000000000000000000000000000000000..34a368e2464450f63f3c636d983adef09c0754c4 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfe7f1242b8fad93d64baf67fe1bf5cb959cce26982a647484815bfb993081d +size 214132 diff --git a/vlm/test/p9pBJv1DTz/47.png b/vlm/test/p9pBJv1DTz/47.png new file mode 100644 index 0000000000000000000000000000000000000000..23b3c939055162f411051a4683faf6d1722c0bba --- /dev/null +++ b/vlm/test/p9pBJv1DTz/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b806b34bfca42ab4294568381f600a5c9bac33fd86486c59d642f78d4265c254 +size 216156 diff --git a/vlm/test/p9pBJv1DTz/48.png b/vlm/test/p9pBJv1DTz/48.png new file mode 100644 index 0000000000000000000000000000000000000000..4b536f1219e96a282fed6f78be269770bd1b6f42 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2d6355b98316c844f9c51fbf3d52095f14eb862e9ab5fdc674487f0a69f027 +size 218013 diff --git a/vlm/test/p9pBJv1DTz/49.png b/vlm/test/p9pBJv1DTz/49.png new file mode 100644 index 0000000000000000000000000000000000000000..575036aef1e59f9e7b8cfde01fe9b52d6b3f6353 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1f7f36a1123ca832ce1f9334759f3cb88efcce959f898d59aeb33e70585cd5 +size 234027 diff --git a/vlm/test/p9pBJv1DTz/5.png b/vlm/test/p9pBJv1DTz/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ccfb0ca122bf2a942a9dd352f6646ea6fb858116 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa51d07c3eae0e4aca1606a9a6966daa309fd18a12071edf076bf6a5002ee889 +size 495991 diff --git a/vlm/test/p9pBJv1DTz/50.png b/vlm/test/p9pBJv1DTz/50.png new file mode 100644 index 0000000000000000000000000000000000000000..675f4e845e220dfb2f559c316aa8a6c2ced8c79a --- /dev/null +++ b/vlm/test/p9pBJv1DTz/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df2c3a88c0ecb307cbe0236cdf8748ee5c8c06221a6dbe2ede9928bd52fc483 +size 203243 diff --git a/vlm/test/p9pBJv1DTz/51.png b/vlm/test/p9pBJv1DTz/51.png new file mode 100644 index 0000000000000000000000000000000000000000..201eb545b1af7947da6e79bed7a8741a749cd9be --- /dev/null +++ b/vlm/test/p9pBJv1DTz/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc45183b854a6f4ecb694b136e8d138c1082a01527c81365600a12a3bf57f5ac +size 100830 diff --git a/vlm/test/p9pBJv1DTz/6.png b/vlm/test/p9pBJv1DTz/6.png new file mode 100644 index 0000000000000000000000000000000000000000..34c21498034bc5e9401b1a9302375bdbaf9c9b7f --- /dev/null +++ b/vlm/test/p9pBJv1DTz/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4bd429742ee2878b2a2282d6e89c3528706fd0050d4a1978990fc0e51a46a4 +size 568389 diff --git a/vlm/test/p9pBJv1DTz/7.png b/vlm/test/p9pBJv1DTz/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e561c5bc3c414eabfd3aaae804eb4383ed02ba --- /dev/null +++ b/vlm/test/p9pBJv1DTz/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c360946193dc75f94adc175d078e9ca9b9855814b5ee77875e1ba450d963565 +size 507466 diff --git a/vlm/test/p9pBJv1DTz/8.png b/vlm/test/p9pBJv1DTz/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1b68c318ecf1190607b0c636387398fe81a8f9 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fcc53e40a59c99b03f222f54d95e120c5ec26a70e22f36299048632f045a22 +size 819262 diff --git a/vlm/test/p9pBJv1DTz/9.png b/vlm/test/p9pBJv1DTz/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7bd449ce577b69c791aa23ece3965e60930b1a34 --- /dev/null +++ b/vlm/test/p9pBJv1DTz/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b98dcb932276be006aacf0292a9ea0be499bbf46b03f0d862f42ec0e25ab51 +size 574162 diff --git a/vlm/test/tBRNC6YemY/0.png b/vlm/test/tBRNC6YemY/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2e0126b5da75b167f423ca4175786fa904aaf0ba --- /dev/null +++ b/vlm/test/tBRNC6YemY/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa2f6d227c0469f8e9321e8a9b3fe6d113e962b82c0f813c0187e363de17850 +size 428919 diff --git a/vlm/test/tBRNC6YemY/1.png b/vlm/test/tBRNC6YemY/1.png new file mode 100644 index 0000000000000000000000000000000000000000..99170b3bf1b30889e5fda330921863c3c1311c82 --- /dev/null +++ b/vlm/test/tBRNC6YemY/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67cd14e481d60a07abd48e22ad616887f58ae9842cc5a943077da2702aef96e +size 467475 diff --git a/vlm/test/tBRNC6YemY/10.png b/vlm/test/tBRNC6YemY/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0f58b3278d63f78f2918b682d7cc02e5d2f5953b --- /dev/null +++ b/vlm/test/tBRNC6YemY/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20573202478b20f80c2968c8ce250dc4b2d933ed693ce63eb420bf3468db5a0d +size 517766 diff --git a/vlm/test/tBRNC6YemY/11.png b/vlm/test/tBRNC6YemY/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd852b79adc71b0d7808086195a2987a0af13af --- /dev/null +++ b/vlm/test/tBRNC6YemY/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88cfbda00d6fcc08c6f5ca78cece43d89b6cb87fce65fcf9172525af0132221 +size 535677 diff --git a/vlm/test/tBRNC6YemY/12.png b/vlm/test/tBRNC6YemY/12.png new file mode 100644 index 0000000000000000000000000000000000000000..472c0ae99c3d57ded4117c457095653838ef0b6d --- /dev/null +++ b/vlm/test/tBRNC6YemY/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b638ceda0713815860306609a52166cd9aa608f50af440d0becc64ab40b11b +size 412389 diff --git a/vlm/test/tBRNC6YemY/13.png b/vlm/test/tBRNC6YemY/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cded4b01d6d9f24bcd69fb78c97d237b5c6f8b86 --- /dev/null +++ b/vlm/test/tBRNC6YemY/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f95589b892167604261c38c4b87c99297899f7b29c6e19f0df6012af785dd5 +size 426969 diff --git a/vlm/test/tBRNC6YemY/14.png b/vlm/test/tBRNC6YemY/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3cb923eccea8b81e0407f6e6568dfc4b4f91ce56 --- /dev/null +++ b/vlm/test/tBRNC6YemY/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e29332ffbe92968058810c43ed2975734eea5ddff825ffbe306ac16275b49d +size 462752 diff --git a/vlm/test/tBRNC6YemY/15.png b/vlm/test/tBRNC6YemY/15.png new file mode 100644 index 0000000000000000000000000000000000000000..592f56ab86d87e2adbed570674b6a0d2e0f4073f --- /dev/null +++ b/vlm/test/tBRNC6YemY/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b6c01dbf6785a42eba7fa7f6b479844a64d409ef7c7689c54293abb98e7307 +size 453827 diff --git a/vlm/test/tBRNC6YemY/16.png b/vlm/test/tBRNC6YemY/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6fd64e17f04a7c30dc71859ea2e7423ca1e753bc --- /dev/null +++ b/vlm/test/tBRNC6YemY/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1c13b513240e4d80342d6766852d15d17f63874607ecc4cd8ffbc506fa59e8 +size 430443 diff --git a/vlm/test/tBRNC6YemY/17.png b/vlm/test/tBRNC6YemY/17.png new file mode 100644 index 0000000000000000000000000000000000000000..9bb52534b1575eca8c16a88b4c2e51c6be9d23af --- /dev/null +++ b/vlm/test/tBRNC6YemY/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee681c13bebdd27675b8842d85147a2f2b07805a850907d00ff00e2e2913bdc +size 304717 diff --git a/vlm/test/tBRNC6YemY/18.png b/vlm/test/tBRNC6YemY/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8c1ced9a611aa1de7841d6fed2408e04af9b37c0 --- /dev/null +++ b/vlm/test/tBRNC6YemY/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6077e2a1aea66648a04dfa65a0ec807559d012da3e956219bf5c83d96dd11ae +size 329700 diff --git a/vlm/test/tBRNC6YemY/19.png b/vlm/test/tBRNC6YemY/19.png new file mode 100644 index 0000000000000000000000000000000000000000..089e178b80c0115b161675de4b3269efd8bbbb30 --- /dev/null +++ b/vlm/test/tBRNC6YemY/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87d9909e7e39670eb0cf3c09d85b497b40d55fa0d96389b8d0a414bad239b20 +size 51607 diff --git a/vlm/test/tBRNC6YemY/2.png b/vlm/test/tBRNC6YemY/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1f21ac8869e39b169fcb3c5f91b594eec78d0d03 --- /dev/null +++ b/vlm/test/tBRNC6YemY/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c828fb9122be7bfec950a9d65753bc0aaec03df38d83a2d205d48ed08981a0 +size 576331 diff --git a/vlm/test/tBRNC6YemY/20.png b/vlm/test/tBRNC6YemY/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d3746e87693eec68faccb576e0b2914aba2727d0 --- /dev/null +++ b/vlm/test/tBRNC6YemY/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506aa24827ce0eca845dda8b8501ebae086eb43a7a670c9c299f3dbe0efad69 +size 358076 diff --git a/vlm/test/tBRNC6YemY/21.png b/vlm/test/tBRNC6YemY/21.png new file mode 100644 index 0000000000000000000000000000000000000000..7eac4f89fe65a25bd7aa76579961848eb395342e --- /dev/null +++ b/vlm/test/tBRNC6YemY/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed9fb0113e6fca26703c5c2de8accad1c1fa877f649171d9278e59bf13d0aa2 +size 414016 diff --git a/vlm/test/tBRNC6YemY/3.png b/vlm/test/tBRNC6YemY/3.png new file mode 100644 index 0000000000000000000000000000000000000000..54b76b782bc72a538e2510b114010777d77533e2 --- /dev/null +++ b/vlm/test/tBRNC6YemY/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1599a853172f02156bc3445578aafaa1c23e8894161db7c0817205ba7c0579e +size 602467 diff --git a/vlm/test/tBRNC6YemY/4.png b/vlm/test/tBRNC6YemY/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e5604bd9606b1c50600265dc2c26c123d80d0426 --- /dev/null +++ b/vlm/test/tBRNC6YemY/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96110eedd6c3e98b0ab8ad70fd0112bd0bce7ea362eef294db179863fefe94ce +size 562824 diff --git a/vlm/test/tBRNC6YemY/5.png b/vlm/test/tBRNC6YemY/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e59fc39a34f631ca0c029b89f27f20b5b528db7f --- /dev/null +++ b/vlm/test/tBRNC6YemY/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1333ccfb43a5cd339ab80121ae66485e8bcbab8b42262e898755071e00fb26f8 +size 495562 diff --git a/vlm/test/tBRNC6YemY/6.png b/vlm/test/tBRNC6YemY/6.png new file mode 100644 index 0000000000000000000000000000000000000000..247bc2091545f83a8b1864e672ebc570520d6305 --- /dev/null +++ b/vlm/test/tBRNC6YemY/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e52d7c2e3eb36c461181263ec9657874fced354e7cb8a25100070d365480873 +size 547309 diff --git a/vlm/test/tBRNC6YemY/7.png b/vlm/test/tBRNC6YemY/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7d7d6e2567c00726760cf2a402737cee071cbacc --- /dev/null +++ b/vlm/test/tBRNC6YemY/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a164b443774c1681a86b5644e482c5a54dfda0e7e8a997bf4dcc4928db49801 +size 556666 diff --git a/vlm/test/tBRNC6YemY/8.png b/vlm/test/tBRNC6YemY/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7255057da1a0fa2f9222b2967136dbc09796e0 --- /dev/null +++ b/vlm/test/tBRNC6YemY/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a7e1eb4e97b2f533dafa0ebd168f4842dc2ca4625cbec79c7ca02d7de52ccd +size 487074 diff --git a/vlm/test/tBRNC6YemY/9.png b/vlm/test/tBRNC6YemY/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7c27b270ad8de69e1a17d2c1dc676894baf2fc6a --- /dev/null +++ b/vlm/test/tBRNC6YemY/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6a3b903318a878aa3a45b6e4a2ad1953e855aaa4d548d31dbd40bf93d9d3c2 +size 530645 diff --git a/vlm/test/tEYskw1VY2/0.png b/vlm/test/tEYskw1VY2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..531e3350dcbb2817a939f094388c270b6f2e3630 --- /dev/null +++ b/vlm/test/tEYskw1VY2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a707faed82b287df7b0b0439ad06a9f17284fb8fd3340f4c4a8390478a94241 +size 575754 diff --git a/vlm/test/tEYskw1VY2/1.png b/vlm/test/tEYskw1VY2/1.png new file mode 100644 index 0000000000000000000000000000000000000000..325d8e957fd3e394b05e040bb95ba1783b4935e2 --- /dev/null +++ b/vlm/test/tEYskw1VY2/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079edb452d5d2258fdd6e011fcf8d9970316fcd37b89dc429882bb438986b055 +size 661078 diff --git a/vlm/test/tEYskw1VY2/10.png b/vlm/test/tEYskw1VY2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f35cc22f69f1c3d5ace508a4fd8b63c8c6324988 --- /dev/null +++ b/vlm/test/tEYskw1VY2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e018c73e00b1a1602242bd5de81e3784b7126f5efd2240d5ca881080a2866df +size 652183 diff --git a/vlm/test/tEYskw1VY2/11.png b/vlm/test/tEYskw1VY2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..66fe72884469fa2f5cf114a8ccfc611e9d848a20 --- /dev/null +++ b/vlm/test/tEYskw1VY2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee14c84e8548b698bdfcccb91410be31ad3efcf0e63d1c0bcd66710b92c4bbc +size 613578 diff --git a/vlm/test/tEYskw1VY2/12.png b/vlm/test/tEYskw1VY2/12.png new file mode 100644 index 0000000000000000000000000000000000000000..127cb39c7a9fd243f40c08ab45acb62ce01159d3 --- /dev/null +++ b/vlm/test/tEYskw1VY2/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe7c24dd52faf9e7be1e0e8323aaf2279fa0d73c47b4910cf539a62268e109d +size 609744 diff --git a/vlm/test/tEYskw1VY2/13.png b/vlm/test/tEYskw1VY2/13.png new file mode 100644 index 0000000000000000000000000000000000000000..491766789a345cdeba43b1331816ba3d775b2085 --- /dev/null +++ b/vlm/test/tEYskw1VY2/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ebfec76c12669491281055b338282f1f36e78e9caffb0147cb0aa54f197dbeb +size 665551 diff --git a/vlm/test/tEYskw1VY2/14.png b/vlm/test/tEYskw1VY2/14.png new file mode 100644 index 0000000000000000000000000000000000000000..aafde48e495b275e786529e546cc1afeb88e64f3 --- /dev/null +++ b/vlm/test/tEYskw1VY2/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2177f9f308eb5ec277578319ce63bca6481cf859fad6b8c8547415a448cc42b +size 630569 diff --git a/vlm/test/tEYskw1VY2/15.png b/vlm/test/tEYskw1VY2/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5b827ea3b3386e7cdfa609e9e1d69de4e29b743c --- /dev/null +++ b/vlm/test/tEYskw1VY2/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdd557075d6c0834e818e3fa1b059a76fedd5ed78995dfc1d86a8430af37739 +size 119593 diff --git a/vlm/test/tEYskw1VY2/16.png b/vlm/test/tEYskw1VY2/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e3b36d5d6e4e0642a1b13b42322185761a7fd16a --- /dev/null +++ b/vlm/test/tEYskw1VY2/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2a5109872612a31296d8112a690053de9a2e37af9372f39a49f5e998733225 +size 646500 diff --git a/vlm/test/tEYskw1VY2/17.png b/vlm/test/tEYskw1VY2/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4073d93a843ca7fc96a687ae7c260664a9412146 --- /dev/null +++ b/vlm/test/tEYskw1VY2/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be66375b7ba2208c478a1847b419315c6561005ff8caba9fab7a712f429807e1 +size 688463 diff --git a/vlm/test/tEYskw1VY2/18.png b/vlm/test/tEYskw1VY2/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8378885c2bc01118cb132508b195a5550556eb08 --- /dev/null +++ b/vlm/test/tEYskw1VY2/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6441a4e7b69f4c2dd985b51e8d627a21e8faa8fabbf0be07a698a42666e1e3eb +size 702624 diff --git a/vlm/test/tEYskw1VY2/19.png b/vlm/test/tEYskw1VY2/19.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd5bf96661279463dc49a49268955b44194812e --- /dev/null +++ b/vlm/test/tEYskw1VY2/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3aa561e90c19ec1fbd8a0ed0d5d024a37487955e763a0e246edb72ca28c999 +size 504103 diff --git a/vlm/test/tEYskw1VY2/2.png b/vlm/test/tEYskw1VY2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..69a221934afd2f2e4aa1ed1bd36759b7730293a0 --- /dev/null +++ b/vlm/test/tEYskw1VY2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61427b9cfdfcba77cdfc362c19951e2da334f6a86970f5e43a8897d32696d89c +size 672815 diff --git a/vlm/test/tEYskw1VY2/20.png b/vlm/test/tEYskw1VY2/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ec6499d9cba376d054e0ec46d1936035f38cf97e --- /dev/null +++ b/vlm/test/tEYskw1VY2/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b524f108e482c232f87a020aeb95eaa3cd946b446f4bdbacb9f4ec974598e61d +size 626741 diff --git a/vlm/test/tEYskw1VY2/21.png b/vlm/test/tEYskw1VY2/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c3dffc824a2085750d706d6de8a189c91e782a35 --- /dev/null +++ b/vlm/test/tEYskw1VY2/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122df7ee031fd77505ced2accf5e4a44c53906355625bac962e1b18849f8a0ac +size 621428 diff --git a/vlm/test/tEYskw1VY2/22.png b/vlm/test/tEYskw1VY2/22.png new file mode 100644 index 0000000000000000000000000000000000000000..20e99eb2dd539352d589f79a814bb62f3d43220b --- /dev/null +++ b/vlm/test/tEYskw1VY2/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2508979e4738bd187c29cc7621198ebb6c699e4944879af95045a537939d0a88 +size 586200 diff --git a/vlm/test/tEYskw1VY2/23.png b/vlm/test/tEYskw1VY2/23.png new file mode 100644 index 0000000000000000000000000000000000000000..be454b00fa0421894b989dd8cc26e2c6a8c191de --- /dev/null +++ b/vlm/test/tEYskw1VY2/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6068af48af60e26a9b465150f7bf8d316068216effe845ece49a9110002c98e +size 510375 diff --git a/vlm/test/tEYskw1VY2/24.png b/vlm/test/tEYskw1VY2/24.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd8f0b00d10f9092c4aa143d9f45140365ff2f5 --- /dev/null +++ b/vlm/test/tEYskw1VY2/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f00002543355d5c54ecda9dd3807e91a179accf53b5b1f590f00ee090286bb4 +size 545755 diff --git a/vlm/test/tEYskw1VY2/25.png b/vlm/test/tEYskw1VY2/25.png new file mode 100644 index 0000000000000000000000000000000000000000..cba3d8ebdc728f84da580332853e7df6eb0995d4 --- /dev/null +++ b/vlm/test/tEYskw1VY2/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400ca03a606862217b172aa5eb442d09df35234ddb3c654239e25825e18f5f21 +size 525184 diff --git a/vlm/test/tEYskw1VY2/26.png b/vlm/test/tEYskw1VY2/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7a8bfab25cd118bc34401d0d30169ceda04ecc --- /dev/null +++ b/vlm/test/tEYskw1VY2/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ea9bf4a545c826f3b033a18f3cf9a2e99804e355fde423516387df3a9ce5e0 +size 491843 diff --git a/vlm/test/tEYskw1VY2/27.png b/vlm/test/tEYskw1VY2/27.png new file mode 100644 index 0000000000000000000000000000000000000000..cae077974be8c1771819069211a0671b52c551ce --- /dev/null +++ b/vlm/test/tEYskw1VY2/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418b5bfae4837d66c635279e5f733514c2f2ff81faf44a1ddb8476755ea26542 +size 545466 diff --git a/vlm/test/tEYskw1VY2/28.png b/vlm/test/tEYskw1VY2/28.png new file mode 100644 index 0000000000000000000000000000000000000000..f355b16fc2c9e414730872ba48bd289c7164d535 --- /dev/null +++ b/vlm/test/tEYskw1VY2/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60329a9819a6f0286d7220dca183c325133a07e26b5d41864dfb4040bdd996ad +size 595278 diff --git a/vlm/test/tEYskw1VY2/29.png b/vlm/test/tEYskw1VY2/29.png new file mode 100644 index 0000000000000000000000000000000000000000..e91ec695b06133c7d581d98406ab0b8d5bfc8011 --- /dev/null +++ b/vlm/test/tEYskw1VY2/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174003f54317599ac4ecf7e22f2e5ccf20bc3f2b6c4c2bea8f6ee747b2ac4c49 +size 496286 diff --git a/vlm/test/tEYskw1VY2/3.png b/vlm/test/tEYskw1VY2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9948c1619b5e538bd60417320cdc8aa4d3f662 --- /dev/null +++ b/vlm/test/tEYskw1VY2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1239d6a7beb21b63068f08ef0d299fafc85784c92e349e9f52f8e1adaf1b6c3e +size 598477 diff --git a/vlm/test/tEYskw1VY2/30.png b/vlm/test/tEYskw1VY2/30.png new file mode 100644 index 0000000000000000000000000000000000000000..13075051c944bf30804c643b9c579dd931ba7beb --- /dev/null +++ b/vlm/test/tEYskw1VY2/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9954c7f106f1320f866dd35da05eb44591fc8c98fd03371c9821c4df209d052e +size 561338 diff --git a/vlm/test/tEYskw1VY2/31.png b/vlm/test/tEYskw1VY2/31.png new file mode 100644 index 0000000000000000000000000000000000000000..7342b7d33f91aefb2a99268887c3db7ad5609b4e --- /dev/null +++ b/vlm/test/tEYskw1VY2/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfc29d21a4a8826c3533428a14a8cf7a01b94aa1b84e34602e155c601db7e03 +size 284706 diff --git a/vlm/test/tEYskw1VY2/4.png b/vlm/test/tEYskw1VY2/4.png new file mode 100644 index 0000000000000000000000000000000000000000..187d36204efd00519db286750caf2a4977f396d1 --- /dev/null +++ b/vlm/test/tEYskw1VY2/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa66b2c287ad5e9b17921a6e1c53a1137d38218318d9344b3bbcf3e38b10a9df +size 601923 diff --git a/vlm/test/tEYskw1VY2/5.png b/vlm/test/tEYskw1VY2/5.png new file mode 100644 index 0000000000000000000000000000000000000000..93076b4c81eb16d44133f009956bed2751c250ac --- /dev/null +++ b/vlm/test/tEYskw1VY2/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6e6fb82716959297decb757260d6c5f99aece031adad75536679698da49dfe +size 585911 diff --git a/vlm/test/tEYskw1VY2/6.png b/vlm/test/tEYskw1VY2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8a50f61cfb28945560a1f6c5cc323ea2bdf8e2a7 --- /dev/null +++ b/vlm/test/tEYskw1VY2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d972ae5bd0f733d313841a4da464b0367a689c59810d0aaff17fd658d14d253e +size 606454 diff --git a/vlm/test/tEYskw1VY2/7.png b/vlm/test/tEYskw1VY2/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a5cd442aed0669aea794177f8789eb48bae94368 --- /dev/null +++ b/vlm/test/tEYskw1VY2/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c8412b37c774fdbc2bb6119f85a9bef79d9cf504e0d50cc0dba50bdd3ecb7e +size 625748 diff --git a/vlm/test/tEYskw1VY2/8.png b/vlm/test/tEYskw1VY2/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0aede9fc76acac48034535371a871477a8aa2e6b --- /dev/null +++ b/vlm/test/tEYskw1VY2/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0676903b8a8cab487399facd0f9500aa0d316dd3e46a25ab0202d4652161ba44 +size 558518 diff --git a/vlm/test/tEYskw1VY2/9.png b/vlm/test/tEYskw1VY2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..418178e9d0f3cc1c227bd5837a3473f8278e5b1e --- /dev/null +++ b/vlm/test/tEYskw1VY2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce3c518cfb2f953052b0611896c73a508022341588fcd1b3bed33b8fca254dd +size 616532 diff --git a/vlm/test/tG5mpAM7ZK/0.png b/vlm/test/tG5mpAM7ZK/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3ab67b4b1c355615159c9c798b069871642c2ef9 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c94ef44f0a72d4a01411ca93951e9a08135ebaf1553916b74fb5be478f5f08a +size 510215 diff --git a/vlm/test/tG5mpAM7ZK/1.png b/vlm/test/tG5mpAM7ZK/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3796b329d14c55f14c630095a6d21787cd4fd668 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7214d88d269737f6060ad1b4bb684a2b60ac78c5d4a1f1495621f8e43adf6d +size 658539 diff --git a/vlm/test/tG5mpAM7ZK/10.png b/vlm/test/tG5mpAM7ZK/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a99c9d537790dc0dc059a2617f98b2f2e98840e3 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff5c2ba9d3444c8a3848da88a7bb96cdc5fb3802dc5d05ae6c1fc971bb63bd5 +size 477253 diff --git a/vlm/test/tG5mpAM7ZK/11.png b/vlm/test/tG5mpAM7ZK/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a16706ee84239d5c83895a37979daca8112de2dc --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e649581a7bd960fd0378dc2a3f129c15a7b8edfbb1aeaefb5e7a354ea5f00470 +size 368783 diff --git a/vlm/test/tG5mpAM7ZK/12.png b/vlm/test/tG5mpAM7ZK/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bb31aa6d33a363f6a1dae6572ea0d0f2ed571d25 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d30a159faff9bc344a207d2707a46e424b2662f7cb1a5a22a02f27abc7b505 +size 469218 diff --git a/vlm/test/tG5mpAM7ZK/13.png b/vlm/test/tG5mpAM7ZK/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5e103fecf1478f67e681798bd8f15ebcf6dc57c6 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a4bda7518eb101d3fee443305b15261685f1696fcbf0cf8aa8cf2f20c00417 +size 439761 diff --git a/vlm/test/tG5mpAM7ZK/14.png b/vlm/test/tG5mpAM7ZK/14.png new file mode 100644 index 0000000000000000000000000000000000000000..585ecbe36c959ab54fb9e097247685d08492585c --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d82fed598ed8e9baa3a7718249a52b1723343a8ba7a285edf7d5a0b47b376c6 +size 355322 diff --git a/vlm/test/tG5mpAM7ZK/15.png b/vlm/test/tG5mpAM7ZK/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e99c346dc30cf9719162cdfa072adae66129d659 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c7ea68efd66f9ee6b940e0754111f48b204e361c7e105b4bbdf726a90fc64f +size 553170 diff --git a/vlm/test/tG5mpAM7ZK/16.png b/vlm/test/tG5mpAM7ZK/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c04eec66f3a5a6e54d216897c389f5505cd71b9 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17261cdfe4c563a596ced38d519662ac40e0ea5659f2bb8cbcfb7879cac5bb22 +size 347996 diff --git a/vlm/test/tG5mpAM7ZK/17.png b/vlm/test/tG5mpAM7ZK/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ee30aab1067b75c1bc0a99f7cfc0be639f5047 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754ebdbf7c6b1fc04602cc112355fff35b50089ee7e836249e4c9bfa31e5a27b +size 348457 diff --git a/vlm/test/tG5mpAM7ZK/18.png b/vlm/test/tG5mpAM7ZK/18.png new file mode 100644 index 0000000000000000000000000000000000000000..1e41a0bd1f02387e072c706c6222e35aa1a5cb63 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348924748361bc4d274269cd07a0078424614ba186c380aedf452519f8751bfd +size 463128 diff --git a/vlm/test/tG5mpAM7ZK/19.png b/vlm/test/tG5mpAM7ZK/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b9cebc795782687901a1aec6cd21cf51723e787f --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5223118a1001160c7f008f9e0befb55cb5c776d64c47e61cc54567829fb7b85a +size 234703 diff --git a/vlm/test/tG5mpAM7ZK/2.png b/vlm/test/tG5mpAM7ZK/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1502c1eab2c73cf34c0ae185e3689a3038ce4c6b --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fb5b2915d1499cbefaab800b16cac035b38ca537eb268b1c0f97145bd7cdea +size 571699 diff --git a/vlm/test/tG5mpAM7ZK/20.png b/vlm/test/tG5mpAM7ZK/20.png new file mode 100644 index 0000000000000000000000000000000000000000..78ac31eb9e30fc5a607597f5cc90fd942a7dabd4 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc93a55c318fa7658c41f7efae04e8feb8825e31f07531031c46c273b97e84bd +size 42200 diff --git a/vlm/test/tG5mpAM7ZK/3.png b/vlm/test/tG5mpAM7ZK/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2ff6858ad8c4146b4c5b7887d97ed4b575e2c8 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05fa288af33d6038285d286911424930ace4af7bbde69cb79476d044409ee97f +size 594763 diff --git a/vlm/test/tG5mpAM7ZK/4.png b/vlm/test/tG5mpAM7ZK/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e710956c24a2055ca57464973d349a9813dc7648 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a04ab2b41971d5ee83ce8bbe74a4eb2193bd0970930bd4e7abb0e95be8106fa +size 679376 diff --git a/vlm/test/tG5mpAM7ZK/5.png b/vlm/test/tG5mpAM7ZK/5.png new file mode 100644 index 0000000000000000000000000000000000000000..701982324194dd06351e2ff17dc13aaa75a1429c --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df07bba46d54616dc7536051d3a87408148b4a31cdabfb3f2d14d0b0453f1bff +size 699317 diff --git a/vlm/test/tG5mpAM7ZK/6.png b/vlm/test/tG5mpAM7ZK/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3a57c7868da7e6f76e737ca91fd395d63e25adf6 --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd090ab0e47fbddb14ee7bfe74486036516c8a30b5c37b6a2e1d73c55a73d6f +size 562415 diff --git a/vlm/test/tG5mpAM7ZK/7.png b/vlm/test/tG5mpAM7ZK/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4f918c18643fc47a09e8b7fe0405b9e4bb884e2f --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2982ad2cae26e7b541df16418bcb94982e6e08a6654ab65a8697c5e72bcc34 +size 627811 diff --git a/vlm/test/tG5mpAM7ZK/8.png b/vlm/test/tG5mpAM7ZK/8.png new file mode 100644 index 0000000000000000000000000000000000000000..525606cf278afbf30447c5ee9f09cc8afb38d33d --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b38bc1ff8bc78c195369b1f4dfa2b18f8152a55f0322a4a673c9b70ed7f2ff8 +size 703651 diff --git a/vlm/test/tG5mpAM7ZK/9.png b/vlm/test/tG5mpAM7ZK/9.png new file mode 100644 index 0000000000000000000000000000000000000000..24699fed7924b917bf9e0544bfe184eb7120db3a --- /dev/null +++ b/vlm/test/tG5mpAM7ZK/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0652c98d8f4d2cd9cae4060c9fc3bd6f49c6ed25c860a00e23ea6fbafb703011 +size 536744 diff --git a/vlm/test/tgjGR7eY5H/0.png b/vlm/test/tgjGR7eY5H/0.png new file mode 100644 index 0000000000000000000000000000000000000000..320a6ee63bb8688d40b799e8def854f465c5b921 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a18ba7622ab7327d8da6f534aa040893cb1e85ff7bd07845907c03b876124fb +size 544189 diff --git a/vlm/test/tgjGR7eY5H/1.png b/vlm/test/tgjGR7eY5H/1.png new file mode 100644 index 0000000000000000000000000000000000000000..631abc3d3c272bb658d2472e0deed0c38c2d6e26 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465a52d1e1934ffe7473735c55046999a137a803695f28f566552e7be94119b2 +size 603500 diff --git a/vlm/test/tgjGR7eY5H/10.png b/vlm/test/tgjGR7eY5H/10.png new file mode 100644 index 0000000000000000000000000000000000000000..172bdd2bbfa6f9a22652ab9a4f100b4b285a2a86 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c4589d96f2c97c9942f33758c60ad50d86ac16ead4a51455829135289ac7511 +size 524416 diff --git a/vlm/test/tgjGR7eY5H/11.png b/vlm/test/tgjGR7eY5H/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0034fa33e3d0470ef7d63f966848ea6c349de7ad --- /dev/null +++ b/vlm/test/tgjGR7eY5H/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ae4c87b519fba5fbf041339fab6febce1b2903b8aea78f68d96692dad35fa8 +size 550891 diff --git a/vlm/test/tgjGR7eY5H/14.png b/vlm/test/tgjGR7eY5H/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4e9f517968fa962a45ab921176372f2e307e7e28 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0491e1b62245936db10ff102b8432a5e7858d6398d594f53b4846e6f5ebc05 +size 517027 diff --git a/vlm/test/tgjGR7eY5H/15.png b/vlm/test/tgjGR7eY5H/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c1d9be6d917e61e78a5b93037943ffad4cc55859 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c2da68c17687aa81706d1bdd446d1ea72fa63483e9a002bdea2bd3428771ed +size 524059 diff --git a/vlm/test/tgjGR7eY5H/17.png b/vlm/test/tgjGR7eY5H/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c9967ade80e4f10ccda3ec0cfe4169dea9f4eb59 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1024ade1ad7d748e3f61b64b6c3b366be262498395bc662d493981a773348bc4 +size 238206 diff --git a/vlm/test/tgjGR7eY5H/2.png b/vlm/test/tgjGR7eY5H/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b6dd32f58d43557ce5bd08ab6730c03d0952c07 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d438025f73415067e596e86494d53e6199430b0a9def413bb4c0e55f6430221c +size 506127 diff --git a/vlm/test/tgjGR7eY5H/21.png b/vlm/test/tgjGR7eY5H/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9b64010f1d18823abd26ee46b533db5fe24016ae --- /dev/null +++ b/vlm/test/tgjGR7eY5H/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0c04837318bb3d068d8d0a4681ed02fd0de1070aee36f1dab0403c871e08e3 +size 490258 diff --git a/vlm/test/tgjGR7eY5H/22.png b/vlm/test/tgjGR7eY5H/22.png new file mode 100644 index 0000000000000000000000000000000000000000..6d174564a7c5d069b310d7b0040fe6eac4976fc4 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750beb37d08cb179066e86018ae4563ebfee422d77a055872e673c6b8309e05e +size 442133 diff --git a/vlm/test/tgjGR7eY5H/23.png b/vlm/test/tgjGR7eY5H/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c64b9e708642cc622a91a78a6b69bea52820b7ee --- /dev/null +++ b/vlm/test/tgjGR7eY5H/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f5b2f57182123bbc159253c3935bcd45b4c32c7acbf01cdaa11ca05a731080 +size 421431 diff --git a/vlm/test/tgjGR7eY5H/24.png b/vlm/test/tgjGR7eY5H/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d6e46d623f2067f58d4879ad301452e87c2d9f76 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4477b63e6591b7062b1f73bda91fad839e07c70e2a0b899d8eb797b4d95988d9 +size 366843 diff --git a/vlm/test/tgjGR7eY5H/25.png b/vlm/test/tgjGR7eY5H/25.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e3ef6ec29c7714953482aadec3213b890e9028 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628a231bda8a52bf01b89a414acaf584b3444d91a23f0a959c6a1336bb035437 +size 400397 diff --git a/vlm/test/tgjGR7eY5H/27.png b/vlm/test/tgjGR7eY5H/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2719efc1300b70f8255e8d23e8acaf170d3e819d --- /dev/null +++ b/vlm/test/tgjGR7eY5H/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4e3a0cc3d6d059a25d95b5775a3f1e46c74dc31bf5658eedda314fe6fa28fd +size 420540 diff --git a/vlm/test/tgjGR7eY5H/28.png b/vlm/test/tgjGR7eY5H/28.png new file mode 100644 index 0000000000000000000000000000000000000000..3aab61b57f43865780d16671aedc0d3339441676 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b842e818b1a19793b2081ae5255c784311de09ee528ce784ef7c426e38131de +size 111994 diff --git a/vlm/test/tgjGR7eY5H/3.png b/vlm/test/tgjGR7eY5H/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a2b4dcbf901dcb6a8d52f5c0cb45295cf17bdf83 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00084cfd6bf875521e1875b459518d52e8ec5a3ba5d484d5bc7793e15d9be86f +size 555932 diff --git a/vlm/test/tgjGR7eY5H/30.png b/vlm/test/tgjGR7eY5H/30.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9389bcfb1dfb3cab22890a2ce0d00ff13ef8f7 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84012db9aa9a85f4c804f9b5e9ffb5295faabae8024dde7b99ee0282402ebd7c +size 450647 diff --git a/vlm/test/tgjGR7eY5H/31.png b/vlm/test/tgjGR7eY5H/31.png new file mode 100644 index 0000000000000000000000000000000000000000..3531572458a10621ba9a061a12fa2cb40d9f6cb6 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6413c7d9b7965555672ab6def31f4366508c9362d17185954c9e9c858995d0d +size 349037 diff --git a/vlm/test/tgjGR7eY5H/33.png b/vlm/test/tgjGR7eY5H/33.png new file mode 100644 index 0000000000000000000000000000000000000000..af4c07f0ec3137b2bea3389cb20e6f3179939682 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc7e932847779c27cc06281f0fa2b56966bed72335ad5ed143611d31f139430 +size 330502 diff --git a/vlm/test/tgjGR7eY5H/36.png b/vlm/test/tgjGR7eY5H/36.png new file mode 100644 index 0000000000000000000000000000000000000000..7578edd8fa8d68003109f21095c03fccffdedc9e --- /dev/null +++ b/vlm/test/tgjGR7eY5H/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d1d72aa1a9cea88deaa0a5d897be54ae583cea32de9eeb440fbdd84fd3c02d +size 321362 diff --git a/vlm/test/tgjGR7eY5H/37.png b/vlm/test/tgjGR7eY5H/37.png new file mode 100644 index 0000000000000000000000000000000000000000..f1fe94d622d42d4c7a0bbbf1ac829724a88caf81 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ef7e17ff119bfdac0d1d79ec618edf6f8648a242e914848688a064a5fb9236 +size 609016 diff --git a/vlm/test/tgjGR7eY5H/38.png b/vlm/test/tgjGR7eY5H/38.png new file mode 100644 index 0000000000000000000000000000000000000000..40d611431ec1b0d171876bae794a20cbe9b7441c --- /dev/null +++ b/vlm/test/tgjGR7eY5H/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c405540eb3033bd73cbce076ea756d9b57a4116a62bfc546172544c3940e9c +size 396702 diff --git a/vlm/test/tgjGR7eY5H/40.png b/vlm/test/tgjGR7eY5H/40.png new file mode 100644 index 0000000000000000000000000000000000000000..1f0bb4edcc782ec5f1d762cd01e805ddb54f04de --- /dev/null +++ b/vlm/test/tgjGR7eY5H/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f75b6e6335c111ea92024570ba0480b7ae9338d14a77fe30198d99b8ecdf7c +size 401726 diff --git a/vlm/test/tgjGR7eY5H/41.png b/vlm/test/tgjGR7eY5H/41.png new file mode 100644 index 0000000000000000000000000000000000000000..02f3b27eda2b4fc7ae877a3d16db6d57d6748537 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667fecc9edc66ffb418913800704bf7b74a6fa113b9ffae4f9b87ae582042839 +size 396739 diff --git a/vlm/test/tgjGR7eY5H/42.png b/vlm/test/tgjGR7eY5H/42.png new file mode 100644 index 0000000000000000000000000000000000000000..92d8ef6ecdbed47ba8c5e0e8ebd2665ff4515651 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371fd77f57bbd4ac0277d14c650e7bd3bba808cc0f3405bbc739d012b501aa29 +size 399668 diff --git a/vlm/test/tgjGR7eY5H/43.png b/vlm/test/tgjGR7eY5H/43.png new file mode 100644 index 0000000000000000000000000000000000000000..f86b6d94f29de880d1a1161c083d9b81752e1246 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4044f8c6062a898d04d09df393e316596acace22ef65f7cec5698a8ff061aeba +size 398721 diff --git a/vlm/test/tgjGR7eY5H/45.png b/vlm/test/tgjGR7eY5H/45.png new file mode 100644 index 0000000000000000000000000000000000000000..baef810f24155e7d2e09c4d926d8c157ced46f55 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdf5d8f2cab2aaf653aa441e39b3136088b58476fe0d4a3d2c84ceaad256f10 +size 386744 diff --git a/vlm/test/tgjGR7eY5H/5.png b/vlm/test/tgjGR7eY5H/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b527d65f138f73be97c2135624372cd155fc4148 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6782378b1b874f2f55a7dd7b093afb3e0cac0733bb336feb2fd337c3582815 +size 605882 diff --git a/vlm/test/tgjGR7eY5H/6.png b/vlm/test/tgjGR7eY5H/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2fb9f1d484b94b151647b909e472065f8483f1 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e88465c1b7a313d44b8205a7cf434bc5d06cf50c9b4f578a366cff77a34a12 +size 559991 diff --git a/vlm/test/tgjGR7eY5H/9.png b/vlm/test/tgjGR7eY5H/9.png new file mode 100644 index 0000000000000000000000000000000000000000..626d6b6ba31ffbea86c2fbf034552e5f8c1fa4f4 --- /dev/null +++ b/vlm/test/tgjGR7eY5H/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edf62490f24bdb160a5ae8f2f8bbf416a98791babc84c0e58f3019ce2e1f846 +size 537005 diff --git a/vlm/test/tr0KidwPLc/0.png b/vlm/test/tr0KidwPLc/0.png new file mode 100644 index 0000000000000000000000000000000000000000..df373a3294a7e842db0b1e2edac13830ea376f60 --- /dev/null +++ b/vlm/test/tr0KidwPLc/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88fecc5dba34e3de84073f96f0fba45b97162b7980abe4bcaec5aa393cd27c9 +size 531802 diff --git a/vlm/test/tr0KidwPLc/1.png b/vlm/test/tr0KidwPLc/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7333d1932a6c41990e2745c46f067dc33074c31c --- /dev/null +++ b/vlm/test/tr0KidwPLc/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bf24b5034550f3b52021132c34fa6fa5aecdaf301391545b88c357328abdd4 +size 631058 diff --git a/vlm/test/tr0KidwPLc/10.png b/vlm/test/tr0KidwPLc/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d507dd44a6069433f4c1f3dcc0c622c4328662fc --- /dev/null +++ b/vlm/test/tr0KidwPLc/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57773e4770644cf89c3ce653ec5e9fe2985b26264965545453b23ac7a18855b2 +size 579173 diff --git a/vlm/test/tr0KidwPLc/11.png b/vlm/test/tr0KidwPLc/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b05eb0ba3f0182fc7a914655c36cdeecb0d67ce5 --- /dev/null +++ b/vlm/test/tr0KidwPLc/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76919b1d975083cd607c32bfd4badc1c47a0d526a99ce18950be623a94c237a2 +size 540083 diff --git a/vlm/test/tr0KidwPLc/12.png b/vlm/test/tr0KidwPLc/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bd37af8b4856f7d5e220bf4336189f40a1cffa12 --- /dev/null +++ b/vlm/test/tr0KidwPLc/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899989dc4d146d86750a07d82f079e013d33722a8cd37f9e4c9b428de704d1f3 +size 577563 diff --git a/vlm/test/tr0KidwPLc/13.png b/vlm/test/tr0KidwPLc/13.png new file mode 100644 index 0000000000000000000000000000000000000000..10f22eb30314d9fe1d98e724e2136efd87ba07a8 --- /dev/null +++ b/vlm/test/tr0KidwPLc/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f2e710d518ae28566d6b3dda2179c0e47d2472480d007a49951e64b9d0f2cb +size 152914 diff --git a/vlm/test/tr0KidwPLc/14.png b/vlm/test/tr0KidwPLc/14.png new file mode 100644 index 0000000000000000000000000000000000000000..92cb05b8ca323f8bd9eaa640112fad8a637aa221 --- /dev/null +++ b/vlm/test/tr0KidwPLc/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99a49d65080a0ed32b880869eac6e48fe18d28296bcf599b89f5db7a70301d8 +size 461093 diff --git a/vlm/test/tr0KidwPLc/15.png b/vlm/test/tr0KidwPLc/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2c5a8df6c0709c2a55f467cf008b3c0c7548a3b1 --- /dev/null +++ b/vlm/test/tr0KidwPLc/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed51ec01cec5e6a3173f68879b8f64fb5bbb297acb6817c71400a236f27434 +size 440391 diff --git a/vlm/test/tr0KidwPLc/16.png b/vlm/test/tr0KidwPLc/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e2dfd121f404ea106b9b3d165d77da6dc3330151 --- /dev/null +++ b/vlm/test/tr0KidwPLc/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033db9e703de18112aac7bffafe6373972a127bcc06ad5d326f31a47bbf0944f +size 481747 diff --git a/vlm/test/tr0KidwPLc/17.png b/vlm/test/tr0KidwPLc/17.png new file mode 100644 index 0000000000000000000000000000000000000000..949c2653e0f3818ceca17134ce0908e8946aee5a --- /dev/null +++ b/vlm/test/tr0KidwPLc/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae22425b0b44758028776d5b0f247661c53b205ea55f82942c284699ae24af9a +size 427862 diff --git a/vlm/test/tr0KidwPLc/18.png b/vlm/test/tr0KidwPLc/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3c19c6da863f814d1fedd56d46cd7eda87ddd167 --- /dev/null +++ b/vlm/test/tr0KidwPLc/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06542692cc790e3b21925e7a20cb1f00a9691e184b0a56901db9e84b442e6186 +size 437897 diff --git a/vlm/test/tr0KidwPLc/19.png b/vlm/test/tr0KidwPLc/19.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5d8af60a22ae0c1ad9cd6797730aa5d0f58921 --- /dev/null +++ b/vlm/test/tr0KidwPLc/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a86c3d36dad6968a909a7b97ec9bfe23849c156fd05ace9f098248862e39360 +size 455521 diff --git a/vlm/test/tr0KidwPLc/2.png b/vlm/test/tr0KidwPLc/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0e829bbb18e9bf0e0ee98f165c2ade7a2bddba07 --- /dev/null +++ b/vlm/test/tr0KidwPLc/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e4f94e2c5004b96c142f09c303d19959f64d03983e8c054751a6431aaa5a46 +size 608520 diff --git a/vlm/test/tr0KidwPLc/20.png b/vlm/test/tr0KidwPLc/20.png new file mode 100644 index 0000000000000000000000000000000000000000..c39d8c8dc059f864cb55f02cce4ecb30a0fd4ee7 --- /dev/null +++ b/vlm/test/tr0KidwPLc/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a14a5a2b68e55f713c718c32f26bafa3826378c9e6517abc9ef5fffc7e4a55 +size 451451 diff --git a/vlm/test/tr0KidwPLc/21.png b/vlm/test/tr0KidwPLc/21.png new file mode 100644 index 0000000000000000000000000000000000000000..e4fb98325efe783ee1d2abcbaefb5bcf7470be36 --- /dev/null +++ b/vlm/test/tr0KidwPLc/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d6f9e58314fc8e52e8e842a84e3c11fecae849744431cf916be17ff04e85fe1 +size 529057 diff --git a/vlm/test/tr0KidwPLc/22.png b/vlm/test/tr0KidwPLc/22.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8f1e318ad0bf7a21690434f7e827cf1a0f1bd6 --- /dev/null +++ b/vlm/test/tr0KidwPLc/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112d2ddb48ef8df04b14558a682e947b0618a7da9c928bef106c92c19dff3ec0 +size 490867 diff --git a/vlm/test/tr0KidwPLc/23.png b/vlm/test/tr0KidwPLc/23.png new file mode 100644 index 0000000000000000000000000000000000000000..d6511346ece2ac8b7b7447834bb26a4a30751b61 --- /dev/null +++ b/vlm/test/tr0KidwPLc/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea53a77a22ff22cc3a0934e0f50c21d944f6e28ae51dab326252ba79bc034ab +size 529037 diff --git a/vlm/test/tr0KidwPLc/24.png b/vlm/test/tr0KidwPLc/24.png new file mode 100644 index 0000000000000000000000000000000000000000..bdfc8187e000ae2e11a9d5143467715f98b3be0f --- /dev/null +++ b/vlm/test/tr0KidwPLc/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931aa71b829d4f604fa85839d98c2221a6418c0b8b59e8375bb4d16b843415fc +size 533415 diff --git a/vlm/test/tr0KidwPLc/25.png b/vlm/test/tr0KidwPLc/25.png new file mode 100644 index 0000000000000000000000000000000000000000..7dc1dae7be624d806c1b27b5ecfff6d43cd9985c --- /dev/null +++ b/vlm/test/tr0KidwPLc/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf9e53eba659bdaa78bf87be8f8be7f83992bdb339c586a410f8bee660fb013 +size 544277 diff --git a/vlm/test/tr0KidwPLc/26.png b/vlm/test/tr0KidwPLc/26.png new file mode 100644 index 0000000000000000000000000000000000000000..55f68cbebbb2e3abfe4aecb9012b8e0925d216e5 --- /dev/null +++ b/vlm/test/tr0KidwPLc/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0b0c6bc85f5c2c6277a9a80c2ecb8904690659f59d5b80e039588b81b713ad +size 540625 diff --git a/vlm/test/tr0KidwPLc/3.png b/vlm/test/tr0KidwPLc/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4651cc9887d673103b7a82321d701964c53a579a --- /dev/null +++ b/vlm/test/tr0KidwPLc/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c26aa6130a4b86530fac114ac75e255cb3944d82a441e38de6efa94f56067d +size 597373 diff --git a/vlm/test/tr0KidwPLc/4.png b/vlm/test/tr0KidwPLc/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b922e2c7542875a348cf3b2b327f843fc9b6e7dd --- /dev/null +++ b/vlm/test/tr0KidwPLc/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4740630d355122939ca94d54aee1a7cb7837b992e0fd3eeaf97b06d94f0238c0 +size 608451 diff --git a/vlm/test/tr0KidwPLc/5.png b/vlm/test/tr0KidwPLc/5.png new file mode 100644 index 0000000000000000000000000000000000000000..48baae63ce49561cddb65d43c3f5b329f63a6534 --- /dev/null +++ b/vlm/test/tr0KidwPLc/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c32d5a787830fd13787a365153b46368a5e0460a7a97a6c16c9295ad4b06d8e +size 588819 diff --git a/vlm/test/tr0KidwPLc/6.png b/vlm/test/tr0KidwPLc/6.png new file mode 100644 index 0000000000000000000000000000000000000000..35267db7b13902619db6bf7648d73cd2b054c6a6 --- /dev/null +++ b/vlm/test/tr0KidwPLc/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11788c0568a403bdfb6fe623a6a676188754a682a515bad7321d9c1270216224 +size 609271 diff --git a/vlm/test/tr0KidwPLc/7.png b/vlm/test/tr0KidwPLc/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5e48d5b48b9a26e33b5221ea4f30f48c04d8719b --- /dev/null +++ b/vlm/test/tr0KidwPLc/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa832a5b681c0e4798a20dee7b522bae225eca60095447afe8da05de08c927d7 +size 554116 diff --git a/vlm/test/tr0KidwPLc/8.png b/vlm/test/tr0KidwPLc/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a83f575dc2b3598acf89641fb624ef871b41696f --- /dev/null +++ b/vlm/test/tr0KidwPLc/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167c01c08f822c6bcd6d833a26ef8f4c2dacfb734595759e3e383eb7587c7387 +size 627309 diff --git a/vlm/test/tr0KidwPLc/9.png b/vlm/test/tr0KidwPLc/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b4614d7762abe620161dd52b58980833e7f8f8f6 --- /dev/null +++ b/vlm/test/tr0KidwPLc/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad6d676bc8483f96f38881df04b00dd7eba91bbb0a3e5dcdc588ae0bd4be2af +size 511657 diff --git a/vlm/test/uREj4ZuGJE/0.png b/vlm/test/uREj4ZuGJE/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7debb70b0e366d14feb782c01ca7365392f0b6d9 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4bb504dc026b6f37f9febbaf7efaa677c7cd2ed3a39b43d0b4e5c1f5fcd77a +size 488709 diff --git a/vlm/test/uREj4ZuGJE/1.png b/vlm/test/uREj4ZuGJE/1.png new file mode 100644 index 0000000000000000000000000000000000000000..90c6c9a62e7abd75d76fc1b9c1f7fc068fb4829b --- /dev/null +++ b/vlm/test/uREj4ZuGJE/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4352e7294ab1f84c79222384284f514f04a0b47c8ca7b30114d0307f7dfd9a6d +size 513755 diff --git a/vlm/test/uREj4ZuGJE/10.png b/vlm/test/uREj4ZuGJE/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5b8226c259f7e053f16df7effcbc4cc3a38ff968 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7438dddb82f206676225665af4014b067f4fd1660a1dd1893b684af55fe01b96 +size 546474 diff --git a/vlm/test/uREj4ZuGJE/11.png b/vlm/test/uREj4ZuGJE/11.png new file mode 100644 index 0000000000000000000000000000000000000000..43c105b3fefd441435d17a0b4ed227df76cff21f --- /dev/null +++ b/vlm/test/uREj4ZuGJE/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161851ea729906064eb6146413076041476e8ebacb62417afb415e6142c5a951 +size 450812 diff --git a/vlm/test/uREj4ZuGJE/12.png b/vlm/test/uREj4ZuGJE/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d5fd8d733a4ad8ba8b59f5e5783bcfd044ba4c82 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf224bd243830bae0f6bc0719f3f437166ec30f4fe59c40989d0377bd70fe5d +size 314604 diff --git a/vlm/test/uREj4ZuGJE/13.png b/vlm/test/uREj4ZuGJE/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ac074550ee54c07d2761fa654c5a8854c68f54 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c704f4d9d92e05dda8dddc569b856843c3120b9d57440eb137a4df37283163a5 +size 496130 diff --git a/vlm/test/uREj4ZuGJE/14.png b/vlm/test/uREj4ZuGJE/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb7e18386d76f89b511f8cb8a39a54a7ea96687 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3b32a090ddf4d50b9489eb4a0d2ac7d3bb0b883a1cfc6bf883fd6ed6c17998 +size 265428 diff --git a/vlm/test/uREj4ZuGJE/15.png b/vlm/test/uREj4ZuGJE/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f39574c9e34a9b4eebac700620320e75d19324e1 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431e70b08a95693adb11f9a7df43bd24ac98c199f236df6d41ffbadaa3725efe +size 418151 diff --git a/vlm/test/uREj4ZuGJE/16.png b/vlm/test/uREj4ZuGJE/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e69eee8b1ef8318b4e381e0bb8f2d664b324e6cd --- /dev/null +++ b/vlm/test/uREj4ZuGJE/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2efba371366fcb3cf16af4f7c96853e2ab200a485cfcba8164a3ff5ea8cad66 +size 531203 diff --git a/vlm/test/uREj4ZuGJE/2.png b/vlm/test/uREj4ZuGJE/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ae26aff64a0684463d47b2b48b544f898b03aca4 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1237e508d0ce202c438a553056d22b713bac2cac73d1563185980a8104b2b66a +size 441844 diff --git a/vlm/test/uREj4ZuGJE/3.png b/vlm/test/uREj4ZuGJE/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a2f740d3301b9b2ccde60b7b5f8c3fca04183c2d --- /dev/null +++ b/vlm/test/uREj4ZuGJE/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34345d3fb52f83d2543014eca9fc9808a9649a5a0cdedede2c6ea7588410f4f +size 553672 diff --git a/vlm/test/uREj4ZuGJE/4.png b/vlm/test/uREj4ZuGJE/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4591f1c277885ef1b013089604879b8e196a5dcd --- /dev/null +++ b/vlm/test/uREj4ZuGJE/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc7dfa143fa7c1b89398c2732319cdd47e4e3118950bf6ffe3a8b177afd2168 +size 433206 diff --git a/vlm/test/uREj4ZuGJE/5.png b/vlm/test/uREj4ZuGJE/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3bae0d55c7003fee07ea2526f844cbe76995d4ad --- /dev/null +++ b/vlm/test/uREj4ZuGJE/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d561fc3d6939ceb99dcd765237d21ea5ade1fc61e6e22d51c83aadfc2d6d5b8 +size 718311 diff --git a/vlm/test/uREj4ZuGJE/6.png b/vlm/test/uREj4ZuGJE/6.png new file mode 100644 index 0000000000000000000000000000000000000000..67e458ea86fe41e0b6e2ade00a7d29b906f8b652 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707584096b474ffaa743c70834b358cb89bd41f4fff5b7b6102805ae6a9fa19f +size 496774 diff --git a/vlm/test/uREj4ZuGJE/7.png b/vlm/test/uREj4ZuGJE/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c9932cde9a1ff4605c365efcb017d1bffd9af3aa --- /dev/null +++ b/vlm/test/uREj4ZuGJE/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc4ba7ae39a30804b590e474bc2cb79ffd2ec8d62721eafd332363ca953accb +size 523659 diff --git a/vlm/test/uREj4ZuGJE/8.png b/vlm/test/uREj4ZuGJE/8.png new file mode 100644 index 0000000000000000000000000000000000000000..175c29dfebdb2d7a5d4404307fb67ac4b6489174 --- /dev/null +++ b/vlm/test/uREj4ZuGJE/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020a01aaeeddb971ad0fe4e667a87047af4d13de8f280bfb1342fac6e9f457b6 +size 535630 diff --git a/vlm/test/uREj4ZuGJE/9.png b/vlm/test/uREj4ZuGJE/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1f369f5ae8e96d03243797f23d3d32eed2562b5b --- /dev/null +++ b/vlm/test/uREj4ZuGJE/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762691906b482501d1116ffe042c537216ea06345572ba1a5c9b3834f68b5b3b +size 582576 diff --git a/vlm/test/v3XXtxWKi6/0.png b/vlm/test/v3XXtxWKi6/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4b5ec8e39ec44042d7a97d150b693f5c1194a4a1 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2398e444dfa2a8890b47e6c2aabaaa44f26168381330b5c0312c685e2d5d607 +size 519689 diff --git a/vlm/test/v3XXtxWKi6/1.png b/vlm/test/v3XXtxWKi6/1.png new file mode 100644 index 0000000000000000000000000000000000000000..29c59f4b401f045da8ef9b02fcd29c67e1efff19 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1829654e569386605c1e97285b23f34c62916812dc6d951fdf6b896964dce60b +size 582091 diff --git a/vlm/test/v3XXtxWKi6/10.png b/vlm/test/v3XXtxWKi6/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5feb8275cc2dfe77062e483b57c069ab65987f8c --- /dev/null +++ b/vlm/test/v3XXtxWKi6/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ec7930c1e2bae481adc654de0c8c97313fbd29703f64c5d7211999f14ca7cb +size 528906 diff --git a/vlm/test/v3XXtxWKi6/11.png b/vlm/test/v3XXtxWKi6/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7e005054e6d189d3c0c0c16bf87b73182c4a24 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca8140f06ac34342cf795b9caf9a620c9ac3daa172663cb7a4a3474b7bc64ae +size 188042 diff --git a/vlm/test/v3XXtxWKi6/12.png b/vlm/test/v3XXtxWKi6/12.png new file mode 100644 index 0000000000000000000000000000000000000000..598c842f5096dd38631a2c19abba634d1405b112 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bac06ac15dd48ebc14ef46ec57b8cccb6c1a5b0165e9151abe19b625e1fbcb +size 417705 diff --git a/vlm/test/v3XXtxWKi6/13.png b/vlm/test/v3XXtxWKi6/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0798cd4cb3b7632d6043b6e98818c2a00f659245 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e78502437e3a060397531ad89b65c5a5bfe297c7945946356794beaf705cfda +size 439423 diff --git a/vlm/test/v3XXtxWKi6/14.png b/vlm/test/v3XXtxWKi6/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e76260b5b295285b1c3e349cd57245605bcc4c21 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd8278850c2c79c63887c63b96025ae0f7af15cccaee5813642d10740c38301 +size 453522 diff --git a/vlm/test/v3XXtxWKi6/15.png b/vlm/test/v3XXtxWKi6/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0a0ca4e9de439c636ecbb4dd79924d2f91f7b5e3 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bda5a564b9bce6dcd7ab1c05646f0b8b054e0632ce87941b5158c2e1c8ea98 +size 487096 diff --git a/vlm/test/v3XXtxWKi6/16.png b/vlm/test/v3XXtxWKi6/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c3a90439f6bbe34ec196218e5ba992f18f1693 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803f82747f4bbb41e2f3efaab5a0ca9dcad6fe6bcaac3dc46ae450359186fd7d +size 254517 diff --git a/vlm/test/v3XXtxWKi6/17.png b/vlm/test/v3XXtxWKi6/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c591c86e8aee986e01c672ba58709a48404113ee --- /dev/null +++ b/vlm/test/v3XXtxWKi6/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f687d0bf8cdf1c4ca2d66573ab5278be86fa71632f034d6e05358d32d40872 +size 434573 diff --git a/vlm/test/v3XXtxWKi6/18.png b/vlm/test/v3XXtxWKi6/18.png new file mode 100644 index 0000000000000000000000000000000000000000..068bf401045e1a63c20e67861715cc2de5bc8f24 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d1d442469eecb965a9192984d3ba9d9c67143f38dc71914917d55ce8206ef7 +size 513736 diff --git a/vlm/test/v3XXtxWKi6/19.png b/vlm/test/v3XXtxWKi6/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b80b18df5215be52b192859e530effdb2547a3c7 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc15b6a1cde9ec53f799d81f279643138442fbd2e489192aae1dd81b9f3308c2 +size 433011 diff --git a/vlm/test/v3XXtxWKi6/2.png b/vlm/test/v3XXtxWKi6/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a0fbec9cdc2919384bdeaee513c7b68abf1ee7e5 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57edd685125d676795e7ce559ba44fc6b13b06ddc3187336a2e4dcca14a57952 +size 556081 diff --git a/vlm/test/v3XXtxWKi6/20.png b/vlm/test/v3XXtxWKi6/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d8a962ab1b92e3d29196e603102fa6f1bf2653f6 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f95d70076d4471f9534595971284e1cbcf828765e0a3a0f4d1db81592927957 +size 232294 diff --git a/vlm/test/v3XXtxWKi6/21.png b/vlm/test/v3XXtxWKi6/21.png new file mode 100644 index 0000000000000000000000000000000000000000..a9bb62bc88fbf7df4121a9686479731eb1a1cd79 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9645bd9be4ce7ea9631b8286edf8092acff037d37d091555044fe09cd04d41cf +size 476266 diff --git a/vlm/test/v3XXtxWKi6/22.png b/vlm/test/v3XXtxWKi6/22.png new file mode 100644 index 0000000000000000000000000000000000000000..97cc17617634a920629e0a5914d73b7bd05edbde --- /dev/null +++ b/vlm/test/v3XXtxWKi6/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f80a9b0f517a72d16c23cd30785a322d75c43bf4e643d2d198075fa02397330 +size 465373 diff --git a/vlm/test/v3XXtxWKi6/23.png b/vlm/test/v3XXtxWKi6/23.png new file mode 100644 index 0000000000000000000000000000000000000000..dcabbf880c1ab2123bf06df519d5a5805ea76a4f --- /dev/null +++ b/vlm/test/v3XXtxWKi6/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a0a619025d2adad2729122449bea2340cfc2a3ddf5d739040ba78c40acc137 +size 501954 diff --git a/vlm/test/v3XXtxWKi6/24.png b/vlm/test/v3XXtxWKi6/24.png new file mode 100644 index 0000000000000000000000000000000000000000..f62d287c1d94358176c9e829ed6d947b1050cc9d --- /dev/null +++ b/vlm/test/v3XXtxWKi6/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71697f411f89d4f82f203ec9e160d8fcb135ce2a76ca21f28d7186df6fc85012 +size 508581 diff --git a/vlm/test/v3XXtxWKi6/25.png b/vlm/test/v3XXtxWKi6/25.png new file mode 100644 index 0000000000000000000000000000000000000000..11975205d73cf2a6f97b330810c913e84c37bdb0 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7e86320b5181cf5248649305cee3ab423f6d2f171817c7fb5e5ca2c16767da +size 529246 diff --git a/vlm/test/v3XXtxWKi6/26.png b/vlm/test/v3XXtxWKi6/26.png new file mode 100644 index 0000000000000000000000000000000000000000..755b382b468ab805cae4794d92943e72aa3c9115 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f730cba049849cbefde8106d80b215caeb65917170f4455a230a11b3e4cf0e7 +size 523623 diff --git a/vlm/test/v3XXtxWKi6/27.png b/vlm/test/v3XXtxWKi6/27.png new file mode 100644 index 0000000000000000000000000000000000000000..920c1c3b7149e9ace974f438b013626128924bfa --- /dev/null +++ b/vlm/test/v3XXtxWKi6/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be9b2713e16d450ee1a2c1d81d30d5f078e7ac1ea209ad8cb1dad5c94329817 +size 460396 diff --git a/vlm/test/v3XXtxWKi6/28.png b/vlm/test/v3XXtxWKi6/28.png new file mode 100644 index 0000000000000000000000000000000000000000..2164a6537dffefa1b0c54b337700785e253d7f12 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f0a7bb28b3b08948146a5a8af6b31972faf932d8d3f88ad0426feb607df8ae +size 511664 diff --git a/vlm/test/v3XXtxWKi6/29.png b/vlm/test/v3XXtxWKi6/29.png new file mode 100644 index 0000000000000000000000000000000000000000..995e87241c36734020b318230150cd50ed38352c --- /dev/null +++ b/vlm/test/v3XXtxWKi6/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8f7f7546b086185210f3a70baf363baf16495f6c58499d82b2b06193f96ec7 +size 529398 diff --git a/vlm/test/v3XXtxWKi6/3.png b/vlm/test/v3XXtxWKi6/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5406aeb6ded0da87e8a4fcaa08c1d6da31d5bcc8 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd3ef61bf4229dd9a13d02337d7d2957a7d9d07af0b3ca87cb2df6fd9130eb7 +size 539106 diff --git a/vlm/test/v3XXtxWKi6/30.png b/vlm/test/v3XXtxWKi6/30.png new file mode 100644 index 0000000000000000000000000000000000000000..0694e81b048adc39da0eb59b3682ada176ab5e18 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d7b667ca5393476a7f90450110bb7094621ceaeebf672fdcb2b545db127286 +size 455037 diff --git a/vlm/test/v3XXtxWKi6/31.png b/vlm/test/v3XXtxWKi6/31.png new file mode 100644 index 0000000000000000000000000000000000000000..d18316a47aa2eb7af0dfe6de0c54908569fa361e --- /dev/null +++ b/vlm/test/v3XXtxWKi6/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4b7661da27b7002f90de2e38808405b5368e81c9bed47abd6245e457c3e8ac +size 491841 diff --git a/vlm/test/v3XXtxWKi6/32.png b/vlm/test/v3XXtxWKi6/32.png new file mode 100644 index 0000000000000000000000000000000000000000..f0319653ff00a2fab2e46d6745d180d084d3869a --- /dev/null +++ b/vlm/test/v3XXtxWKi6/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7f6bcdbf559eea44bfbe4535809ed9b4e7431a4c52c07d755b240a37bfe16f +size 500818 diff --git a/vlm/test/v3XXtxWKi6/33.png b/vlm/test/v3XXtxWKi6/33.png new file mode 100644 index 0000000000000000000000000000000000000000..8d070d64205871bb7c661b8e10ff047216ecd50e --- /dev/null +++ b/vlm/test/v3XXtxWKi6/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8229ff13dd2c4fc8b5596911328de82f4ac298d88ed5f856c9b5719c04a6f0 +size 501481 diff --git a/vlm/test/v3XXtxWKi6/34.png b/vlm/test/v3XXtxWKi6/34.png new file mode 100644 index 0000000000000000000000000000000000000000..e3adf15246b2ae384bf20e46572f575749db5e42 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f3738b795858c57ef1af7b4617d098d9546be1b356f30b4ffb9abb95479ba3 +size 443128 diff --git a/vlm/test/v3XXtxWKi6/35.png b/vlm/test/v3XXtxWKi6/35.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8ef65e615c16f60eb97d6f7fcf79c466cc996d --- /dev/null +++ b/vlm/test/v3XXtxWKi6/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9020b7785659706f07a4f3b4efdaaf9bda0a3dd57272280086860051bc962ee8 +size 405674 diff --git a/vlm/test/v3XXtxWKi6/36.png b/vlm/test/v3XXtxWKi6/36.png new file mode 100644 index 0000000000000000000000000000000000000000..95d051190348900b1653176297472fcab65a7dbd --- /dev/null +++ b/vlm/test/v3XXtxWKi6/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc80f4ac8ef1b74c9f88cfb7699ae50bac8d5ce68e3aaea3795e09b67e81c8eb +size 423779 diff --git a/vlm/test/v3XXtxWKi6/37.png b/vlm/test/v3XXtxWKi6/37.png new file mode 100644 index 0000000000000000000000000000000000000000..1ec5e282f8c9b0e7a00a6e4b1a43f56d90629e59 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e07d0bd0c64953601959c92dbc3506bd5048f8d8b52106aa72ab8e1c14558f9 +size 424759 diff --git a/vlm/test/v3XXtxWKi6/38.png b/vlm/test/v3XXtxWKi6/38.png new file mode 100644 index 0000000000000000000000000000000000000000..12db77e60713b9d06b9681fcd282ca78dd90d0ad --- /dev/null +++ b/vlm/test/v3XXtxWKi6/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d040664cdb932a3149cc435184fec0285936d0b801e92bb43fdb1342c96e887d +size 464427 diff --git a/vlm/test/v3XXtxWKi6/39.png b/vlm/test/v3XXtxWKi6/39.png new file mode 100644 index 0000000000000000000000000000000000000000..feccbb8c2a40134b713a46b89f7b5f428a9005a3 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a803fb516e72187f11dbfa0de824563e56a2efedb086b818bcf2e2441452104 +size 374909 diff --git a/vlm/test/v3XXtxWKi6/4.png b/vlm/test/v3XXtxWKi6/4.png new file mode 100644 index 0000000000000000000000000000000000000000..782fef325bbe1c6e04e9e14722c1170757b3eed0 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076ecc56859aeb4c20a7e874c87963ba6d6e19a4a1daa91b4f1ae44d71e6274c +size 470866 diff --git a/vlm/test/v3XXtxWKi6/5.png b/vlm/test/v3XXtxWKi6/5.png new file mode 100644 index 0000000000000000000000000000000000000000..efc129cc5ae055ce2985274c6bf8eac9e37545aa --- /dev/null +++ b/vlm/test/v3XXtxWKi6/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a996ab5b91a17ef01a8b1dbf5572b16aba5b8bc527cc7b980150bfeca57b552 +size 548934 diff --git a/vlm/test/v3XXtxWKi6/6.png b/vlm/test/v3XXtxWKi6/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8205e8eadb8bde3c59f88a995186945b57047c46 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad03b2829a50acbc1946a9ed47a0ddfda1b396bc3751cb44bc8bc6b5aaf1158b +size 484957 diff --git a/vlm/test/v3XXtxWKi6/7.png b/vlm/test/v3XXtxWKi6/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff0c20d81c915b25585aafe8cf76e7551f0a2c2 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab12f8824641e96f8dfd70b3aec2877ef8e611cd80ba9605047d86e75ac0fd13 +size 489958 diff --git a/vlm/test/v3XXtxWKi6/8.png b/vlm/test/v3XXtxWKi6/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8fc9a1351116ca193750e51e9c8dcfa188ab1900 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209e6a91622c45d3af1aee03e441ba2d75fabf4b667afc2cdb0351e7bd2ad7a7 +size 525863 diff --git a/vlm/test/v3XXtxWKi6/9.png b/vlm/test/v3XXtxWKi6/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5f72ad614aefeb0aa8faa117856ad7abae6bbda1 --- /dev/null +++ b/vlm/test/v3XXtxWKi6/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069615d9245f60553e2184fd3bc76c7efb16352cbdc2f9b5d064a865139c34aa +size 510653 diff --git a/vlm/test/xbjSwwrQOe/12.png b/vlm/test/xbjSwwrQOe/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7bb7350eb9eef3bffac1ceba3bb83a182c1d2e44 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e78392fd36ab934bd5b3f28fa306d5dcee0ac347b9864b207745b94848bc63 +size 412964 diff --git a/vlm/test/xbjSwwrQOe/13.png b/vlm/test/xbjSwwrQOe/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ae89de27d0aedec6965a7c5c1dd2ee3f754f3c5b --- /dev/null +++ b/vlm/test/xbjSwwrQOe/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a47c6af39a02392557d0b148cefca007d7ac6b225ea0004ad29547b0ef6a5c +size 629351 diff --git a/vlm/test/xbjSwwrQOe/16.png b/vlm/test/xbjSwwrQOe/16.png new file mode 100644 index 0000000000000000000000000000000000000000..ebadb0d44ff377fbddd9a0b961618511a7b09198 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ce57781008f5747e73a8e794f2f5c207c6198e4a101d1ffa92234af089d970 +size 604906 diff --git a/vlm/test/xbjSwwrQOe/18.png b/vlm/test/xbjSwwrQOe/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a85ff706662b072cda3cedbeccaf6ba17bf44838 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de8581bde06e03755f3b698ed0f10cc0af977b2e307fa9209613a503694de94 +size 528785 diff --git a/vlm/test/xbjSwwrQOe/19.png b/vlm/test/xbjSwwrQOe/19.png new file mode 100644 index 0000000000000000000000000000000000000000..a7304266c44c49d381c155b43ca30a150f0865f5 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671beaaadb2bdcfa9abc0dc52dfdc307f5f625cdb5321fc69e87280851c6741d +size 436713 diff --git a/vlm/test/xbjSwwrQOe/4.png b/vlm/test/xbjSwwrQOe/4.png new file mode 100644 index 0000000000000000000000000000000000000000..02998eee6e3be97825383b5093a4f5fe93b8ed84 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e774dcffa9a3c080e48837b1826ef6e616449b4c27acb8b78f34a0fa878d91aa +size 449382 diff --git a/vlm/test/xbjSwwrQOe/5.png b/vlm/test/xbjSwwrQOe/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6bafe2c05418305a5daaf59765f16534bc66fb --- /dev/null +++ b/vlm/test/xbjSwwrQOe/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9acac7a41483ce2a6d5f30b200f4de5f5d38d10a199e75e0bd9f53b20c59d4f +size 602847 diff --git a/vlm/test/xbjSwwrQOe/7.png b/vlm/test/xbjSwwrQOe/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b795b742f1da2ae2925c32de4a01980111c06e --- /dev/null +++ b/vlm/test/xbjSwwrQOe/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163b3de45e2b1737159a32fad646562235f35a1fb0d3f7b14a0e169faf209c1c +size 494401 diff --git a/vlm/test/xbjSwwrQOe/8.png b/vlm/test/xbjSwwrQOe/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c113c8949a2ebbae72d47b6233bf8bc45102d239 --- /dev/null +++ b/vlm/test/xbjSwwrQOe/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935643c0b62ad0f20759e59651b2b36536bae6c3341edec7038f170cd55d302 +size 451845